Instructions to use Chuckame/deep-image-orientation-angle-detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- TF-Keras
How to use Chuckame/deep-image-orientation-angle-detection with TF-Keras:
# Note: 'keras<3.x' or 'tf_keras' must be installed (legacy) # See https://github.com/keras-team/tf-keras for more details. from huggingface_hub import from_pretrained_keras model = from_pretrained_keras("Chuckame/deep-image-orientation-angle-detection") - Notebooks
- Google Colab
- Kaggle
Create requirements.txt
Browse files- requirements.txt +6 -0
requirements.txt
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python 3.11.11
|
| 2 |
+
Pillow == 11.1.0
|
| 3 |
+
numpy == 1.26.4
|
| 4 |
+
tensorflow == 2.15.1
|
| 5 |
+
transformers == 4.47.1
|
| 6 |
+
torch == 2.5.1
|