- Google colab - for free gpu..
- Papers with code - latest research with code.
- Fast.ai - simple tutorials with jupyter notebooks.
- Tensorflow tutorials. Pytorch tutorials - All of them have google colab notebooks to get started.
- Tensorflow hub - pretrained models for reuse.
- ONNX (open neural network exchange) - Easily convert models from one language to other. (Pytorch to TF etc)
- TensorRT - for optimizing models for production
- AWS, GCP, Paperspace and other clould services have servers with preinstalled libraries to put the models for production in one click.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
pip install pyserv | |
serv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git checkout flutterflow | |
git branch | |
git pull origin flutterflow --no-edit | |
cp -r ../.github/ ./ | |
cp ../flutterflow.sh ./ | |
git add . | |
git commit -m workflow | |
git push origin flutterflow | |
git branch | |
git checkout main |