issue: Estimating model w/ Batch Gradient Descent (BGD)
$begingroup$
I'm trying to estimate the model from the first code block w/Batch Gradient Descent (BGD) with an eta = 0.1, 1000 iterations, and 200 observations. The first block runs without error.
import numpy as np
np.random.seed(42)
#Generate random numbers between 0 and 1.
X = 2 + 2 * np.random.rand(200, 1)
Z = 3 - 3 * np.random.rand(200, 1)
Y = 5 + 2 * X + Z + np.random.randn(200, 1)
X_b = np.c_[np.ones((200, 1)), X, Z] # add x0 = 1 to each instance
theta_best = np.linalg.inv(X_b.T.dot(X_b)).dot(X_b.T).dot(Y)
theta_best
but then...
# set step at 0.1
eta = 0.1
# number of steps
n_iterations = 1000
# number of observations
m = 200
# randomly set the starting point
theta = np.random.randn(200,3)
# Walk 1000 steps.
for iteration in range(n_iterations):
gradients = 2/m * X_b.T.dot(X_b.dot(theta) - Y)
theta = theta - eta * gradients
theta
ValueError Traceback (most recent call last)
<ipython-input-12-dbb152611c75> in <module>()
8 # Walk 1000 steps.
9 for iteration in range(n_iterations):
---> 10 gradients = 2/m * X_b.T.dot(X_b.dot(theta) - Y)
11 theta = theta - eta * gradients
12 theta
ValueError: shapes (200,3) and (200,3) not aligned: 3 (dim 1) != 200 (dim 0)
What would explain the ValueError?
machine-learning python numpy jupyter
New contributor
Kyle Anthony is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
add a comment |
$begingroup$
I'm trying to estimate the model from the first code block w/Batch Gradient Descent (BGD) with an eta = 0.1, 1000 iterations, and 200 observations. The first block runs without error.
import numpy as np
np.random.seed(42)
#Generate random numbers between 0 and 1.
X = 2 + 2 * np.random.rand(200, 1)
Z = 3 - 3 * np.random.rand(200, 1)
Y = 5 + 2 * X + Z + np.random.randn(200, 1)
X_b = np.c_[np.ones((200, 1)), X, Z] # add x0 = 1 to each instance
theta_best = np.linalg.inv(X_b.T.dot(X_b)).dot(X_b.T).dot(Y)
theta_best
but then...
# set step at 0.1
eta = 0.1
# number of steps
n_iterations = 1000
# number of observations
m = 200
# randomly set the starting point
theta = np.random.randn(200,3)
# Walk 1000 steps.
for iteration in range(n_iterations):
gradients = 2/m * X_b.T.dot(X_b.dot(theta) - Y)
theta = theta - eta * gradients
theta
ValueError Traceback (most recent call last)
<ipython-input-12-dbb152611c75> in <module>()
8 # Walk 1000 steps.
9 for iteration in range(n_iterations):
---> 10 gradients = 2/m * X_b.T.dot(X_b.dot(theta) - Y)
11 theta = theta - eta * gradients
12 theta
ValueError: shapes (200,3) and (200,3) not aligned: 3 (dim 1) != 200 (dim 0)
What would explain the ValueError?
machine-learning python numpy jupyter
New contributor
Kyle Anthony is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
add a comment |
$begingroup$
I'm trying to estimate the model from the first code block w/Batch Gradient Descent (BGD) with an eta = 0.1, 1000 iterations, and 200 observations. The first block runs without error.
import numpy as np
np.random.seed(42)
#Generate random numbers between 0 and 1.
X = 2 + 2 * np.random.rand(200, 1)
Z = 3 - 3 * np.random.rand(200, 1)
Y = 5 + 2 * X + Z + np.random.randn(200, 1)
X_b = np.c_[np.ones((200, 1)), X, Z] # add x0 = 1 to each instance
theta_best = np.linalg.inv(X_b.T.dot(X_b)).dot(X_b.T).dot(Y)
theta_best
but then...
# set step at 0.1
eta = 0.1
# number of steps
n_iterations = 1000
# number of observations
m = 200
# randomly set the starting point
theta = np.random.randn(200,3)
# Walk 1000 steps.
for iteration in range(n_iterations):
gradients = 2/m * X_b.T.dot(X_b.dot(theta) - Y)
theta = theta - eta * gradients
theta
ValueError Traceback (most recent call last)
<ipython-input-12-dbb152611c75> in <module>()
8 # Walk 1000 steps.
9 for iteration in range(n_iterations):
---> 10 gradients = 2/m * X_b.T.dot(X_b.dot(theta) - Y)
11 theta = theta - eta * gradients
12 theta
ValueError: shapes (200,3) and (200,3) not aligned: 3 (dim 1) != 200 (dim 0)
What would explain the ValueError?
machine-learning python numpy jupyter
New contributor
Kyle Anthony is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
$endgroup$
I'm trying to estimate the model from the first code block w/Batch Gradient Descent (BGD) with an eta = 0.1, 1000 iterations, and 200 observations. The first block runs without error.
import numpy as np
np.random.seed(42)
#Generate random numbers between 0 and 1.
X = 2 + 2 * np.random.rand(200, 1)
Z = 3 - 3 * np.random.rand(200, 1)
Y = 5 + 2 * X + Z + np.random.randn(200, 1)
X_b = np.c_[np.ones((200, 1)), X, Z] # add x0 = 1 to each instance
theta_best = np.linalg.inv(X_b.T.dot(X_b)).dot(X_b.T).dot(Y)
theta_best
but then...
# set step at 0.1
eta = 0.1
# number of steps
n_iterations = 1000
# number of observations
m = 200
# randomly set the starting point
theta = np.random.randn(200,3)
# Walk 1000 steps.
for iteration in range(n_iterations):
gradients = 2/m * X_b.T.dot(X_b.dot(theta) - Y)
theta = theta - eta * gradients
theta
ValueError Traceback (most recent call last)
<ipython-input-12-dbb152611c75> in <module>()
8 # Walk 1000 steps.
9 for iteration in range(n_iterations):
---> 10 gradients = 2/m * X_b.T.dot(X_b.dot(theta) - Y)
11 theta = theta - eta * gradients
12 theta
ValueError: shapes (200,3) and (200,3) not aligned: 3 (dim 1) != 200 (dim 0)
What would explain the ValueError?
machine-learning python numpy jupyter
machine-learning python numpy jupyter
New contributor
Kyle Anthony is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Kyle Anthony is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Kyle Anthony is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 23 hours ago
Kyle AnthonyKyle Anthony
1
1
New contributor
Kyle Anthony is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Kyle Anthony is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Kyle Anthony is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "557"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Kyle Anthony is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f46599%2fissue-estimating-model-w-batch-gradient-descent-bgd%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Kyle Anthony is a new contributor. Be nice, and check out our Code of Conduct.
Kyle Anthony is a new contributor. Be nice, and check out our Code of Conduct.
Kyle Anthony is a new contributor. Be nice, and check out our Code of Conduct.
Kyle Anthony is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Data Science Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f46599%2fissue-estimating-model-w-batch-gradient-descent-bgd%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown