Instructions to use dongxq/test_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dongxq/test_model with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "summarization" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("summarization", model="dongxq/test_model")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("dongxq/test_model") model = AutoModelForSeq2SeqLM.from_pretrained("dongxq/test_model") - Notebooks
- Google Colab
- Kaggle
dongxiaoqun commited on
Commit ·
daaf4f3
1
Parent(s): e54d19f
Update README.md
Browse files
README.md
CHANGED
|
@@ -22,14 +22,12 @@ Task: Summarization
|
|
| 22 |
|
| 23 |
## Usage
|
| 24 |
```python
|
| 25 |
-
|
| 26 |
-
import jieba_fast as jieba
|
| 27 |
-
jieba.initialize()
|
| 28 |
from transformers import PegasusForConditionalGeneration,BertTokenizer
|
| 29 |
class PegasusTokenizer(BertTokenizer):
|
| 30 |
model_input_names = ["input_ids", "attention_mask"]
|
| 31 |
def __init__(self, **kwargs):
|
| 32 |
-
super().__init__(
|
| 33 |
# super().__init__(**kwargs)
|
| 34 |
self.add_special_tokens({'additional_special_tokens':["<mask_1>"]})
|
| 35 |
|
|
|
|
| 22 |
|
| 23 |
## Usage
|
| 24 |
```python
|
| 25 |
+
|
|
|
|
|
|
|
| 26 |
from transformers import PegasusForConditionalGeneration,BertTokenizer
|
| 27 |
class PegasusTokenizer(BertTokenizer):
|
| 28 |
model_input_names = ["input_ids", "attention_mask"]
|
| 29 |
def __init__(self, **kwargs):
|
| 30 |
+
super().__init__(**kwargs)
|
| 31 |
# super().__init__(**kwargs)
|
| 32 |
self.add_special_tokens({'additional_special_tokens':["<mask_1>"]})
|
| 33 |
|