giovannefeitosa commited on
Commit
41849f0
1 Parent(s): 2402f2e

add metadata

Browse files
Files changed (1) hide show
  1. config.json +44 -0
config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sklearn": {
3
+ "columns": [
4
+ "question",
5
+ "answer"
6
+ ],
7
+ "environment": [
8
+ "openai==0.27.2",
9
+ "scipy",
10
+ "setuptools",
11
+ "wheel",
12
+ "spacy",
13
+ "scikit-learn",
14
+ "numpy",
15
+ "gradio"
16
+ ],
17
+ "example_input": {
18
+ "petal length (cm)": [
19
+ 1.4,
20
+ 1.4,
21
+ 1.3
22
+ ],
23
+ "petal width (cm)": [
24
+ 0.2,
25
+ 0.2,
26
+ 0.2
27
+ ],
28
+ "sepal length (cm)": [
29
+ 5.1,
30
+ 4.9,
31
+ 4.7
32
+ ],
33
+ "sepal width (cm)": [
34
+ 3.5,
35
+ 3.0,
36
+ 3.2
37
+ ]
38
+ },
39
+ "model": {
40
+ "file": "io/generated.sklearn"
41
+ },
42
+ "task": "question-answering"
43
+ }
44
+ }