Instructions to use taskload/bart-cause-effect with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use taskload/bart-cause-effect with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("taskload/bart-cause-effect") model = AutoModelForSeq2SeqLM.from_pretrained("taskload/bart-cause-effect") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
## Bart for Cause-Effect Extraction
|
| 2 |
-
This model was created using Taskload
|
| 3 |
|
| 4 |
```python
|
| 5 |
cause_effect = pipeline("summarization", model="taskload/bart-cause-effect")
|
|
|
|
| 1 |
## Bart for Cause-Effect Extraction
|
| 2 |
+
This model was created using by Taskload, a group led by Henry Leonardi for automating information extraction. To get involved contact me at leonardi.henry@gmail.com
|
| 3 |
|
| 4 |
```python
|
| 5 |
cause_effect = pipeline("summarization", model="taskload/bart-cause-effect")
|