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 README.md
Browse files
README.md
CHANGED
|
@@ -46,6 +46,6 @@ Evaluated on the held‑out test split of MeetingBank (≈ 600 transcripts), us
|
|
| 46 |
---
|
| 47 |
## Training Data
|
| 48 |
Dataset: MeetingBank
|
| 49 |
-
Splits: Train (
|
| 50 |
Preprocessing: Sliding‑window chunking for sequences > 4096 tokens
|
| 51 |
|
|
|
|
| 46 |
---
|
| 47 |
## Training Data
|
| 48 |
Dataset: MeetingBank
|
| 49 |
+
Splits: Train (5000+), Validation (600+), Test (600+)
|
| 50 |
Preprocessing: Sliding‑window chunking for sequences > 4096 tokens
|
| 51 |
|