fixed matcaffe printout to specify num of args (now including train/test phase)

This commit is contained in:
forresti 2015-02-24 16:51:56 -08:00 коммит произвёл Evan Shelhamer
Родитель b915f9d2bb
Коммит 4a3887ab17
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -272,7 +272,7 @@ static void get_init_key(MEX_ARGS) {
static void init(MEX_ARGS) {
if (nrhs != 3) {
ostringstream error_msg;
error_msg << "Expected 2 arguments, got " << nrhs;
error_msg << "Expected 3 arguments, got " << nrhs;
mex_error(error_msg.str());
}