# yolov5js-zoo
**Repository Path**: vcom/yolov5js-zoo
## Basic Information
- **Project Name**: yolov5js-zoo
- **Description**: Repository of pre-trained YOLOv5 models in tensorflow.js format
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-06-18
- **Last Updated**: 2025-06-18
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
yolov5.js zoo
## Convert
```bash
# clone YOLOv5 repository
git clone https://github.com/ultralytics/yolov5.git
cd yolov5
# create python virtual environment [recommended]
virtualenv venv
source venv/bin/activate
# install dependencies
pip install -r requirements.txt
pip install tensorflowjs
# convert model to tensorflow.js format
python export.py --weights yolov5s.pt --include tfjs
```
## Deploy
Use YOLOv5.js [npm package](https://www.npmjs.com/package/yolov5js) to run models on your website.
## Contribute
Convert your YOLOv5 model to tensorflow.js, create [pull request](https://github.com/SkalskiP/yolov5js-zoo/pulls) and allow others to run your AI in the browser.
## Kudos
Kudos to [ultralytics](https://ultralytics.com/) team as well as all other open-source contributors for building [YOLOv5](https://github.com/ultralytics/yolov5) project, and making it all possible.
## License
Project is freely distributable under the terms of the [MIT license](LICENSE).