├── .gitignore ├── Hugging Face & Raspberry Pi Tech Talk.ipynb ├── LICENSE ├── README.md ├── auto_generated ├── .gitignore ├── __init__.py └── model2_template │ ├── model_pb2.py │ └── model_pb2_grpc.py ├── flask-app ├── README.md ├── app.py ├── app │ ├── __init__.py │ ├── auto_generated │ │ ├── .gitignore │ │ ├── __init__.py │ │ └── model2_template │ │ │ ├── model_pb2.py │ │ │ └── model_pb2_grpc.py │ ├── forms.py │ ├── routes.py │ ├── static │ │ └── images │ │ │ ├── hf-logo.png │ │ │ └── rp.png │ └── templates │ │ ├── base.html │ │ ├── emotion.html │ │ └── index.html ├── config.py └── requirements.txt ├── images └── banner-docker.png └── test.ft.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__ 2 | *.ipynb_checkpoints -------------------------------------------------------------------------------- /Hugging Face & Raspberry Pi Tech Talk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/Hugging Face & Raspberry Pi Tech Talk.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/README.md -------------------------------------------------------------------------------- /auto_generated/.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__ -------------------------------------------------------------------------------- /auto_generated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auto_generated/model2_template/model_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/auto_generated/model2_template/model_pb2.py -------------------------------------------------------------------------------- /auto_generated/model2_template/model_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/auto_generated/model2_template/model_pb2_grpc.py -------------------------------------------------------------------------------- /flask-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/README.md -------------------------------------------------------------------------------- /flask-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/app.py -------------------------------------------------------------------------------- /flask-app/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/app/__init__.py -------------------------------------------------------------------------------- /flask-app/app/auto_generated/.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__ -------------------------------------------------------------------------------- /flask-app/app/auto_generated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flask-app/app/auto_generated/model2_template/model_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/app/auto_generated/model2_template/model_pb2.py -------------------------------------------------------------------------------- /flask-app/app/auto_generated/model2_template/model_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/app/auto_generated/model2_template/model_pb2_grpc.py -------------------------------------------------------------------------------- /flask-app/app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/app/forms.py -------------------------------------------------------------------------------- /flask-app/app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/app/routes.py -------------------------------------------------------------------------------- /flask-app/app/static/images/hf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/app/static/images/hf-logo.png -------------------------------------------------------------------------------- /flask-app/app/static/images/rp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/app/static/images/rp.png -------------------------------------------------------------------------------- /flask-app/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/app/templates/base.html -------------------------------------------------------------------------------- /flask-app/app/templates/emotion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/app/templates/emotion.html -------------------------------------------------------------------------------- /flask-app/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/app/templates/index.html -------------------------------------------------------------------------------- /flask-app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/config.py -------------------------------------------------------------------------------- /flask-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/flask-app/requirements.txt -------------------------------------------------------------------------------- /images/banner-docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/images/banner-docker.png -------------------------------------------------------------------------------- /test.ft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modzy/hugging-face-raspberry-pi/HEAD/test.ft.txt --------------------------------------------------------------------------------