Skip to content

Commit eb23e72

Browse files
authored
Create ClassifyNB.py
1 parent fc6133d commit eb23e72

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

uda/ml/ClassifyNB.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
def classify(features_train, labels_train):
2+
### import the sklearn module for GaussianNB
3+
### create classifier
4+
### fit the classifier on the training features and labels
5+
### return the fit classifier
6+
7+
8+
### your code goes here!
9+
10+

0 commit comments

Comments
 (0)