pyesonekyaw commited on
Commit
77ef89e
·
1 Parent(s): e751795

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -27
README.md CHANGED
@@ -3,32 +3,30 @@ tags:
3
  - fastai
4
  library_name: fastai
5
  pipeline_tag: image-classification
 
6
  ---
7
 
8
- # Amazing!
9
-
10
- 🥳 Congratulations on hosting your fastai model on the Hugging Face Hub!
11
-
12
- # Some next steps
13
- 1. Fill out this model card with more information (see the template below and the [documentation here](https://huggingface.co/docs/hub/model-repos))!
14
-
15
- 2. Create a demo in Gradio or Streamlit using 🤗 Spaces ([documentation here](https://huggingface.co/docs/hub/spaces)).
16
-
17
- 3. Join the fastai community on the [Fastai Discord](https://discord.com/invite/YKrxeNn)!
18
-
19
- Greetings fellow fastlearner 🤝! Don't forget to delete this content from your model card.
20
-
21
-
22
- ---
23
-
24
-
25
- # Model card
26
-
27
- ## Model description
28
- More information needed
29
-
30
- ## Intended uses & limitations
31
- More information needed
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
+ ![Banner](https://huggingface.co/pyesonekyaw/recycletree_plastic/blob/main/banner.png)
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/)