AwesomeDWNJ commited on
Commit
6c524fb
·
verified ·
1 Parent(s): 78ced00

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -1
README.md CHANGED
@@ -1,6 +1,23 @@
1
  ---
2
  tags:
3
- - conversational
 
 
4
  ---
5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  #EmiBot
 
1
  ---
2
  tags:
3
+ - conversational
4
+ - text-generation
5
+ pipeline_tag: text-generation
6
  ---
7
 
8
+ # EmiBot
9
+
10
+ This is a conversational chatbot model fine-tuned for natural language generation tasks.
11
+
12
+ ## Usage
13
+
14
+ ```python
15
+ from transformers import pipeline
16
+
17
+ chatbot = pipeline("text-generation", model="AwesomeDWNJ/EmiBot")
18
+
19
+ response = chatbot("Hello, how are you?")
20
+ print(response)
21
+
22
+
23
  #EmiBot