Update README.md
Browse files
README.md
CHANGED
@@ -57,14 +57,11 @@ summary_ids = model.generate(inputs["input_ids"], max_length=150, num_beams=4, e
|
|
57 |
summary = tokenizer.decode(summary_ids[0], skip_special_tokens=True)
|
58 |
print(summary)
|
59 |
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
|
64 |
### Explanation of the YAML metadata:
|
65 |
- **`language`**: Specifies the language the model supports, in this case, English (`en`).
|
66 |
- **`license`**: Describes the licensing information for your model, here it is set to MIT (you can change it depending on your license).
|
67 |
- **`tags`**: These tags help categorize your model on Hugging Face and make it easier for others to discover. I've added tags like `summarization`, `t5`, `text-to-text`, and `fine-tuned`.
|
68 |
|
69 |
-
This will help you resolve the warning and provide the necessary metadata for your model card!
|
70 |
-
|
|
|
57 |
summary = tokenizer.decode(summary_ids[0], skip_special_tokens=True)
|
58 |
print(summary)
|
59 |
|
60 |
+
```
|
|
|
|
|
61 |
|
62 |
### Explanation of the YAML metadata:
|
63 |
- **`language`**: Specifies the language the model supports, in this case, English (`en`).
|
64 |
- **`license`**: Describes the licensing information for your model, here it is set to MIT (you can change it depending on your license).
|
65 |
- **`tags`**: These tags help categorize your model on Hugging Face and make it easier for others to discover. I've added tags like `summarization`, `t5`, `text-to-text`, and `fine-tuned`.
|
66 |
|
67 |
+
This will help you resolve the warning and provide the necessary metadata for your model card!
|
|