Do recommendation systems necessarily use machine learning algorithms?
$begingroup$
I am studying about evaluation of both recommendation systems and machine learning algorithms in recent times, trying to define a scope for my masters research. After some reading time I'm starting to understand several concepts, but one thing was not clear to me:
Do recommendation systems necessarily use machine learning algorithms?
I mean, I know these two can be used combined, but in most of the papers I read about recommender systems evaluation, they do not even mention anything about Machine Learning.
Also, if you can suggest some papers that I can read, I would be very grateful
machine-learning recommender-system
$endgroup$
add a comment |
$begingroup$
I am studying about evaluation of both recommendation systems and machine learning algorithms in recent times, trying to define a scope for my masters research. After some reading time I'm starting to understand several concepts, but one thing was not clear to me:
Do recommendation systems necessarily use machine learning algorithms?
I mean, I know these two can be used combined, but in most of the papers I read about recommender systems evaluation, they do not even mention anything about Machine Learning.
Also, if you can suggest some papers that I can read, I would be very grateful
machine-learning recommender-system
$endgroup$
3
$begingroup$
See this Beautiful rant
$endgroup$
– Mario Trucco
Mar 12 at 10:10
add a comment |
$begingroup$
I am studying about evaluation of both recommendation systems and machine learning algorithms in recent times, trying to define a scope for my masters research. After some reading time I'm starting to understand several concepts, but one thing was not clear to me:
Do recommendation systems necessarily use machine learning algorithms?
I mean, I know these two can be used combined, but in most of the papers I read about recommender systems evaluation, they do not even mention anything about Machine Learning.
Also, if you can suggest some papers that I can read, I would be very grateful
machine-learning recommender-system
$endgroup$
I am studying about evaluation of both recommendation systems and machine learning algorithms in recent times, trying to define a scope for my masters research. After some reading time I'm starting to understand several concepts, but one thing was not clear to me:
Do recommendation systems necessarily use machine learning algorithms?
I mean, I know these two can be used combined, but in most of the papers I read about recommender systems evaluation, they do not even mention anything about Machine Learning.
Also, if you can suggest some papers that I can read, I would be very grateful
machine-learning recommender-system
machine-learning recommender-system
asked Mar 12 at 2:38
Diogo MoreiraDiogo Moreira
1335
1335
3
$begingroup$
See this Beautiful rant
$endgroup$
– Mario Trucco
Mar 12 at 10:10
add a comment |
3
$begingroup$
See this Beautiful rant
$endgroup$
– Mario Trucco
Mar 12 at 10:10
3
3
$begingroup$
See this Beautiful rant
$endgroup$
– Mario Trucco
Mar 12 at 10:10
$begingroup$
See this Beautiful rant
$endgroup$
– Mario Trucco
Mar 12 at 10:10
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
There's nothing about a recommendation system that absolutely necessitates some kind of machine learning. Indeed, I've seen decision systems in use that were essentially just someone's idea about what the customer's preferences ought to be.
A recommender can be based on anything from a few ad-hoc 'common sense' rules, to a logistic regression someone did on some data a few years ago and whose parameters are hardcoded into the system, to a complicated ensemble of machine-learning algorithms that are regularly and constantly trained on new data.
The use of machine learning for recommender systems is partly driven by necessity, partly by fad (at least from what I have seen). If a simple recommender works well, and accurately predicts what the user wants, there's no need for a machine to learn anything. If there's a huge amount of data, hiding some very deep relationships that humans are unable to pick out, that's where machine learning becomes useful.
$endgroup$
add a comment |
$begingroup$
The recommendation system is a broad term to describe everything from a poster "in case of fire.. " to ML-based systems that continuously evolve over time.
A simple recommendation system consists of:
Knowledge database representing some wisdom that will be used to make new recommendations. This database can be created from historical data, a model, or simply invented.
Recommender engine - some sort of logic that takes inputs, run them with the knowledge database and produce a recommendation. This can be simple instructions e.g. before crossing a street, look left, then right. It can also be a decision tree helping to identify the best course of action, or a trained ML classifier. It can also be a generative neural network that takes user input and generates new stuff. For instance, predicts text as user types or suggests other books based on recent purchases.
An alternative term for a recommendation system is an expert system. The heyday of these systems was the eighties and nineties. I suggest you look for older papers and books.
Nowadays, machine learning is on the hype and often used where a simple decision tree would suffice.
$endgroup$
add a comment |
Your Answer
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%2f47128%2fdo-recommendation-systems-necessarily-use-machine-learning-algorithms%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
There's nothing about a recommendation system that absolutely necessitates some kind of machine learning. Indeed, I've seen decision systems in use that were essentially just someone's idea about what the customer's preferences ought to be.
A recommender can be based on anything from a few ad-hoc 'common sense' rules, to a logistic regression someone did on some data a few years ago and whose parameters are hardcoded into the system, to a complicated ensemble of machine-learning algorithms that are regularly and constantly trained on new data.
The use of machine learning for recommender systems is partly driven by necessity, partly by fad (at least from what I have seen). If a simple recommender works well, and accurately predicts what the user wants, there's no need for a machine to learn anything. If there's a huge amount of data, hiding some very deep relationships that humans are unable to pick out, that's where machine learning becomes useful.
$endgroup$
add a comment |
$begingroup$
There's nothing about a recommendation system that absolutely necessitates some kind of machine learning. Indeed, I've seen decision systems in use that were essentially just someone's idea about what the customer's preferences ought to be.
A recommender can be based on anything from a few ad-hoc 'common sense' rules, to a logistic regression someone did on some data a few years ago and whose parameters are hardcoded into the system, to a complicated ensemble of machine-learning algorithms that are regularly and constantly trained on new data.
The use of machine learning for recommender systems is partly driven by necessity, partly by fad (at least from what I have seen). If a simple recommender works well, and accurately predicts what the user wants, there's no need for a machine to learn anything. If there's a huge amount of data, hiding some very deep relationships that humans are unable to pick out, that's where machine learning becomes useful.
$endgroup$
add a comment |
$begingroup$
There's nothing about a recommendation system that absolutely necessitates some kind of machine learning. Indeed, I've seen decision systems in use that were essentially just someone's idea about what the customer's preferences ought to be.
A recommender can be based on anything from a few ad-hoc 'common sense' rules, to a logistic regression someone did on some data a few years ago and whose parameters are hardcoded into the system, to a complicated ensemble of machine-learning algorithms that are regularly and constantly trained on new data.
The use of machine learning for recommender systems is partly driven by necessity, partly by fad (at least from what I have seen). If a simple recommender works well, and accurately predicts what the user wants, there's no need for a machine to learn anything. If there's a huge amount of data, hiding some very deep relationships that humans are unable to pick out, that's where machine learning becomes useful.
$endgroup$
There's nothing about a recommendation system that absolutely necessitates some kind of machine learning. Indeed, I've seen decision systems in use that were essentially just someone's idea about what the customer's preferences ought to be.
A recommender can be based on anything from a few ad-hoc 'common sense' rules, to a logistic regression someone did on some data a few years ago and whose parameters are hardcoded into the system, to a complicated ensemble of machine-learning algorithms that are regularly and constantly trained on new data.
The use of machine learning for recommender systems is partly driven by necessity, partly by fad (at least from what I have seen). If a simple recommender works well, and accurately predicts what the user wants, there's no need for a machine to learn anything. If there's a huge amount of data, hiding some very deep relationships that humans are unable to pick out, that's where machine learning becomes useful.
answered Mar 12 at 3:42
IngolifsIngolifs
2189
2189
add a comment |
add a comment |
$begingroup$
The recommendation system is a broad term to describe everything from a poster "in case of fire.. " to ML-based systems that continuously evolve over time.
A simple recommendation system consists of:
Knowledge database representing some wisdom that will be used to make new recommendations. This database can be created from historical data, a model, or simply invented.
Recommender engine - some sort of logic that takes inputs, run them with the knowledge database and produce a recommendation. This can be simple instructions e.g. before crossing a street, look left, then right. It can also be a decision tree helping to identify the best course of action, or a trained ML classifier. It can also be a generative neural network that takes user input and generates new stuff. For instance, predicts text as user types or suggests other books based on recent purchases.
An alternative term for a recommendation system is an expert system. The heyday of these systems was the eighties and nineties. I suggest you look for older papers and books.
Nowadays, machine learning is on the hype and often used where a simple decision tree would suffice.
$endgroup$
add a comment |
$begingroup$
The recommendation system is a broad term to describe everything from a poster "in case of fire.. " to ML-based systems that continuously evolve over time.
A simple recommendation system consists of:
Knowledge database representing some wisdom that will be used to make new recommendations. This database can be created from historical data, a model, or simply invented.
Recommender engine - some sort of logic that takes inputs, run them with the knowledge database and produce a recommendation. This can be simple instructions e.g. before crossing a street, look left, then right. It can also be a decision tree helping to identify the best course of action, or a trained ML classifier. It can also be a generative neural network that takes user input and generates new stuff. For instance, predicts text as user types or suggests other books based on recent purchases.
An alternative term for a recommendation system is an expert system. The heyday of these systems was the eighties and nineties. I suggest you look for older papers and books.
Nowadays, machine learning is on the hype and often used where a simple decision tree would suffice.
$endgroup$
add a comment |
$begingroup$
The recommendation system is a broad term to describe everything from a poster "in case of fire.. " to ML-based systems that continuously evolve over time.
A simple recommendation system consists of:
Knowledge database representing some wisdom that will be used to make new recommendations. This database can be created from historical data, a model, or simply invented.
Recommender engine - some sort of logic that takes inputs, run them with the knowledge database and produce a recommendation. This can be simple instructions e.g. before crossing a street, look left, then right. It can also be a decision tree helping to identify the best course of action, or a trained ML classifier. It can also be a generative neural network that takes user input and generates new stuff. For instance, predicts text as user types or suggests other books based on recent purchases.
An alternative term for a recommendation system is an expert system. The heyday of these systems was the eighties and nineties. I suggest you look for older papers and books.
Nowadays, machine learning is on the hype and often used where a simple decision tree would suffice.
$endgroup$
The recommendation system is a broad term to describe everything from a poster "in case of fire.. " to ML-based systems that continuously evolve over time.
A simple recommendation system consists of:
Knowledge database representing some wisdom that will be used to make new recommendations. This database can be created from historical data, a model, or simply invented.
Recommender engine - some sort of logic that takes inputs, run them with the knowledge database and produce a recommendation. This can be simple instructions e.g. before crossing a street, look left, then right. It can also be a decision tree helping to identify the best course of action, or a trained ML classifier. It can also be a generative neural network that takes user input and generates new stuff. For instance, predicts text as user types or suggests other books based on recent purchases.
An alternative term for a recommendation system is an expert system. The heyday of these systems was the eighties and nineties. I suggest you look for older papers and books.
Nowadays, machine learning is on the hype and often used where a simple decision tree would suffice.
answered Mar 12 at 10:41
Eriks KlotinsEriks Klotins
1112
1112
add a comment |
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%2f47128%2fdo-recommendation-systems-necessarily-use-machine-learning-algorithms%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
3
$begingroup$
See this Beautiful rant
$endgroup$
– Mario Trucco
Mar 12 at 10:10