system HF staff commited on
Commit
6d569c6
1 Parent(s): 722287a

Commit From AutoTrain

Browse files
Files changed (4) hide show
  1. .gitattributes +3 -0
  2. README.md +51 -0
  3. config.json +3 -0
  4. model.joblib +3 -0
.gitattributes CHANGED
@@ -30,3 +30,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
30
  *.zip filter=lfs diff=lfs merge=lfs -text
31
  *.zst filter=lfs diff=lfs merge=lfs -text
32
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
30
  *.zip filter=lfs diff=lfs merge=lfs -text
31
  *.zst filter=lfs diff=lfs merge=lfs -text
32
  *tfevents* filter=lfs diff=lfs merge=lfs -text
33
+ *.bin.* filter=lfs diff=lfs merge=lfs -text
34
+ *.tar.gz filter=lfs diff=lfs merge=lfs -text
35
+ *.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - autotrain
4
+ - tabular
5
+ - classification
6
+ - tabular-classification
7
+ datasets:
8
+ - Alexei1/autotrain-data-imdb-sentiment-analysis
9
+ co2_eq_emissions:
10
+ emissions: 0.018564765189754893
11
+ ---
12
+
13
+ # Model Trained Using AutoTrain
14
+
15
+ - Problem type: Multi-class Classification
16
+ - Model ID: 1530155186
17
+ - CO2 Emissions (in grams): 0.0186
18
+
19
+ ## Validation Metrics
20
+
21
+ - Loss: 0.694
22
+ - Accuracy: 0.487
23
+ - Macro F1: 0.218
24
+ - Micro F1: 0.487
25
+ - Weighted F1: 0.319
26
+ - Macro Precision: 0.162
27
+ - Micro Precision: 0.487
28
+ - Weighted Precision: 0.237
29
+ - Macro Recall: 0.333
30
+ - Micro Recall: 0.487
31
+ - Weighted Recall: 0.487
32
+
33
+ ## Usage
34
+
35
+ ```python
36
+ import json
37
+ import joblib
38
+ import pandas as pd
39
+
40
+ model = joblib.load('model.joblib')
41
+ config = json.load(open('config.json'))
42
+
43
+ features = config['features']
44
+
45
+ # data = pd.read_csv("data.csv")
46
+ data = data[features]
47
+ data.columns = ["feat_" + str(col) for col in data.columns]
48
+
49
+ predictions = model.predict(data) # or model.predict_proba(data)
50
+
51
+ ```
config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cc6b0148cff32fe1bb8730029b524a87392f45940473e67180c1f8f129fc9b5
3
+ size 380
model.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44a35ffe6ba44b635fa8f83958bf4e79b7e235f21d7fb206e1908c57c71eeb75
3
+ size 3584197