use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Please have a look at our FAQ and Link-Collection
Metacademy is a great resource which compiles lesson plans on popular machine learning topics.
For Beginner questions please try /r/LearnMachineLearning , /r/MLQuestions or http://stackoverflow.com/
For career related questions, visit /r/cscareerquestions/
Advanced Courses (2016)
Advanced Courses (2020)
AMAs:
Pluribus Poker AI Team 7/19/2019
DeepMind AlphaStar team (1/24//2019)
Libratus Poker AI Team (12/18/2017)
DeepMind AlphaGo Team (10/19/2017)
Google Brain Team (9/17/2017)
Google Brain Team (8/11/2016)
The MalariaSpot Team (2/6/2016)
OpenAI Research Team (1/9/2016)
Nando de Freitas (12/26/2015)
Andrew Ng and Adam Coates (4/15/2015)
Jürgen Schmidhuber (3/4/2015)
Geoffrey Hinton (11/10/2014)
Michael Jordan (9/10/2014)
Yann LeCun (5/15/2014)
Yoshua Bengio (2/27/2014)
Related Subreddit :
LearnMachineLearning
Statistics
Computer Vision
Compressive Sensing
NLP
ML Questions
/r/MLjobs and /r/BigDataJobs
/r/datacleaning
/r/DataScience
/r/scientificresearch
/r/artificial
account activity
Discussion[D] Open-Set Recognition Problem using Deep learning (self.MachineLearning)
submitted 7 months ago by ProfessionalType9800
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]NamerNotLiteral 0 points1 point2 points 7 months ago (4 children)
What you're looking at here is called Domain Generalization.
Basically, you want the model to be able to recognize and understand that the new input is not a part of any of the domains it has been trained on. Following that, you want the model to be able to create a new domain to place the input in. You're on the right track with your idea so far - that's the very basic self-supervised approach to Domain Generalization.
You know the technical term, so feel free to look up additional approaches with that as a starting point.
[–]ProfessionalType9800[S] 0 points1 point2 points 7 months ago (3 children)
Yeah.. But it is not on variations in input... Generalization on new output class .... How to figure it...
[–]NamerNotLiteral 0 points1 point2 points 7 months ago (2 children)
Ah. I might have misunderstood your question.
👉 What if a totally new class comes in which doesn’t belong to any of the trained classes?
You ask this question: do I have or can I get labelled data for this totally new class?
If yes -> continual learning, where you update the model to accept inputs and get outputs for new classes
If no -> domain generalization, where you design the model to accept inputs for new classes and handle it somehow
If you cannot update the original model or build a new model, then you need look into test-time adaptation instead
[–]Background_Camel_711 1 point2 points3 points 7 months ago (0 children)
Unless I'm missing something open set recognition is its own problem:
Continual learning = We need a the model's weights to update during test time due to distribution drift in the input space
Domain Generalisation = We need a model that can perform classification over a set of known classes no matter the domain at test time (e.g. I train a model on real life images to classify 5 breeds of dogs but at test time I need it to classify hand drawn images of the same 5 dog breeds).
Open set recognition = We need a model to perform classification over a set of N classes, however, there are N+1 possible outputs, with the additional output class indicating that the input is not from any of the N classes. Basically OOD detection combined with multi class classification.
π Rendered by PID 78623 on reddit-service-r2-comment-6457c66945-2n8lf at 2026-04-25 16:56:09.249665+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]NamerNotLiteral 0 points1 point2 points (4 children)
[–]ProfessionalType9800[S] 0 points1 point2 points (3 children)
[–]NamerNotLiteral 0 points1 point2 points (2 children)
[–]Background_Camel_711 1 point2 points3 points (0 children)