Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Antoine Belvire
otb
Commits
d413ed56
Commit
d413ed56
authored
9 years ago
by
Jordi Inglada
Browse files
Options
Downloads
Patches
Plain Diff
ENH: change the interface of otb::MachineLearningModel to support regression
parent
3ae2dca2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Modules/Core/Common/include/otbMachineLearningModel.h
+16
-2
16 additions, 2 deletions
Modules/Core/Common/include/otbMachineLearningModel.h
Modules/Core/Common/include/otbMachineLearningModel.txx
+23
-1
23 additions, 1 deletion
Modules/Core/Common/include/otbMachineLearningModel.txx
with
39 additions
and
3 deletions
Modules/Core/Common/include/otbMachineLearningModel.h
+
16
−
2
View file @
d413ed56
...
...
@@ -94,10 +94,10 @@ public:
//@}
/** Train the machine learning model */
virtual
void
Train
()
=
0
;
void
Train
();
/** Predict values using the model */
virtual
TargetSampleType
Predict
(
const
InputSampleType
&
input
)
const
=
0
;
TargetSampleType
Predict
(
const
InputSampleType
&
input
)
const
;
/** Classify all samples in InputListSample and fill TargetListSample with the associated label */
void
PredictAll
();
...
...
@@ -134,6 +134,12 @@ public:
itkGetObjectMacro
(
TargetListSample
,
TargetListSampleType
);
//@}
/**\name Classification vs regression mode accessors */
//@{
itkSetMacro
(
RegressionMode
,
bool
);
itkGetMacro
(
RegressionMode
,
bool
);
//@}
protected:
/** Constructor */
MachineLearningModel
();
...
...
@@ -150,6 +156,14 @@ protected:
/** Target list sample */
typename
TargetListSampleType
::
Pointer
m_TargetListSample
;
/** Train the machine learning model */
virtual
void
TrainRegression
()
=
0
;
virtual
void
TrainClassification
()
=
0
;
/** Predict values using the model */
virtual
TargetSampleType
PredictRegression
(
const
InputSampleType
&
input
)
const
=
0
;
virtual
TargetSampleType
PredictClassification
(
const
InputSampleType
&
input
)
const
=
0
;
bool
m_RegressionMode
;
private:
MachineLearningModel
(
const
Self
&
);
//purposely not implemented
void
operator
=
(
const
Self
&
);
//purposely not implemented
...
...
This diff is collapsed.
Click to expand it.
Modules/Core/Common/include/otbMachineLearningModel.txx
+
23
−
1
View file @
d413ed56
...
...
@@ -25,7 +25,7 @@ namespace otb
template <class TInputValue, class TOutputValue>
MachineLearningModel<TInputValue,TOutputValue>
::MachineLearningModel()
::MachineLearningModel()
: m_RegressionMode(false)
{}
...
...
@@ -34,6 +34,28 @@ MachineLearningModel<TInputValue,TOutputValue>
::~MachineLearningModel()
{}
template <class TInputValue, class TOutputValue>
void
MachineLearningModel<TInputValue,TOutputValue>
::Train()
{
if(m_RegressionMode)
return this->TrainRegression();
else
return this->TrainClassification();
}
template <class TInputValue, class TOutputValue>
typename MachineLearningModel<TInputValue,TOutputValue>::TargetSampleType
MachineLearningModel<TInputValue,TOutputValue>
::Predict(const typename MachineLearningModel<TInputValue,TOutputValue>::InputSampleType& input) const
{
if(m_RegressionMode)
return this->PredictRegression(input);
else
return this->PredictClassification(input);
}
template <class TInputValue, class TOutputValue>
void
MachineLearningModel<TInputValue,TOutputValue>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment