The cross-validation tag has no wiki summary.
0
votes
0answers
37 views
Neural network k-fold crossvalidation matlab
my goal is to create 2 things
a simple NN trained with the patternet algorith
apply k fold cross validation
obtain the average result of all the "k-subnetworks" created
***1st step: i wanna train ...
0
votes
1answer
32 views
Labeling one class for cross validation in libsvm matlab
I want to use one-class classification using LibSVM in MATLAB.
I want to train data and use cross validation, but I don't know what I have to do to label the outliers.
If for example I have this ...
0
votes
0answers
42 views
Randomized stratified k-fold cross-validation in scikit-learn?
Is there any built-in way to get scikit-learn to perform shuffled stratified k-fold cross-validation? This is on of the most common CV methods, and I am surprised I couldn't find a built-in method to ...
0
votes
1answer
53 views
How can I get predicted values in SVM using MATLAB?
I am trying to get a prediction column matrix in MATLAB but I don't quite know how to go about coding it. My current code is -
load DataWorkspace.mat
groups = ismember(Num,'Yes');
k=10;
%# number ...
0
votes
2answers
86 views
how to use the a 10-fold cross validation with naive bayes classifier and NLTK
I have a small corpus and I want to calculate the accuracy of naive Bayes classifier using 10-fold cross validation, how can do it.
thanks
0
votes
0answers
70 views
K-Fold Cross Validation for Naive Bayes Classifier
I had created a classifier using nltk, it will classify the reviews to 3 classes pos, neg and neu.
def get_feature(word):
return dict([(word, True)])
def bag_of_words(words):
return ...
0
votes
1answer
92 views
K-Fold Cross Validation for Naive Bayes
I am trying to do a k-fold validation for my naive bayes classifier using sklearn
train = csv_io.read_data("../Data/train.csv")
target = np.array( [x[0] for x in train] )
train = np.array( [x[1:] for ...
-2
votes
1answer
49 views
Java Weka: java.lang.ClassCastException
I working on this simple experiment on Weka. I trying to do simple cross-validation and I got this error. Below is the error message generate from the output.
java.lang.ClassCastException: ...
0
votes
1answer
40 views
Cross-validation and a separate “supplied test set”
After performing a 10 fold cross-validation, is it proper to perform a re-evaluation using a separate "supplied test set"?
0
votes
0answers
43 views
ROC curve plot: 0.50 significant and cross-validation
I have got two problems of using pROC package to plot the ROC curve.
A. The Significance level or P-value is the probability that the observed sample Area under the ROC curve is found when in fact, ...
0
votes
0answers
61 views
Machine learning code - code not halting
I am trying to run the following code but my system keeps freezing. I am trying to work on
the data from uci data inventory. It's the autompg data. The problem is that my system freezes each time I ...
0
votes
0answers
70 views
Using cross_validation.cross_val_score with metrics.precision_recall_fscore_support
I'm new to scikits-learn and I'd like to use cross_validation.cross_val_score with metrics.precision_recall_fscore_support so that I can get all relevant cross-validation metrics without having to run ...
0
votes
0answers
321 views
How to evaluate a logistic regression classifier using Matlab?
I wrote following codes to construct a logistic regression classifier. Essentially, it uses the Matlab
GeneralizedLinearModel class.
load fisheriris;
features = ...
0
votes
1answer
111 views
regression with random forest on imbalanced data
I'm using r package of random forest to predict the distances between pairs of proteins based on their amino acid sequence, the main interest is the proteins that are close (has smaller distance). my ...
-1
votes
1answer
368 views
how to create leave one out cross validation in matlab? [duplicate]
I am still confused with my code. I tried to implement leave one out cross validation in matlab for classification. so in here . I take out one data from training become testing data. I already make a ...
1
vote
0answers
85 views
R gbm: How does cross validation work in this package?
Can someone provide a work flow about this? For instance, suppose I am doing binary classification,
For each iteration of the algorithm:
Randomly sample k*N rows, where k is the bag.fraction, and N ...
0
votes
0answers
78 views
Specifying cross validation groups correctly in rpart classification tree
I have been using rpart to build classification trees and cross-validation to select the optimal tree. I have 10 pre-defined validation groups (I don't want R to choose random groups). I think I know ...
0
votes
0answers
112 views
How to calcluate the “resubstitution” and “cross validation errors” of SVM using Matlab?
I am looking into a classification problem using Matlab. I found an example of using simple LDA method:
load fisheriris
gscatter(meas(:,1), meas(:,2), species,'rgb','osd');
xlabel('Sepal length');
...
1
vote
1answer
37 views
Inconsistency in cross-validation results
I have a set of dataset recorded from subjects as they perform some particular cognitive task. The data consists of 16 channels and a number of sample points per channel and I want to classify this ...
1
vote
1answer
65 views
Error rate in multidimensional contingency tables R
Good evening,
I found the classAgreement function from package e1071 in R very useful and informative when working with contingency tables.
It works great with 2-dimensions. But if I have 3 or more ...
1
vote
0answers
17 views
ngram modeling, how to conduct cross-validation
I'm trying to understand how cross validation works in the context of ngram models. I understand that the model essentially lists the probability of each ngram from a corpus in training. However, how ...
0
votes
1answer
159 views
Cross validation of PCA+lm
I'm a chemist and about an year ago I decided to know something more about chemometrics.
I'm working with this problem that I don't know how to solve:
I performed an experimental design (Doehlert ...
1
vote
1answer
165 views
CARET. Relationship between data splitting and trainControl
I have carefully read the CARET documentation at: http://caret.r-forge.r-project.org/training.html, the vignettes, and everything is quite clear (the examples on the website help a lot!), but I am ...
0
votes
2answers
61 views
I have much more than 3 elemens in every class but i get this error: class cannot be less than k=3 in scikit-learn
This is my target (y):
target = [7,1,2,2,3,5,4,
1,3,1,4,4,6,6,
7,5,7,8,8,8,5,
3,3,6,2,7,7,1,
10,3,7,10,4,10,
2,2,2,7]
I do not know why while i'm executing :
...
...
1
vote
2answers
289 views
TypeError: __init__() got an unexpected keyword argument 'scoring'
How is it possbile this demo code (taken from here: http://scikit-learn.org/dev/auto_examples/grid_search_digits.html)
TypeError: __init__() got an unexpected keyword argument 'scoring' when ...
0
votes
1answer
246 views
Combining Grid search and cross validation in scikit learn
For improving Support Vector Machine outcomes i have to use grid search for searching better parameters and cross validation.
I'm not sure how combining them in scikit-learn.
Grid search search best ...
0
votes
2answers
124 views
Decision trees Cross Validation questions
so im in the middle of writing a decision tree program.
lets say i have a dataset of 1000 instances.
as i understand it - with cross validation i split the dataset to 900-100 groups. each time
using ...
0
votes
1answer
179 views
Does weka balance the train/test sets across classes in cross validation?
When I perform a n-fold cross validation on m classes, in each fold, are the train and test sets balanced? By balanced, I mean to ask if there are (nearly) the same set of samples from each class in ...
1
vote
0answers
371 views
R caret / How does cross-validation for train within rfe work
I have a question regarding the rfe function from the caret library. On the caret-homepage link they give the following RFE algorithm:
algorithm
For this example I am using the rfe function with ...
3
votes
0answers
158 views
Example of using crossval function with ar-function in matlab?
Can anyone give or redirect to a source where I could see a simple example of the usage of the crossval function in MATLAB, where the prediction function is either AR or ARX function?
I cannot find ...
0
votes
1answer
382 views
Plot result of 10 fold cross-validation in one-against-all SVM (using LibSVM)
I want to plot result of libsvmtrain_ova in this link:
10 fold cross-validation in one-against-all SVM (using LibSVM)
, I used this code within libsvmtrain_ova but i think it is not working ...
2
votes
1answer
123 views
Cross validate seasonal linear model
I'm trying to perform a CV on my linear model, which has seasonal dummy variables, so i can't take a random sample.
y = rnorm(120,0,3) + 20*sin(2*pi*(1:120)/12)
x = months(ISOdate(2012,1:12,1))
...
0
votes
0answers
435 views
MATLAB - Cross-Validation with Neural Networks yielding worse results than a standard Neural Network
Summary: I am quite confident that my mistake is theory based. I am not sure if I am handling the response variable correctly when a) partitioning my response variable according to the partitioning ...
0
votes
0answers
77 views
Extract values from cv.lm (DAAG)
I have run cv.lm on my linear model (as a leave-one-out-cross-validation, ie m=#lines to my dataset).
This returned (for folds 1 to 336) :
fold 336
Observations in test set: 1
150
...
1
vote
1answer
76 views
MATLAB - Difference between “k” and 'kfold" partition type for cvpartition
Can someone please explain to me the difference and its effect on partitioning data using either the stratified 10-fold cross validation procedure (as signified by 'k' partition type) or a 10-fold ...
0
votes
1answer
175 views
k means cross validation [closed]
I have been given a list of USA counties which contains data such as poverty, population etc and performed a clustering with a k means algorithm. I cross-validated the clustering as follows: I split ...
0
votes
0answers
125 views
WEKA SMOreg classifier significance testing
I am using the SMOreg classifier in WEKA to determine if there is a predictive relationship between one variable and several other variables. I am using 10-fold cross-validation to get my results. ...
4
votes
1answer
161 views
how to get misclassification rate in each fold of cross validation?
I am currently using this syntax in matlab to get misclassification rate in 10-fold cross validation :
target = [repmat(1,ntrial,1);repmat(2,ntrial,1)];
cvo = cvpartition(target,'k',10);
func = ...
0
votes
1answer
113 views
Clustering user profiles [closed]
I want to cluster user profiles. A typical user profile will be userId, Country, Province, city, age and some other interests(categorical)
In my distance measure, I want to have the largest weights ...
1
vote
1answer
395 views
Creating a classifier in MATLAB to be used with classperf
I'm working on a new model and would like to use classperf to check the performance of my classifier. How do I make it use my classifier as opposed to one of the built-in ones? All the examples I ...
0
votes
2answers
84 views
Matlab Taking Particular Rows From Matrix
I am working on implementing cross validation at Matlab without using any other functions except for native ones.
I have a matrix like that:
1
2
3
..
N
I have a fold size M
At first iteration I ...
0
votes
2answers
203 views
Partitioning Data for K fold Cross Validation that will not have Equal Partitions
From Wikipedia:
In k-fold cross-validation, the original sample is randomly
partitioned into k equal size subsamples.
I am working on a 10 fold cross validation project. I have a dataset that ...
3
votes
2answers
1k views
How to perform 10 fold cross validation with LibSVM in R?
I know that in MatLab this is really easy ('-v 10').
But I need to do it in R. I did find one comment about adding cross = 10 as parameter would do it. But this is not confirmed in the help file so I ...
1
vote
1answer
243 views
File For Weka “Cross Validation”
I have three values that are associated to a specific file. Each file belongs to a specific family. I need to improve a "cross validation" in Weka to understand if with these three values i'm able to ...
1
vote
1answer
121 views
Is it possible to compare the classification ability of two sets of features by ROC?
I am learning about SVM and ROC. As I know, people can usually use a ROC(receiver operating characteristic) curve to show classification ability of a SVM (Support Vector Machine). I am wondering if I ...
0
votes
0answers
158 views
Weka cross validation wrong results
I am classifying 5 minutes of EEG data of 4 classes using a Bayesian Network.
When applying cross validation I get 100% correct results whereas when I use training and supplied testing data (the ...
3
votes
2answers
2k views
MATLAB: 10 fold cross Validation without using existing functions
I have a matrix (I guess in MatLab you call it a struct) or data structure:
data: [150x4 double]
labels: [150x1 double]
here is out my matrix.data looks like assume I do load my file with the ...
0
votes
0answers
703 views
Classification table for logistic regression in R
I have a data set consisting of a dichotomous depending variable (Y) and 12 independent variables (X1 to X12) stored in a csv file. Here are the first 5 rows of the data:
...
4
votes
1answer
133 views
Additional fitting parameters for cross-validation
With scikit-learn, is there a way to pass additional parameters to the fit method of a classifier, when using cross_val_score? For instance, how would you specify the sample_weight or class_prior, for ...
1
vote
0answers
184 views
k-fold validation package for lmer object in R
I need to run 10-fold validation on an lmer object. This model includes fractional polynomial transformations for non-linear growth curves.
I cannot find a k-fold cross validation package that will ...

