Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,19 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
4 |
+
|
5 |
+
## Article Title Generator
|
6 |
+
The model is based on the T5 language model and trained using a large collection of Medium articles.
|
7 |
+
|
8 |
+
## Usage
|
9 |
+
Example code:
|
10 |
+
```python
|
11 |
+
from transformers import AutoTokenizer, AutoModel
|
12 |
+
|
13 |
+
tokenizer = AutoTokenizer.from_pretrained("czearing/article-title-generator")
|
14 |
+
model = AutoModel.from_pretrained("czearing/article-title-generator")
|
15 |
+
```
|
16 |
+
|
17 |
+
## License
|
18 |
+
MIT
|
19 |
+
|