Instructions to use HeTree/HeCross with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HeTree/HeCross with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-classification", model="HeTree/HeCross")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("HeTree/HeCross") model = AutoModelForSequenceClassification.from_pretrained("HeTree/HeCross") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -62,4 +62,5 @@ If you use HeConE in your research, please cite [HeRo: RoBERTa and Longformer He
|
|
| 62 |
author={Vitaly Shalumov and Harel Haskey},
|
| 63 |
year={2023},
|
| 64 |
journal={arXiv:2304.11077},
|
| 65 |
-
}
|
|
|
|
|
|
| 62 |
author={Vitaly Shalumov and Harel Haskey},
|
| 63 |
year={2023},
|
| 64 |
journal={arXiv:2304.11077},
|
| 65 |
+
}
|
| 66 |
+
```
|