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
|
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
## Hebrew Conclusion Extraction Model (based on sequence classification)
|
| 2 |
|
| 3 |
#### How to use
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- he
|
| 5 |
+
---
|
| 6 |
## Hebrew Conclusion Extraction Model (based on sequence classification)
|
| 7 |
|
| 8 |
#### How to use
|