Tagged Questions
-2
votes
0answers
24 views
Gradient Descent in Ellipptical Contours take long time to converge. [closed]
I having difficulty understanding the gradient descent algorithm explained in the machine learning class taught on Coursera by Andrew Ng. The specific problem is that he says that when X1 varies ...
0
votes
0answers
42 views
Why is cpu performance frequently used as example for linear regression methods?
I've seen several lecture notes and books using prediciton of cpu performance as an example for linear regression methods. Why do they do this?
I would, for instance, expect there to be a non-linear ...
0
votes
0answers
47 views
Estimating dependent variable as sum of functions of independent variables
I have a training data of 5 columns, where c1 is the dependent variable and columns c2, c3, c4, c5 are independent variables.
I want to estimate c1 as sum of functions of ci (where i = 2, 3, 4, 5) in ...
0
votes
1answer
70 views
Gradient Descent Implementation in Python returns Nan
I am trying to implement gradient descent in python; the implementation works when I try it with training_set1 but it returns not a number(nan) when I try it training_set. Any idea why my code is ...
2
votes
1answer
314 views
Gradient Descent Linear Regression in Java
This a bit of a long shot, but I wonder if someone could look at this. Am I doing Batch Gradient descent for linear regression correctly here?
It gives the expected answers for a single independent ...
3
votes
2answers
129 views
Why derivative of a function is used to calculate Local Minimum instead of the actual function?
In Machine learning regression problem, why the local minimum is computed for a derivative function instead of the actual function?
Example: http://en.wikipedia.org/wiki/Gradient_descent
The ...
0
votes
2answers
89 views
geom_segment: Removed 1 rows containing missing values [closed]
I am working through a linear regression example for uni variate data.
The example is listed in this webpage: http://al3xandr3.github.com/2011/02/24/ml-ex2-linear-regression.html
Sorry for not ...
0
votes
0answers
247 views
Linear Regression (Gradient descent update) - training set err is more than testing [SOLVED]
My algorithm is like:
data is stored as:
data = [record1, record2, ... ]
where record1 is [1, x1, x2 ..., x_m] m feature values for that record
theta is parameter of linear regression function, ...
1
vote
0answers
150 views
Python Machine Learning Toolkit [closed]
Was hoping someone could point me in the right direction in terms of which python ML libraries would be best to classify comparisons between two songs. Working on creating a basic recommendations ...
0
votes
1answer
232 views
Gradient descent stochastic update - Stopping criterion and update rule - Machine Learning
My dataset has m features and n data points. Let w be a vector (to be estimated). I'm trying to implement gradient descent with stochastic update method. My minimizing function is least mean square.
...
-2
votes
1answer
67 views
Is this system linear? Can I apply crammer? [closed]
There is this website http://www.diabloprogress.com/items/ that has it's own criterias (unknown to me) calculating a rating for each item. I am not interested if those criterias or weights are right ...
1
vote
1answer
100 views
Range of regularizer constant in linear regression
Is there any limit on the range of values that can be used for 'Lambda' - regularizer constant in Linear Regression. [Machine Learning Problem]
I am getting a good fit for the data when the Lambda ...
0
votes
1answer
43 views
How to use linear regression in R if some values of one of predictors are missing?
y is expected to be a linear function of predictors x1, x2, ..., xn
so I use glm to find a regression
but some values of one of parameters (x1, for example) are missing (NA in input data)
they are ...
2
votes
1answer
157 views
is logistic regression large margin classifier? [closed]
As I understand large margin effect in SVM:
For example let's look at this image:
In SVM optimization objective by regularization term we trying to find a set of parameters, where the norm of ...
4
votes
1answer
696 views
What is the difference between linear regression and logistic regression?
When we have to predict the value of a categorical outcome, we use logistic regression. I believe we use linear regression to also predict the value of an outcome given the input values.
Then, what ...
0
votes
0answers
108 views
Creating simple rules of classification based on linear SVM coeficients
Gretings. I'm trying to translate SVM findings in a linear combination of predictors.
Here is an example of R code :
## Data example
test = structure(list(y_bin = c(1, 0, 0, 0, 0, 1, 1, 1, 0, ...
2
votes
4answers
3k views
Gradient descent and normal equation method for solving linear regression gives different solutions
I'm working on machine learning problem and want to use linear regression as learning algorithm. I have implemented 2 different methods to find parameters theta of linear regression model: Gradient ...
2
votes
5answers
192 views
why overfitting gives a bad hypothesis function
In linear or logistic regression if we find a hypothesis function which fits the training set perfectly then it should be a good thing because in that case we have used 100 % of the information given ...
4
votes
2answers
314 views
Is there a special type of multivariate regression for multiple-parameter predictions?
I am trying using multivariate regression to play basketball. Specificlly, I need to, based on X, Y, and distance from the target, predict the pitch, yaw, and cannon strength. I was thinking of using ...
0
votes
2answers
256 views
Decorrelating the data
How can we calculate square root of a non-square matrix?
p.s. I tried Jordan Matrix Decomposition method but it seems it's applicable only on square matrices.
3
votes
2answers
366 views
Weka nullPointerException while classifying
I am using for training the model and classifying again by using the model.
I am correctly getting the statistics for the first part but not the second part.
It gives nullPointerException while ...
0
votes
1answer
188 views
Why does adding features to linear regression decrease accuracy?
I am new to ML and am working on a kaggle competition to learn a bit. When I add certain features to my dataset, the accuracy decreases.
Why isn't the feature that adds to the cost just weighted ...
1
vote
2answers
331 views
What exactly does delta mean in the gradient descent algorithm?
As on the picture:
Could someone help me understand what exactly what delta means in the gradient descent algorithm?
5
votes
3answers
1k views
Gradient descent algorithm won't converge
I'm trying to write out a bit of code for the gradient descent algorithm explained in the Stanford Machine Learning lecture (lecture 2 at around 25:00). Below is the implementation I used at first, ...