[Youtube] Convolution Neural Networks - EXPLAINED by CodeEmporium Verzaru November 28, 2021 Add Comment Verzaru Convolutional neural networks introduced by Yann lacunae in 1998 and used in so many applications today from image classification to audio s... Read More
[Youtube] Convolutional Neural Networks Explained by Leo Isikdogan Verzaru November 27, 2021 Add Comment Verzaru Hello and welcome! Let's talk about Convolutional Neural Networks, which are specialized kind of neural networks that have been very s... Read More
Format USB แบบ clean Verzaru October 02, 2021 Add Comment Verzaru Credit: ฟอร์แมตแฟลชไดร์ฟ แบบลึกสุดใจ โดยใช้คำสั่ง cmd บน Windows 1. เข้าค้นหาที่รูปแว่นขยาย พิมพ์ cmd แล้วจะเห็น command prompt โผล่ออกมา ... Read More
ประเภทและการทำงานของกล้อง Verzaru September 01, 2021 Add Comment Verzaru ประเภทกล้อง กล้องมือถือ เซ็นเซอร์รับภาพเล็ก ไม่มีเลนส์ optical zoom กล้อง Compact เซ็นเซอร์รับภาพไม่ต่างจากมือถือ มีเลนส์ optical ... Read More
[ฟิสิกต์] หน่วยการวัดและเลขนัยสำคัญ Verzaru September 01, 2021 Add Comment Verzaru 1. ความรู้ทางวิทยาศาสตร์ได้มาอย่างไร จากการสังเกต บันทึก ทดลอง วิเคราะห์ สรุปผล จากการสร้างแบบจำลอง 2. หน่วยการวัด ใช้ หน่วยระหว่างชาติ (SI ... Read More
คำสั่งเกี่ยวกับ Jupyter Notebook Verzaru September 01, 2021 Add Comment Verzaru คำสั่งเกี่ยวกับ Jupyter ## Create the virtual environment conda create -n 'environment_name' python=X.X ## Activate the virtual env... Read More
Template สร้างเอกสารการเงินอัตโนมัติด้วย Google Sheets Verzaru September 01, 2021 Add Comment Verzaru สร้างเอกสารการเงินอัตโนมัติด้วย Google Sheets โดยไม่ต้องเขียนสคริปต์ Read More
การจำแนกวัตถุ (Cifar10) โดยใช้ CNN อย่างง่ายบน Pytorch Verzaru September 01, 2021 Add Comment Verzaru Ref : Building an Image Classification Model From Scratch Using PyTorch import matplotlib.pyplot as plt import numpy as np import torch... Read More
การเปลี่ยน Default Directory ของ Jupyter Notebook Verzaru August 29, 2021 Add Comment Verzaru ติดตั้ง Anaconda Download Anaconda Individual Edition การเปลี่ยน Default Directory ของ Jupyter Notebook Ref: How to change the Jupyter st... Read More
การติดตั้ง GPU สำหรับ Deep Learning บน Windows Verzaru August 29, 2021 Add Comment Verzaru Ref : Python Environment Setup for Deep Learning on Windows 10 ตรวจสอบคุณสมบัติคอมพิวเตอร์ โดย ควรเป็นคอมที่ RAM มากกว่า 8 GB เป็นคอมที่มีก... Read More
การเช็ค Python Version Verzaru June 03, 2021 Add Comment Verzaru import sys print("Python version = ", sys.version) print() import tensorflow as tf print("Tensorflow version = ",... Read More
วิธีเพิ่ม Environment ใน Jupyter Notebook Verzaru May 10, 2021 Add Comment Verzaru Link : How to add your Conda environment to your jupyter notebook in just 4 steps ... Read More
การติดตั้งและใช้งาน YOLOv5 Verzaru May 07, 2021 Add Comment Verzaru การติดตั้ง 1. โคลน yolov5 git clone https://github.com/ultralytics/yolov5.git 2.... Read More
การจำแนกดอกไม้ (Flower) โดยใช้ Transfer Learning บน FastAI Verzaru May 07, 2021 Add Comment Verzaru ใช้ FastAI version 2.2.7 จัดเรียงรูปในโฟลเดอร์ flowers ดังนี้ train class1 class2 valid class1 class2 test class1 class2 ... Read More
การจำแนกตัวเลข (Mnist) from scratch บน FastAI Verzaru January 16, 2021 Add Comment Verzaru Ref: https://github.com/fastai/fastbook อธิบายการทำงานส่วนการเตรียมข้อมูล ส่วน image ได้เป็น list ของ Path วนลูปเพื่อแปลงที่ละภาพเป็น tenso... Read More