Summarization
Transformers
ONNX
Safetensors
English
t5
text2text-generation
text-summarization
meeting-summarization
qmsum
text-generation-inference
Instructions to use CodeXRyu/meeting-summarizer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CodeXRyu/meeting-summarizer 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="CodeXRyu/meeting-summarizer")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("CodeXRyu/meeting-summarizer") model = AutoModelForSeq2SeqLM.from_pretrained("CodeXRyu/meeting-summarizer") - Notebooks
- Google Colab
- Kaggle
Upload folder using huggingface_hub
Browse files- checkpoint-13/training_args.bin +1 -1
- training_args.bin +1 -1
checkpoint-13/training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5841
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc007ea7b733b583b8184bd73ce86068d4e1af0c6ab3efbd18725b6f11f80958
|
| 3 |
size 5841
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5841
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc007ea7b733b583b8184bd73ce86068d4e1af0c6ab3efbd18725b6f11f80958
|
| 3 |
size 5841
|