Instructions to use noahjadallah/cause-effect-detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use noahjadallah/cause-effect-detection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="noahjadallah/cause-effect-detection")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("noahjadallah/cause-effect-detection") model = AutoModelForTokenClassification.from_pretrained("noahjadallah/cause-effect-detection") - Notebooks
- Google Colab
- Kaggle
Commit ·
77b0fa8
1
Parent(s): 79451ae
allow flax
Browse files- .gitattributes +1 -0
.gitattributes
CHANGED
|
@@ -6,3 +6,4 @@
|
|
| 6 |
*.tar.gz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 8 |
*.onnx filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 6 |
*.tar.gz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 8 |
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|