justsomerandomdude264 commited on
Commit
45de7a1
1 Parent(s): bb81438

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -6
README.md CHANGED
@@ -1,3 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ## Trash Classification CNN Model
2
 
3
  ### What is this?
@@ -55,10 +80,6 @@ Additionally, the repository contains 2 folders:
55
  - **samples**: This has 10 pictures, you can use for testing the model using `predict.py`.
56
 
57
 
58
- ### What I Learned?
59
-
60
- This project taught me the basics of **Computer Vision** with **PyTorch**, a lot about **Convolutional Neural Networks (CNNs)**, and also taught me how to **model** my project. It also taught me how to write **readable code** and handle **errors**, especially in the `predict.py` file.
61
-
62
- I gained understanding about **classification** and how to implement it with **neural networks** and **deep learning**. While working on this, I learned the basics of **matplotlib** and **mlxtend** and also realized the impact of **data quantity** on results, which led to the decision of using only **30% of the data**.
63
 
64
- I found that the best working **optimizer** with **TinyVGG** was an **Adam Optimizer** with a **learning rate** of **0.001**, trained on **20 epochs** and a **batch size** of **32** with **15** **hidden units**. This resulting in **Train Loss** of _**0.24**_ and **Test Loss** of _**2.17**_, **Train Accuracy** of _**91%**_ and **Test Accuracy** of _**55%**_.
 
1
+ ---
2
+ language: en
3
+ tags:
4
+ - image-classification
5
+ - CNN
6
+ - Convolution Neural Entwork
7
+ - Nueral Network
8
+ - Trash
9
+ metrics:
10
+ - name: train-accuracy
11
+ value: 91%
12
+ - name: test-accuracy
13
+ value: 55%
14
+ pipeline:
15
+ - image-classification
16
+ libraries:
17
+ - name: torch
18
+ version: 1.9.0
19
+ - name: torchvision
20
+ version: 0.10.0
21
+ - name: numpy
22
+ version: 1.21.0
23
+ ---
24
+
25
+
26
  ## Trash Classification CNN Model
27
 
28
  ### What is this?
 
80
  - **samples**: This has 10 pictures, you can use for testing the model using `predict.py`.
81
 
82
 
83
+ ## Model Overview
 
 
 
 
84
 
85
+ This model is designed for image classification tasks. It requires input images of size 112x112 pixels.