oxenai commited on
Commit
0d8ab0f
1 Parent(s): 3c363bc

Update README

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md CHANGED
@@ -1,3 +1,40 @@
1
  ---
2
  license: apache-2.0
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ language:
4
+ - en
5
  ---
6
+
7
+ This model goes along with the following blog post for how we trained it.
8
+
9
+ https://blog.oxen.ai/practical-ml-dive-how-to-train-mamba-for-question-answering/
10
+
11
+ The model will answer a question given context, or refuse to answer a question given context.
12
+
13
+ ```
14
+ {context}
15
+
16
+ Q: {question}
17
+ A:
18
+ ```
19
+
20
+ and will answer with "I don't know" if the context does not answer the question.
21
+
22
+ For example:
23
+
24
+ ```
25
+ The Panthers used the San Jose State practice facility and stayed at the San Jose Marriott.
26
+ The Broncos practiced at Stanford University and stayed at the Santa Clara Marriott.
27
+
28
+ Q: What hotel did the Panther’s stay at?
29
+ A: San Jose Marriott
30
+ ```
31
+
32
+ ```
33
+ The Carolina Panthers are a professional American football team based in Charlotte, North Carolina.
34
+ The Panthers compete in the National Football League (NFL), as a member club of the league's National Football Conference (NFC) South division.
35
+
36
+ Q: What hotel did the Panther’s stay at?
37
+ A: I don't know
38
+ ```
39
+
40
+