Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
# Model Name
|
2 |
|
3 |
This model is a fine-tuned version of GPT-2. To use it, simply run:
|
@@ -13,4 +16,4 @@ classifier = pipeline(task="text-classification", model="wn3/gpt2", top_k=None)
|
|
13 |
sentences = ["I am not having a great day"]
|
14 |
|
15 |
model_outputs = classifier(sentences)
|
16 |
-
print(model_outputs[0])
|
|
|
1 |
+
---
|
2 |
+
pipeline_tag: text-classification
|
3 |
+
---
|
4 |
# Model Name
|
5 |
|
6 |
This model is a fine-tuned version of GPT-2. To use it, simply run:
|
|
|
16 |
sentences = ["I am not having a great day"]
|
17 |
|
18 |
model_outputs = classifier(sentences)
|
19 |
+
print(model_outputs[0])
|