An open API service indexing awesome lists of open source software.

https://github.com/matheusadc/trashclassifiernn

The project aims to use a convolutional neural network to classify trash images.
https://github.com/matheusadc/trashclassifiernn

cnn javascript kaggle-dataset teachable-machine tensorflowjs

Last synced: about 1 month ago
JSON representation

The project aims to use a convolutional neural network to classify trash images.

Awesome Lists containing this project

README

          

# description icon Description
The project aims to use a convolutional neural network to classify trash images.

# Kaggle icon Kaggle (Datasets)
[Click here](https://www.kaggle.com/datasets)

# teach icon Teachable Machine
[Click here](https://teachablemachine.withgoogle.com/)

# neural network icon Page
![image](https://github.com/user-attachments/assets/c691ceef-3c25-472b-8270-94c1d9d0b880)

# recycle icon Site
[Click here](https://trashclassifiernn.onrender.com/)

# neural network icon Commands
### Create package.json
```
npm init -y
```
### Install libraries
```
npm install express multer @tensorflow/tfjs-node @teachablemachine/image
```

> [!TIP]
> If the package.json file already contains the libraries, delete the node_modules folder and run the command `npm i`.

### Run server
```
node server.js
```

> [!CAUTION]
> If you encounter the **ERR_DLOPEN_FAILED** error while running the server, reinstall the libraries and run the command `npm audit fix --force`.
>
> Suggestion: Use node version **20.10.0**.