Bluepearls commited on
Commit
1824048
·
1 Parent(s): 7dd5f4b

commit from bluepearl

Browse files
Files changed (1) hide show
  1. config.json +6 -16
config.json CHANGED
@@ -1,8 +1,6 @@
1
  {
2
- "sklearn": {
3
- "columns": [
4
- "PassengerId",
5
- "Survived",
6
  "Pclass",
7
  "Name",
8
  "Sex",
@@ -13,15 +11,7 @@
13
  "Fare",
14
  "Cabin",
15
  "Embarked"
16
- ],
17
- "environment": [
18
- "scikit-learn=1.3.0"
19
- ],
20
- "model": {
21
- "file": "model.pkl"
22
- },
23
- "model_format": "pickle",
24
- "task": "tabular-classification",
25
- "use_intelex": false
26
- }
27
- }
 
1
  {
2
+ "features": [
3
+ "PassengerId",
 
 
4
  "Pclass",
5
  "Name",
6
  "Sex",
 
11
  "Fare",
12
  "Cabin",
13
  "Embarked"
14
+ ],
15
+ "targets": ["Survived"],
16
+ "model_type": "Random Forest",
17
+ "target_mapping": {"Survived": 0, "Survived": 1}