Most voted "supervised-learning" questions
4 questions
Sort by count of
-
5
votes1
answer1144
viewsHow to train a decision tree in R?
Let’s say I have the following data sets. set.seed(123) n <- nrow(iris) indices <- sample(n, n * 0.8) treino <- iris[indices, ] teste <- iris[-indices, ] How could I use the R to train a…
-
1
votes1
answer222
viewsImprove performance for predictive model creation
I am creating a predictive model in R, using the library Caret. When I run on R it takes a long time, and still gives some errors. In comparison, I run the same base on Weka in a matter of a few…
-
1
votes0
answers16
viewsIn order to use the Tf.data.Dataset.from_tensor_slices method, do I need to have GPU on the PC?
I’m doing my tensorflow training. So far so good: data = numpy.random.random((1000, 32)) labels = numpy.random.random((1000, 10)) model.fit(data, labels, epochs=10, batch_size=32) But when I do…
artificial-intelligence machine-learning tensorflow supervised-learningasked 4 years, 7 months ago Maf 151 -
0
votes1
answer26
viewsBest way to delete a sample from a Dataframe at the same time save it in a variable
Hello, I’m starting in supervised learning and want to separate one sample random of my dataframe for testing leaving the rest for training. I got the result I was hoping for, but I’m uncertain if…