Skip to content

Commit e9dfeff

Browse files
committed
remove prints
1 parent efc216b commit e9dfeff

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/main/java/io/bioimage/modelrunner/apposed/appose/Mamba.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1484,7 +1484,6 @@ public List<String> checkUninstalledDependenciesInEnv(String envName, List<Stri
14841484
return true;
14851485
}
14861486
}).collect(Collectors.toList());
1487-
System.out.println(uninstalled);
14881487
return uninstalled;
14891488
}
14901489

src/main/java/io/bioimage/modelrunner/model/python/DLModelPytorchProtected.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,6 @@ protected <T extends RealType<T> & NativeType<T>> String createInputsCode(List<R
576576
inShmaList.add(shma);
577577
}
578578
code += " " + MODEL_VAR_NAME + ".eval()" + System.lineSeparator();
579-
code += " print(device)" + System.lineSeparator();
580579
code += " with torch.no_grad():" + System.lineSeparator();
581580
code += " " + OUTPUT_LIST_KEY + " = " + MODEL_VAR_NAME + "(";
582581
for (int i = 0; i < rais.size(); i ++)

0 commit comments

Comments
 (0)