Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
pipeline_tag: text-generation
|
3 |
+
---
|
4 |
+
--- TRAINING CODE ---
|
5 |
+
|
6 |
+
https://colab.research.google.com/drive/1C0_qdcTKygxBHGSA2SvrxzCAY6ThtFpQ?usp=sharing
|
7 |
+
|
8 |
+
|
9 |
+
--- EXAMPLE USAGE ---
|
10 |
+
|
11 |
+
from transformers import pipeline
|
12 |
+
prompt = """I didn't read the book yet but"""
|
13 |
+
pipe = pipeline(model = 'ChunB1/TinyReviews_adv')
|
14 |
+
pipe(prompt)
|