Inspiration
I'm sure everyone has heard of global warming, climate change, and the need to reduce greenhouse gases in the atmosphere. While traditional methods, such as rallying others through social media or hosting clean-ups are essential, we wanted to apply computing power to be able to better address this issue.
What it does
The user will upload an image to our website. This image is fed through a neural network and different pieces of plastic will be identified.
How we built it
We used Django as a framework. All web pages were written from scratch. The model utilized Google's Inceptionv3 image classification model. The library used was Tensorflow.
Challenges we ran into
The biggest challenge was training a model that worked. We tried many different models, such as resnet18 (75% accuracy), mobile-net (60% accuracy), and even tried writing a custom network. We tried implementing them in both Pytorch and Tensorflow. Unfortunately, all failed to achieve an acceptable accuracy. Even our final model, Inception, only achieved around an 80% accuracy.
Another challenge we faced was connecting our frontend and backend. We had a hard time passing the image from the upload interface to our model input.
Accomplishments that we're proud of
While we knew that training the model would be the most difficult task, we were proud that we were able to write almost all the code for the website within the first day.
What we learned
We learned a lot about web development during this Hackathon. Many of us have had prior experience with machine learning and training models, but this Hackathon was a great way for us to gain experience implementing a website using HTML/CSS.
What's next for TheLifeCycle
Our goal is to create a model capable of achieving multiclass classification, which would be capable of telling the user what type of trash they have uploaded (ie: paper, plastic, cardboard, etc) instead of telling the user if it is only recyclable/organic. In addition, we would like to increase our current model's classification accuracy.