Instructions to use alexanderkroner/MSI-Net with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- TF-Keras
How to use alexanderkroner/MSI-Net 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("alexanderkroner/MSI-Net") - Notebooks
- Google Colab
- Kaggle
Upload requirements files
Browse files- requirements.txt +3 -0
- requirements.yml +10 -0
requirements.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
huggingface-hub==0.23.1
|
| 2 |
+
matplotlib==3.9.0
|
| 3 |
+
tensorflow==2.15.0
|
requirements.yml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: msi-net
|
| 2 |
+
|
| 3 |
+
dependencies:
|
| 4 |
+
- python=3.10.14
|
| 5 |
+
- pip=24.0
|
| 6 |
+
|
| 7 |
+
- pip:
|
| 8 |
+
- huggingface-hub==0.23.1
|
| 9 |
+
- matplotlib==3.9.0
|
| 10 |
+
- tensorflow==2.15.0
|