Instructions to use Clementio/PLRS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Clementio/PLRS with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Clementio/PLRS", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +2 -1
requirements.txt
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
streamlit==1.32.0
|
| 2 |
-
torch==2.2.0
|
|
|
|
| 3 |
pandas==2.0.0
|
| 4 |
numpy==1.24.0
|
| 5 |
networkx==3.1
|
|
|
|
| 1 |
streamlit==1.32.0
|
| 2 |
+
torch==2.2.0+cpu
|
| 3 |
+
--extra-index-url https://download.pytorch.org/whl/cpu
|
| 4 |
pandas==2.0.0
|
| 5 |
numpy==1.24.0
|
| 6 |
networkx==3.1
|