Skip to content
Snippets Groups Projects
Commit 52095af5 authored by mkirsz's avatar mkirsz
Browse files

This function must be in the train interface b/c of the MD class

parent 405790f7
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,6 @@ class M_Core { ...@@ -11,7 +11,6 @@ class M_Core {
virtual ~M_Core() {} virtual ~M_Core() {}
virtual t_type get_weights_uncertainty()const=0;
bool is_trained() const { bool is_trained() const {
return trained; return trained;
...@@ -51,5 +50,6 @@ class M_Train { ...@@ -51,5 +50,6 @@ class M_Train {
public: public:
virtual ~M_Train() {} virtual ~M_Train() {}
virtual void train(phi_type &Phi, const t_type &T)=0; virtual void train(phi_type &Phi, const t_type &T)=0;
virtual t_type get_weights_uncertainty()const=0;
}; };
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment