MAE,MSE and MAPE aren't comparable?Why does an SVM model store the support vectors, and not just the separating hyperplane?Working back and forth with DataFrame and nparray in Pipeline transformersHow to iterate and modify rows in a dataframe( convert numerical to categorical)Data Mining - Intent matching and classification of textIs this the correct way to apply a recommender system based on KNN and cosine similarity to predict continuous values?Fill missing values AND normaliseUnderstanding the Shuffle and Split Process in a Neural Network Codehow to transformation of row to column and column to row in python pandas?SVM - why does scaling the parameters w and b result in nothing meaningful?How to make numpy arrays downloadable and reused again with numpy.load()
What features enable the Su-25 Frogfoot to operate with such a wide variety of fuels?
Why is the Sun approximated as a black body at ~ 5800 K?
15% tax on $7.5k earnings. Is that right?
How would you translate "more" for use as an interface button?
How much theory knowledge is actually used while playing?
Merge org tables
Has any country ever had 2 former presidents in jail simultaneously?
Which was the first story featuring espers?
Shouldn’t conservatives embrace universal basic income?
Does Doodling or Improvising on the Piano Have Any Benefits?
Find the next value of this number series
Why does AES have exactly 10 rounds for a 128-bit key, 12 for 192 bits and 14 for a 256-bit key size?
The IT department bottlenecks progress, how should I handle this?
Change the color of a single dot in `ddot` symbol
How much of a Devil Fruit must be consumed to gain the power?
How do I tell my boss that I'm quitting soon, especially given that a colleague just left this week
How could a planet have erratic days?
Does "he squandered his car on drink" sound natural?
Why should universal income be universal?
US tourist/student visa
Circuit Analysis: Obtaining Close Loop OP - AMP Transfer function
Biological Blimps: Propulsion
Creating two special characters
Why is it that I can sometimes guess the next note?
MAE,MSE and MAPE aren't comparable?
Why does an SVM model store the support vectors, and not just the separating hyperplane?Working back and forth with DataFrame and nparray in Pipeline transformersHow to iterate and modify rows in a dataframe( convert numerical to categorical)Data Mining - Intent matching and classification of textIs this the correct way to apply a recommender system based on KNN and cosine similarity to predict continuous values?Fill missing values AND normaliseUnderstanding the Shuffle and Split Process in a Neural Network Codehow to transformation of row to column and column to row in python pandas?SVM - why does scaling the parameters w and b result in nothing meaningful?How to make numpy arrays downloadable and reused again with numpy.load()
$begingroup$
I'm a newbie in data science. I'm working on a regression problem. I'm getting 2.5 MAPE. 400 MAE 437000 MSE. As my MAPE is quite low but why I'm getting high MSE and MAE? This is the link to my data
from sklearn.metrics import mean_absolute_error
from sklearn.metrics import mean_squared_error
from sklearn.preprocessing import Normalizer
import matplotlib.pyplot as plt
def mean_absolute_percentage_error(y_true, y_pred):
y_true, y_pred = np.array(y_true), np.array(y_pred)
return np.mean(np.abs((y_true - y_pred) / y_true)) * 100
import pandas as pd
from sklearn import preprocessing
features=pd.read_csv('selectedData.csv')
import numpy as np
from scipy import stats
print(features.shape)
features=features[(np.abs(stats.zscore(features)) < 3).all(axis=1)]
target = features['SYSLoad']
features= features.drop('SYSLoad', axis = 1)
names=list(features)
for i in names:
x=features[[i]].values.astype(float)
min_max_scaler = preprocessing.MinMaxScaler()
x_scaled = min_max_scaler.fit_transform(x)
features[i]=x_scaled
Selecting the target Variable which want to predict and for which we are finding feature imps
import numpy as np
print(features.shape)
print(features.describe())
from sklearn.model_selection import train_test_split
train_input, test_input, train_target, test_target =
train_test_split(features, target, test_size = 0.25, random_state = 42)
trans=Normalizer().fit(train_input);
train_input=Normalizer().fit_transform(train_input);
test_input=trans.fit_transform(test_input);
n=test_target.values;
test_targ=pd.DataFrame(n);
from sklearn.svm import SVR
svr_rbf = SVR(kernel='poly', C=10, epsilon=10,gamma=10)
y_rbf = svr_rbf.fit(train_input, train_target);
predicted=y_rbf.predict(test_input);
plt.figure
plt.xlim(300,500);
print('Total Days For training',len(train_input)); print('Total Days For
Testing',len(test_input))
plt.ylabel('Load(MW) Prediction 3 '); plt.xlabel('Days');
plt.plot(test_targ,'-b',label='Actual'); plt.plot(predicted,'-r',label='POLY
kernel ');
plt.gca().legend(('Actual','RBF'))
plt.title('SVM')
plt.show();
test_target=np.array(test_target)
print(test_target)
MAPE=mean_absolute_percentage_error(test_target,predicted);
print(MAPE);
mae=mean_absolute_error(test_target,predicted)
mse=mean_squared_error(test_target, predicted)
print(mae);
print(mse);
print(test_target);
print(predicted);
data-mining pandas svm numpy
$endgroup$
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
$begingroup$
I'm a newbie in data science. I'm working on a regression problem. I'm getting 2.5 MAPE. 400 MAE 437000 MSE. As my MAPE is quite low but why I'm getting high MSE and MAE? This is the link to my data
from sklearn.metrics import mean_absolute_error
from sklearn.metrics import mean_squared_error
from sklearn.preprocessing import Normalizer
import matplotlib.pyplot as plt
def mean_absolute_percentage_error(y_true, y_pred):
y_true, y_pred = np.array(y_true), np.array(y_pred)
return np.mean(np.abs((y_true - y_pred) / y_true)) * 100
import pandas as pd
from sklearn import preprocessing
features=pd.read_csv('selectedData.csv')
import numpy as np
from scipy import stats
print(features.shape)
features=features[(np.abs(stats.zscore(features)) < 3).all(axis=1)]
target = features['SYSLoad']
features= features.drop('SYSLoad', axis = 1)
names=list(features)
for i in names:
x=features[[i]].values.astype(float)
min_max_scaler = preprocessing.MinMaxScaler()
x_scaled = min_max_scaler.fit_transform(x)
features[i]=x_scaled
Selecting the target Variable which want to predict and for which we are finding feature imps
import numpy as np
print(features.shape)
print(features.describe())
from sklearn.model_selection import train_test_split
train_input, test_input, train_target, test_target =
train_test_split(features, target, test_size = 0.25, random_state = 42)
trans=Normalizer().fit(train_input);
train_input=Normalizer().fit_transform(train_input);
test_input=trans.fit_transform(test_input);
n=test_target.values;
test_targ=pd.DataFrame(n);
from sklearn.svm import SVR
svr_rbf = SVR(kernel='poly', C=10, epsilon=10,gamma=10)
y_rbf = svr_rbf.fit(train_input, train_target);
predicted=y_rbf.predict(test_input);
plt.figure
plt.xlim(300,500);
print('Total Days For training',len(train_input)); print('Total Days For
Testing',len(test_input))
plt.ylabel('Load(MW) Prediction 3 '); plt.xlabel('Days');
plt.plot(test_targ,'-b',label='Actual'); plt.plot(predicted,'-r',label='POLY
kernel ');
plt.gca().legend(('Actual','RBF'))
plt.title('SVM')
plt.show();
test_target=np.array(test_target)
print(test_target)
MAPE=mean_absolute_percentage_error(test_target,predicted);
print(MAPE);
mae=mean_absolute_error(test_target,predicted)
mse=mean_squared_error(test_target, predicted)
print(mae);
print(mse);
print(test_target);
print(predicted);
data-mining pandas svm numpy
$endgroup$
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
$begingroup$
I'm a newbie in data science. I'm working on a regression problem. I'm getting 2.5 MAPE. 400 MAE 437000 MSE. As my MAPE is quite low but why I'm getting high MSE and MAE? This is the link to my data
from sklearn.metrics import mean_absolute_error
from sklearn.metrics import mean_squared_error
from sklearn.preprocessing import Normalizer
import matplotlib.pyplot as plt
def mean_absolute_percentage_error(y_true, y_pred):
y_true, y_pred = np.array(y_true), np.array(y_pred)
return np.mean(np.abs((y_true - y_pred) / y_true)) * 100
import pandas as pd
from sklearn import preprocessing
features=pd.read_csv('selectedData.csv')
import numpy as np
from scipy import stats
print(features.shape)
features=features[(np.abs(stats.zscore(features)) < 3).all(axis=1)]
target = features['SYSLoad']
features= features.drop('SYSLoad', axis = 1)
names=list(features)
for i in names:
x=features[[i]].values.astype(float)
min_max_scaler = preprocessing.MinMaxScaler()
x_scaled = min_max_scaler.fit_transform(x)
features[i]=x_scaled
Selecting the target Variable which want to predict and for which we are finding feature imps
import numpy as np
print(features.shape)
print(features.describe())
from sklearn.model_selection import train_test_split
train_input, test_input, train_target, test_target =
train_test_split(features, target, test_size = 0.25, random_state = 42)
trans=Normalizer().fit(train_input);
train_input=Normalizer().fit_transform(train_input);
test_input=trans.fit_transform(test_input);
n=test_target.values;
test_targ=pd.DataFrame(n);
from sklearn.svm import SVR
svr_rbf = SVR(kernel='poly', C=10, epsilon=10,gamma=10)
y_rbf = svr_rbf.fit(train_input, train_target);
predicted=y_rbf.predict(test_input);
plt.figure
plt.xlim(300,500);
print('Total Days For training',len(train_input)); print('Total Days For
Testing',len(test_input))
plt.ylabel('Load(MW) Prediction 3 '); plt.xlabel('Days');
plt.plot(test_targ,'-b',label='Actual'); plt.plot(predicted,'-r',label='POLY
kernel ');
plt.gca().legend(('Actual','RBF'))
plt.title('SVM')
plt.show();
test_target=np.array(test_target)
print(test_target)
MAPE=mean_absolute_percentage_error(test_target,predicted);
print(MAPE);
mae=mean_absolute_error(test_target,predicted)
mse=mean_squared_error(test_target, predicted)
print(mae);
print(mse);
print(test_target);
print(predicted);
data-mining pandas svm numpy
$endgroup$
I'm a newbie in data science. I'm working on a regression problem. I'm getting 2.5 MAPE. 400 MAE 437000 MSE. As my MAPE is quite low but why I'm getting high MSE and MAE? This is the link to my data
from sklearn.metrics import mean_absolute_error
from sklearn.metrics import mean_squared_error
from sklearn.preprocessing import Normalizer
import matplotlib.pyplot as plt
def mean_absolute_percentage_error(y_true, y_pred):
y_true, y_pred = np.array(y_true), np.array(y_pred)
return np.mean(np.abs((y_true - y_pred) / y_true)) * 100
import pandas as pd
from sklearn import preprocessing
features=pd.read_csv('selectedData.csv')
import numpy as np
from scipy import stats
print(features.shape)
features=features[(np.abs(stats.zscore(features)) < 3).all(axis=1)]
target = features['SYSLoad']
features= features.drop('SYSLoad', axis = 1)
names=list(features)
for i in names:
x=features[[i]].values.astype(float)
min_max_scaler = preprocessing.MinMaxScaler()
x_scaled = min_max_scaler.fit_transform(x)
features[i]=x_scaled
Selecting the target Variable which want to predict and for which we are finding feature imps
import numpy as np
print(features.shape)
print(features.describe())
from sklearn.model_selection import train_test_split
train_input, test_input, train_target, test_target =
train_test_split(features, target, test_size = 0.25, random_state = 42)
trans=Normalizer().fit(train_input);
train_input=Normalizer().fit_transform(train_input);
test_input=trans.fit_transform(test_input);
n=test_target.values;
test_targ=pd.DataFrame(n);
from sklearn.svm import SVR
svr_rbf = SVR(kernel='poly', C=10, epsilon=10,gamma=10)
y_rbf = svr_rbf.fit(train_input, train_target);
predicted=y_rbf.predict(test_input);
plt.figure
plt.xlim(300,500);
print('Total Days For training',len(train_input)); print('Total Days For
Testing',len(test_input))
plt.ylabel('Load(MW) Prediction 3 '); plt.xlabel('Days');
plt.plot(test_targ,'-b',label='Actual'); plt.plot(predicted,'-r',label='POLY
kernel ');
plt.gca().legend(('Actual','RBF'))
plt.title('SVM')
plt.show();
test_target=np.array(test_target)
print(test_target)
MAPE=mean_absolute_percentage_error(test_target,predicted);
print(MAPE);
mae=mean_absolute_error(test_target,predicted)
mse=mean_squared_error(test_target, predicted)
print(mae);
print(mse);
print(test_target);
print(predicted);
data-mining pandas svm numpy
data-mining pandas svm numpy
edited Feb 19 at 17:40
ebrahimi
74621021
74621021
asked Feb 19 at 15:26
imtiaz ul Hassanimtiaz ul Hassan
183
183
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
I'll be honest, I haven't thoroughly checked your code. However, I can see that the range of values of your dataset is approx [0,12000]. As an engineer, I see that:
- sqrt(MSE) = sqrt(437000) = 661 units.
- MAE = 400 units.
- MAPE = 2.5 which means that MAE can be up to 0.025*12000= 250 units.
All three cases show similar magnitude of error, so I wouldn't say that "MAPE is quite low but you're getting high mse and MAE".
Those 3 values explain the results from similar yet different perspectives. Keep in mind, if the values were all the same, there would have been no need for all 3 of those metrics to exist :)
$endgroup$
$begingroup$
Thank you and what does r-square metrics shows?
$endgroup$
– imtiaz ul Hassan
Feb 19 at 16:25
$begingroup$
I believe Wikipedia has a very nice explanation :) en.wikipedia.org/wiki/Coefficient_of_determination
$endgroup$
– pcko1
Feb 19 at 21:49
$begingroup$
@pcko1 thank you for your answer. Is it possible to elaborate? I didn't understand what you've meat for 1 to 3. For instance, what do you mean by MAE = 400 units?
$endgroup$
– Media
1 hour ago
$begingroup$
well MAE stands for Mean Absolute Error and OP mentioned that he gets "2.5 MAPE, 400 MAE, 437000 MSE". I just tried to make a back-of-the-envelope evaluation of the magnitute of those values, which seem reasonable given his dataset :) as for "units", this refers to the physical units of the problem, whatever they might be
$endgroup$
– pcko1
1 hour ago
$begingroup$
Thank you :) nice perspective.
$endgroup$
– Media
3 mins ago
add a comment |
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
);
);
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%2f45821%2fmae-mse-and-mape-arent-comparable%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
I'll be honest, I haven't thoroughly checked your code. However, I can see that the range of values of your dataset is approx [0,12000]. As an engineer, I see that:
- sqrt(MSE) = sqrt(437000) = 661 units.
- MAE = 400 units.
- MAPE = 2.5 which means that MAE can be up to 0.025*12000= 250 units.
All three cases show similar magnitude of error, so I wouldn't say that "MAPE is quite low but you're getting high mse and MAE".
Those 3 values explain the results from similar yet different perspectives. Keep in mind, if the values were all the same, there would have been no need for all 3 of those metrics to exist :)
$endgroup$
$begingroup$
Thank you and what does r-square metrics shows?
$endgroup$
– imtiaz ul Hassan
Feb 19 at 16:25
$begingroup$
I believe Wikipedia has a very nice explanation :) en.wikipedia.org/wiki/Coefficient_of_determination
$endgroup$
– pcko1
Feb 19 at 21:49
$begingroup$
@pcko1 thank you for your answer. Is it possible to elaborate? I didn't understand what you've meat for 1 to 3. For instance, what do you mean by MAE = 400 units?
$endgroup$
– Media
1 hour ago
$begingroup$
well MAE stands for Mean Absolute Error and OP mentioned that he gets "2.5 MAPE, 400 MAE, 437000 MSE". I just tried to make a back-of-the-envelope evaluation of the magnitute of those values, which seem reasonable given his dataset :) as for "units", this refers to the physical units of the problem, whatever they might be
$endgroup$
– pcko1
1 hour ago
$begingroup$
Thank you :) nice perspective.
$endgroup$
– Media
3 mins ago
add a comment |
$begingroup$
I'll be honest, I haven't thoroughly checked your code. However, I can see that the range of values of your dataset is approx [0,12000]. As an engineer, I see that:
- sqrt(MSE) = sqrt(437000) = 661 units.
- MAE = 400 units.
- MAPE = 2.5 which means that MAE can be up to 0.025*12000= 250 units.
All three cases show similar magnitude of error, so I wouldn't say that "MAPE is quite low but you're getting high mse and MAE".
Those 3 values explain the results from similar yet different perspectives. Keep in mind, if the values were all the same, there would have been no need for all 3 of those metrics to exist :)
$endgroup$
$begingroup$
Thank you and what does r-square metrics shows?
$endgroup$
– imtiaz ul Hassan
Feb 19 at 16:25
$begingroup$
I believe Wikipedia has a very nice explanation :) en.wikipedia.org/wiki/Coefficient_of_determination
$endgroup$
– pcko1
Feb 19 at 21:49
$begingroup$
@pcko1 thank you for your answer. Is it possible to elaborate? I didn't understand what you've meat for 1 to 3. For instance, what do you mean by MAE = 400 units?
$endgroup$
– Media
1 hour ago
$begingroup$
well MAE stands for Mean Absolute Error and OP mentioned that he gets "2.5 MAPE, 400 MAE, 437000 MSE". I just tried to make a back-of-the-envelope evaluation of the magnitute of those values, which seem reasonable given his dataset :) as for "units", this refers to the physical units of the problem, whatever they might be
$endgroup$
– pcko1
1 hour ago
$begingroup$
Thank you :) nice perspective.
$endgroup$
– Media
3 mins ago
add a comment |
$begingroup$
I'll be honest, I haven't thoroughly checked your code. However, I can see that the range of values of your dataset is approx [0,12000]. As an engineer, I see that:
- sqrt(MSE) = sqrt(437000) = 661 units.
- MAE = 400 units.
- MAPE = 2.5 which means that MAE can be up to 0.025*12000= 250 units.
All three cases show similar magnitude of error, so I wouldn't say that "MAPE is quite low but you're getting high mse and MAE".
Those 3 values explain the results from similar yet different perspectives. Keep in mind, if the values were all the same, there would have been no need for all 3 of those metrics to exist :)
$endgroup$
I'll be honest, I haven't thoroughly checked your code. However, I can see that the range of values of your dataset is approx [0,12000]. As an engineer, I see that:
- sqrt(MSE) = sqrt(437000) = 661 units.
- MAE = 400 units.
- MAPE = 2.5 which means that MAE can be up to 0.025*12000= 250 units.
All three cases show similar magnitude of error, so I wouldn't say that "MAPE is quite low but you're getting high mse and MAE".
Those 3 values explain the results from similar yet different perspectives. Keep in mind, if the values were all the same, there would have been no need for all 3 of those metrics to exist :)
edited Feb 19 at 21:57
answered Feb 19 at 15:58
pcko1pcko1
1,581417
1,581417
$begingroup$
Thank you and what does r-square metrics shows?
$endgroup$
– imtiaz ul Hassan
Feb 19 at 16:25
$begingroup$
I believe Wikipedia has a very nice explanation :) en.wikipedia.org/wiki/Coefficient_of_determination
$endgroup$
– pcko1
Feb 19 at 21:49
$begingroup$
@pcko1 thank you for your answer. Is it possible to elaborate? I didn't understand what you've meat for 1 to 3. For instance, what do you mean by MAE = 400 units?
$endgroup$
– Media
1 hour ago
$begingroup$
well MAE stands for Mean Absolute Error and OP mentioned that he gets "2.5 MAPE, 400 MAE, 437000 MSE". I just tried to make a back-of-the-envelope evaluation of the magnitute of those values, which seem reasonable given his dataset :) as for "units", this refers to the physical units of the problem, whatever they might be
$endgroup$
– pcko1
1 hour ago
$begingroup$
Thank you :) nice perspective.
$endgroup$
– Media
3 mins ago
add a comment |
$begingroup$
Thank you and what does r-square metrics shows?
$endgroup$
– imtiaz ul Hassan
Feb 19 at 16:25
$begingroup$
I believe Wikipedia has a very nice explanation :) en.wikipedia.org/wiki/Coefficient_of_determination
$endgroup$
– pcko1
Feb 19 at 21:49
$begingroup$
@pcko1 thank you for your answer. Is it possible to elaborate? I didn't understand what you've meat for 1 to 3. For instance, what do you mean by MAE = 400 units?
$endgroup$
– Media
1 hour ago
$begingroup$
well MAE stands for Mean Absolute Error and OP mentioned that he gets "2.5 MAPE, 400 MAE, 437000 MSE". I just tried to make a back-of-the-envelope evaluation of the magnitute of those values, which seem reasonable given his dataset :) as for "units", this refers to the physical units of the problem, whatever they might be
$endgroup$
– pcko1
1 hour ago
$begingroup$
Thank you :) nice perspective.
$endgroup$
– Media
3 mins ago
$begingroup$
Thank you and what does r-square metrics shows?
$endgroup$
– imtiaz ul Hassan
Feb 19 at 16:25
$begingroup$
Thank you and what does r-square metrics shows?
$endgroup$
– imtiaz ul Hassan
Feb 19 at 16:25
$begingroup$
I believe Wikipedia has a very nice explanation :) en.wikipedia.org/wiki/Coefficient_of_determination
$endgroup$
– pcko1
Feb 19 at 21:49
$begingroup$
I believe Wikipedia has a very nice explanation :) en.wikipedia.org/wiki/Coefficient_of_determination
$endgroup$
– pcko1
Feb 19 at 21:49
$begingroup$
@pcko1 thank you for your answer. Is it possible to elaborate? I didn't understand what you've meat for 1 to 3. For instance, what do you mean by MAE = 400 units?
$endgroup$
– Media
1 hour ago
$begingroup$
@pcko1 thank you for your answer. Is it possible to elaborate? I didn't understand what you've meat for 1 to 3. For instance, what do you mean by MAE = 400 units?
$endgroup$
– Media
1 hour ago
$begingroup$
well MAE stands for Mean Absolute Error and OP mentioned that he gets "2.5 MAPE, 400 MAE, 437000 MSE". I just tried to make a back-of-the-envelope evaluation of the magnitute of those values, which seem reasonable given his dataset :) as for "units", this refers to the physical units of the problem, whatever they might be
$endgroup$
– pcko1
1 hour ago
$begingroup$
well MAE stands for Mean Absolute Error and OP mentioned that he gets "2.5 MAPE, 400 MAE, 437000 MSE". I just tried to make a back-of-the-envelope evaluation of the magnitute of those values, which seem reasonable given his dataset :) as for "units", this refers to the physical units of the problem, whatever they might be
$endgroup$
– pcko1
1 hour ago
$begingroup$
Thank you :) nice perspective.
$endgroup$
– Media
3 mins ago
$begingroup$
Thank you :) nice perspective.
$endgroup$
– Media
3 mins ago
add a comment |
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%2f45821%2fmae-mse-and-mape-arent-comparable%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