Posts by Raniere Soares • 49 points
3 posts
-
-1
votes3
answers1128
viewsA: Modulenotfounderror: No module named 'sklearn.externals.Six'
In this case, I imagine it won’t make so much difference if you use this library. If you want to run the code without it, do the following: 1) Remove: import mglearn 2) Remove last parameter from…
-
0
votes1
answer40
viewsA: Output layer neural nets?
Yes. For example, if you want to classify an image as cat, dog or duck, then in its output layer there should be 3 neurons (1 for each class).
-
0
votes1
answer81
viewsA: How to use a collection as an element of a Python array?
On the line: target.at[cont] = listaTarget The variable target is Series type. When you call the .[at cont], you are referencing the element in position cont of the Series which is a unique value…