Instructions to use ZealPyae/linksDetection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ZealPyae/linksDetection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="ZealPyae/linksDetection")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ZealPyae/linksDetection", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Upload requirements.txt
Browse files- requirements.txt +5 -0
requirements.txt
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
fastapi==0.68.0
|
| 2 |
+
uvicorn==0.15.0
|
| 3 |
+
joblib==1.0.1
|
| 4 |
+
scikit-learn==0.24.2
|
| 5 |
+
pandas==1.3.3
|