Skip to content

Commit

Permalink
negative scoring
Browse files Browse the repository at this point in the history
  • Loading branch information
jnoxro committed Sep 8, 2020
1 parent a5a50d4 commit 9cf002c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions joker/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ int main(int argc, const char* argv[]) {
string modelpath = "mymodel";
string datapath = "data";
string newmodel = "mymodel";
string method = "";
string method = "pixelaverage";
int threadmode = 0;
int verbose = 0;
int mode = 0;
int e = 0;
int negscore = 0;
int negscore = -1;

void welcome();

Expand Down Expand Up @@ -207,6 +207,7 @@ void welcome()
cout << "[Joker] -t train | -t" << endl;
cout << "[Joker] -s methodology | -s pixelaverage" << endl;
cout << "[Joker] -e edge suppress | -e 5" << endl;
cout << "[Joker] -p negative score | -p -1" << endl;
cout << "[Joker] -d data folder | -d data" << endl;
cout << "[Joker] -n new model name | -n mymodel" << endl;

Expand Down

0 comments on commit 9cf002c

Please sign in to comment.