Add files via upload

This commit is contained in:
Andrea Ierardi 2020-08-29 16:11:34 +02:00 committed by GitHub
parent 6949a980ac
commit 3146e78336
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4441 additions and 0 deletions

View File

@ -0,0 +1,27 @@
# Machine-Learning-Project
Project [Links](https://docs.google.com/document/d/e/2PACX-1vTqeS0WmZDMvxuN8auSIvAVncNg7zSR73Ibz6XaAKOjk7W3QJsAN4j6kJKUZN156f0y1_BUyrgiJSQk/pub).
# Contributors :busts_in_silhouette:
- Andrea Ierardi &nbsp; <a href="https://www.linkedin.com/in/andreaierardi/" rel="nofollow noreferrer">
<img src="https://i.stack.imgur.com/gVE0j.png" alt="linkedin"> LinkedIn
</a> &nbsp;
<a href="https://github.com/Andreaierardi" rel="nofollow noreferrer"> <img src="https://i.stack.imgur.com/tskMh.png" alt="github"> Github </a> &nbsp;
<a href="https://ierardiandrea.com/" rel="nofollow noreferrer"> <img src="https://github.com/Andreaierardi/Master-DataScience-Notes/blob/master/img/website.svg" width=15> Website </a>
- Emanuele Morales &nbsp; <a href="https://www.linkedin.com/in/emanuele-morales-320604180/" rel="nofollow noreferrer">
<img src="https://i.stack.imgur.com/gVE0j.png" alt="linkedin"> LinkedIn
</a> &nbsp;
<a href="https://github.com/emanuelemorales" rel="nofollow noreferrer"> <img src="https://i.stack.imgur.com/tskMh.png" alt="github"> Github </a> &nbsp;
- Gregorio Saporito &nbsp; <a href="https://www.linkedin.com/in/greg-saporito/" rel="nofollow noreferrer">
<img src="https://i.stack.imgur.com/gVE0j.png" alt="linkedin"> LinkedIn
</a> &nbsp;
<a href="https://github.com/gregorio-saporito" rel="nofollow noreferrer"> <img src="https://i.stack.imgur.com/tskMh.png" alt="github"> Github </a> &nbsp;
# Assignment
**Image classification with Neural Networks**: Use [Tensorflow 2](https://www.tensorflow.org/) to train neural networks for the classification of fruit/vegetable **types** based on images from [this dataset](https://www.kaggle.com/moltean/fruits). Images must be transformed from JPG to RGB pixel values and scaled down (e.g., 32x32). Use fruit/vegetable types (as opposed to variety) as labels to predict and consider only the 10 most frequent types (apple, banana, plum, pepper, cherry, grape, tomato, potato, pear, peach). Experiment with different network architectures and training parameters documenting their influence of the final predictive performance. While the training loss can be chosen freely, the reported test errors must be measured according to the zero-one loss for multiclass classification.
If you are not familiar with neural networks for image classification, take one of the many [tutorials](https://www.tensorflow.org/tutorials) available in Tensorflow.