Reformat code.
This commit is contained in:
@@ -1,18 +1,15 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include "Simulator.hpp"
|
||||
|
||||
using namespace caffe;
|
||||
using namespace std;
|
||||
using namespace fmri;
|
||||
|
||||
Simulator::Simulator(const string& model_file, const string& weights_file) :
|
||||
net(model_file, TEST)
|
||||
{
|
||||
net.CopyTrainedLayersFrom(weights_file);
|
||||
Simulator::Simulator(const string &model_file, const string &weights_file) :
|
||||
net(model_file, TEST) {
|
||||
net.CopyTrainedLayersFrom(weights_file);
|
||||
}
|
||||
|
||||
void Simulator::simulate(const string& image_file)
|
||||
{
|
||||
cerr << "This is not implemented yet." << endl;
|
||||
void Simulator::simulate(const string &image_file) {
|
||||
cerr << "This is not implemented yet." << endl;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user