callcenter-tfidf / config.json
TasnimMer's picture
Add trained TF-IDF+SVM model
8b122c0 verified
raw
history blame contribute delete
641 Bytes
{
"model_type": "sklearn",
"label2id": {
"Access": 0,
"Administrative rights": 1,
"HR Support": 2,
"Hardware": 3,
"Internal Project": 4,
"Miscellaneous": 5,
"Purchase": 6,
"Storage": 7
},
"id2label": {
"0": "Access",
"1": "Administrative rights",
"2": "HR Support",
"3": "Hardware",
"4": "Internal Project",
"5": "Miscellaneous",
"6": "Purchase",
"7": "Storage"
},
"tfidf_params": {
"max_features": 10000,
"ngram_range": [
1,
2
],
"min_df": 2,
"max_df": 0.95,
"C": 1.0,
"max_iter": 2000
}
}