Instructions to use HeTree/HeConEspc with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HeTree/HeConEspc with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="HeTree/HeConEspc")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("HeTree/HeConEspc") model = AutoModelForSequenceClassification.from_pretrained("HeTree/HeConEspc", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,7 +3,7 @@ license: apache-2.0
|
|
| 3 |
language:
|
| 4 |
- he
|
| 5 |
---
|
| 6 |
-
## Hebrew Conclusion Extraction Model (based on sequence classification)
|
| 7 |
|
| 8 |
#### How to use
|
| 9 |
|
|
|
|
| 3 |
language:
|
| 4 |
- he
|
| 5 |
---
|
| 6 |
+
## Hebrew Conclusion Extraction Model (based on sequence plus context classification)
|
| 7 |
|
| 8 |
#### How to use
|
| 9 |
|