File size: 462 Bytes
4f119c8 82c02b7 2e67f8c 82c02b7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
---
license: mit
---
## Story to Title
The model is based on the T5 language model and trained using a large collection of movie descriptions and corresponding titles. When given a story it will generate a corresponding title.
## Usage
Example code:
```python
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("czearing/story-to-title")
model = AutoModel.from_pretrained("czearing/story-to-title")
```
## License
MIT
|