You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clarifyDialog.setMessage(Html.fromHtml("Please enter your email (OPTIONAL) <br>if you would like to acknowledge your contributions <br>(will be publicly visible):"));
443
+
clarifyDialog.setMessage(Html.fromHtml("(OPTIONAL) Please enter your email if you would like to acknowledge your contributions (will be publicly visible):"));
publishProgress("\nSelected scenario: " + title + "\n");
2288
+
publishProgress("\nSelected scenario: " + title + "\n\n");
2289
2289
2290
2290
//In the future we may read json output and aggregate it too (openMe)
2291
2291
intiterationNum = 3; // todo it could be taken from loaded scenario
@@ -2294,9 +2294,9 @@ public void run() {
2294
2294
StringrecognitionResultText = null;
2295
2295
for (intit = 0; it <= iterationNum; it ++) {
2296
2296
if (it == 0) {
2297
-
publishProgress("\nRecognition started (mobile warms up) ...\n\n");
2297
+
publishProgress("Recognition in process (mobile warms up) ...\n");
2298
2298
} else {
2299
-
publishProgress("\nRecognition started (statistical repetition: " + it + " out of " + iterationNum + ")...\n\n");
2299
+
publishProgress("Recognition in process (statistical repetition: " + it + " out of " + iterationNum + ")...\n");
2300
2300
}
2301
2301
longstartTime = System.currentTimeMillis();
2302
2302
String[] recognitionResult = openme.openme_run_program(scenarioCmd, scenarioEnv, executablePath); //todo fix ck response cmd value: add appropriate path to executable from according to path value at "file" json
@@ -2314,15 +2314,15 @@ public void run() {
2314
2314
}
2315
2315
if (it == 0) {
2316
2316
// first iteration used for mobile warms up if it was in a low freq state
2317
-
publishProgress("\nRecognition time (warms up) " + processingTime + " ms \n");
2318
-
publishProgress("\nRecognition result (warms up):\n " + recognitionResultText + "\n\n");
2317
+
publishProgress(" * Recognition time (warming up) " + processingTime + " ms \n");
2318
+
publishProgress("\nRecognition result (warming up):\n " + recognitionResultText + "\n\n");
2319
2319
continue;
2320
2320
}
2321
-
publishProgress("\nRecognition time " + it + ": " + processingTime + " ms \n");
2321
+
publishProgress(" * Recognition time " + it + ": " + processingTime + " ms \n");
0 commit comments