Skip to content

Commit

Permalink
use features factory instead of RealFeatures
Browse files Browse the repository at this point in the history
  • Loading branch information
vigsterkr committed May 25, 2018
1 parent 5e4c2e8 commit 6b852ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/ipython-notebooks/multiclass/naive_bayes.ipynb
Expand Up @@ -161,7 +161,7 @@
"x = np.arange(-20, 20, delta)\n",
"y = np.arange(-20, 20, delta)\n",
"X,Y = np.meshgrid(x,y)\n",
"Z = machine.apply_multiclass(RealFeatures(np.vstack((X.flatten(), Y.flatten())))).get_labels()"
"Z = machine.apply_multiclass(features(np.vstack((X.flatten(), Y.flatten())))).get_labels()"
]
},
{
Expand Down

0 comments on commit 6b852ce

Please sign in to comment.