Update README.md
Browse files
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 |
-
|
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 |
-
|
|
|
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.
|