Reformat code.

This commit is contained in:
2017-10-07 20:16:48 +02:00
parent ff94a1d3da
commit dbcb4ead51
5 changed files with 97 additions and 108 deletions

View File

@@ -6,17 +6,17 @@
#include <caffe/caffe.hpp>
namespace fmri {
using std::string;
using std::string;
class Simulator {
public:
typedef float DType;
class Simulator {
public:
typedef float DType;
Simulator(const string& model_file, const string& weights_file);
Simulator(const string &model_file, const string &weights_file);
void simulate(const string& input_file);
void simulate(const string &input_file);
private:
caffe::Net<DType> net;
};
private:
caffe::Net<DType> net;
};
}