Skip to content

Commit

Permalink
updated openblas 1.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
supertick committed Mar 2, 2024
1 parent ea1a1d4 commit 11457e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public Deeplearning4jMeta() {
addDependency("org.bytedeco", "javacpp", "1.5.8");

// REMOVED FOR COLLISION
// addDependency("org.bytedeco", "openblas", "0.3.17-" + "1.5.6");
addDependency("org.bytedeco", "openblas", "0.3.21-" + "1.5.8");

// dl4j deps.
addDependency("org.deeplearning4j", "deeplearning4j-core", dl4jVersion);
Expand Down
1 change: 1 addition & 0 deletions src/main/java/org/myrobotlab/service/meta/OpenCVMeta.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public OpenCVMeta() {
// addDependency("org.bytedeco", "javacv", javaCvVersion);
addDependency("org.bytedeco", "javacv-platform", javaCvVersion);
addDependency("org.bytedeco", "javacpp", javaCvVersion);
addDependency("org.bytedeco", "openblas", "0.3.21-" + javaCvVersion);
// FIXME - finish with cmdLine flag -gpu vs cudaEnabled for DL4J ?
boolean gpu = false;
if (gpu) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@ public class TesseractOcrMeta extends MetaData {
* dependencies, and all other meta data related to the service.
*/
public TesseractOcrMeta() {
String javaCvVersion = "1.5.8";

String tesseractVersion = "5.2.0-1.5.8";
String tesseractVersion = "5.2.0-" + javaCvVersion;
addDescription("Optical character recognition - the ability to read");
addCategory("ai", "vision");
addDependency("org.bytedeco", "tesseract", tesseractVersion);
addDependency("org.bytedeco", "tesseract-platform", tesseractVersion);
addDependency("tesseract", "tessdata", "0.0.2", "zip");
addDependency("org.bytedeco", "openblas", "0.3.21-" + javaCvVersion);

}

Expand Down

0 comments on commit 11457e6

Please sign in to comment.