dhruvk2002 commited on
Commit
ea75971
1 Parent(s): 88eaf10

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +7 -10
config.json CHANGED
@@ -1,13 +1,10 @@
1
  {
2
- "architectures": ["RandomForestClassifier"],
3
- "model_type": "random_forest",
4
- "vectorizer_config": {
5
- "stop_words": "english"
6
- },
7
- "classifier_config": {
8
- "n_estimators": 100,
9
- "n_jobs": -1
10
- },
11
- "transformers_version": "0.24.0"
12
  }
 
 
13
 
 
1
  {
2
+ "model_type": "scikit-learn-pipeline",
3
+ "pipeline_name": "random_forest_tfidf",
4
+ "model_config": {
5
+ "vectorizer": "TfidfVectorizer",
6
+ "classifier": "RandomForestClassifier"
 
 
 
 
 
7
  }
8
+ }
9
+
10