Skip to content

Instantly share code, notes, and snippets.

@vrakesh
Last active September 14, 2021 00:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vrakesh/e287f5f0004c53ceeda8e6a547f97d49 to your computer and use it in GitHub Desktop.
Save vrakesh/e287f5f0004c53ceeda8e6a547f97d49 to your computer and use it in GitHub Desktop.
Gradle dependencies for SimpleSSDExample.java
plugins {
id 'java'
}
repositories {
jcenter()
}
dependencies {
compile "org.apache.logging.log4j:log4j-slf4j-impl:2.12.1"
compile "ai.djl.mxnet:mxnet-model-zoo:0.2.0"
runtime "ai.djl.mxnet:mxnet-native-mkl:1.6.0-a:linux-x86_64"
// Comment above line for osx and un-comment line below
//runtime "ai.djl.mxnet:mxnet-native-mkl:1.6.0-a:osx-x86_64"
}
@frankfliu
Copy link

repositories {
jcenter()
}
dependencies {
compile "org.apache.logging.log4j:log4j-slf4j-impl:2.12.1"
compile "ai.djl.mxnet:mxnet-model-zoo:0.2.0"
runtime "ai.djl.mxnet:mxnet-native-mkl:1.6.0-a:linux-x86_64"
// Comment above line for osx and un-comment line below
//runtime "ai.djl.mxnet:mxnet-native-mkl:1.6.0-a:osx-x86_64"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment