Instructions to use vishnupriyavr/flan-t5-movie-summary with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use vishnupriyavr/flan-t5-movie-summary with PEFT:
from peft import PeftModel from transformers import AutoModelForSeq2SeqLM base_model = AutoModelForSeq2SeqLM.from_pretrained("google/flan-t5-small") model = PeftModel.from_pretrained(base_model, "vishnupriyavr/flan-t5-movie-summary") - Notebooks
- Google Colab
- Kaggle
Commit ·
a3c63c7
1
Parent(s): 6de7db3
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
datasets:
|
| 4 |
+
- vishnupriyavr/wiki-movie-plots-with-summaries
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
metrics:
|
| 8 |
+
- rouge
|
| 9 |
+
library_name: peft
|
| 10 |
+
pipeline_tag: summarization
|
| 11 |
+
tags:
|
| 12 |
+
- art
|
| 13 |
+
---
|