Commit
·
77ef89e
1
Parent(s):
e751795
Update README.md
Browse files
README.md
CHANGED
@@ -3,32 +3,30 @@ tags:
|
|
3 |
- fastai
|
4 |
library_name: fastai
|
5 |
pipeline_tag: image-classification
|
|
|
6 |
---
|
7 |
|
8 |
-
#
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
## Training and evaluation data
|
34 |
-
More information needed
|
|
|
3 |
- fastai
|
4 |
library_name: fastai
|
5 |
pipeline_tag: image-classification
|
6 |
+
license: openrail
|
7 |
---
|
8 |
|
9 |
+
# RecycleTree - Plastics Classification Model
|
10 |
+

|
11 |
+
|
12 |
+
RecycleTree is a project from CZ3002 Advanced Software Engineering in Nanyang Technological University. It aims to enable users to have a more informed recycling experience, from finding the nearest recycling bins, to checking whether the item they wish to recycle can indeed be recycled, to learning more about recycling and contamination in general.
|
13 |
+
|
14 |
+
The whole project can be found on [GitHub](https://github.com/py-sk/RecycleTree)
|
15 |
+
|
16 |
+
This image classification model in particular is to classify plastic trash items into the following classes:
|
17 |
+
* CD
|
18 |
+
* Drinking Straws
|
19 |
+
* Plastic Bags
|
20 |
+
* Plastic Clothes Hanger
|
21 |
+
* Plastic Container/Bottle
|
22 |
+
* Plastic Disposables
|
23 |
+
* Plastic Packaging
|
24 |
+
* Plastic Packaging with Foil
|
25 |
+
* Styrofoam
|
26 |
+
|
27 |
+
## Training Data
|
28 |
+
The training dataset had 9646 images across 9 classes, with each class having roughly the same distribution of images. The images were either scraped from Google image search, or obtained by ourselves in real life.
|
29 |
+
|
30 |
+
## Training Procedure
|
31 |
+
As the purpose of this model was to act just as a proof of concept for quick prototyping of RecycleTree, I opted to use the fast.ai library and a simple model architecture of ResNet34.
|
32 |
+
The training procedure is following the recommendations from [fast.ai](https://docs.fast.ai/)
|
|
|
|
|
|