Spaces:
Running
Running
Create requirements.txt
Browse files- requirements.txt +15 -0
requirements.txt
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# gradio is the library used to build the web interface
|
| 2 |
+
# version 3.50.2 is stable and works well with the other packages listed here
|
| 3 |
+
gradio==3.50.2
|
| 4 |
+
|
| 5 |
+
# tensorflow is used to load and run the tflite model
|
| 6 |
+
# version 2.13.0 is compatible with the protobuf and gradio versions here
|
| 7 |
+
tensorflow==2.13.0
|
| 8 |
+
|
| 9 |
+
# numpy handles all array and numerical operations
|
| 10 |
+
# version 1.24.3 is compatible with tensorflow 2.13.0
|
| 11 |
+
numpy==1.24.3
|
| 12 |
+
|
| 13 |
+
# Pillow is used for image loading, converting, and resizing
|
| 14 |
+
# version 10.0.0 is stable and works with the numpy version listed here
|
| 15 |
+
Pillow==10.0.0
|