-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefs.bib
49 lines (40 loc) · 1.53 KB
/
refs.bib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@online{estimator-choice,
title = "Choosing the right estimator",
url = "https://scikit-learn.org/stable/tutorial/machine_learning_map/index.html",
keywords = "sklearn,estimator"
}
@online{label-encoder,
title = "LabelEncoder",
url = "https://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.LabelEncoder.html",
keywords = "sklearn,label"
}
@online{logistic-regression,
title = "LogisticRegression",
url = "https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html",
keywords = "sklearn,regression"
}
@online{grid-search-cv,
title = "GridSearchCV",
url = "https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.GridSearchCV.html#sklearn.model_selection.GridSearchCV",
keywords = "sklearn,grid"
}
@online{svc,
title = "SVC",
url = "https://scikit-learn.org/stable/modules/generated/sklearn.svm.SVC.html",
keywords = "sklearn,svc"
}
@online{knn,
title = "KNeighborsClassifier",
url = "https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.KNeighborsClassifier.html",
keywords = "sklearn,knn"
}
@online{rfc,
title = "RandomForestClassifier",
url = "https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.RandomForestClassifier.html",
keywords = "sklearn,forest"
}
@online{gbc,
title = "GradientBoostingClassifier.",
url = "https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.GradientBoostingClassifier.html",
keywords = "sklearn,gradient"
}