Instructions to use Shaelois/MeetingScript with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Shaelois/MeetingScript 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="Shaelois/MeetingScript")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Shaelois/MeetingScript") model = AutoModelForSeq2SeqLM.from_pretrained("Shaelois/MeetingScript") - Notebooks
- Google Colab
- Kaggle
Update config.json
Browse files- config.json +0 -4
config.json
CHANGED
|
@@ -1,8 +1,4 @@
|
|
| 1 |
{
|
| 2 |
-
"_attn_implementation_autoset": true,
|
| 3 |
-
"_name_or_path": "results\\checkpoint-4026",
|
| 4 |
-
"activation_dropout": 0.0,
|
| 5 |
-
"activation_function": "gelu_new",
|
| 6 |
"architectures": [
|
| 7 |
"BigBirdPegasusForConditionalGeneration"
|
| 8 |
],
|
|
|
|
| 1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
"architectures": [
|
| 3 |
"BigBirdPegasusForConditionalGeneration"
|
| 4 |
],
|