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
Sorry to bother you again but I'm getting this error when running gradlew assemble:
:compileDebugJavaWithJavac
/home/pierre/www/youtube-reader/src/main/java/com/vackosar/youtubereader/GraphExecutor.java:5: error: package org.tensorflow.contrib.android does not exist
import org.tensorflow.contrib.android.TensorFlowInferenceInterface;
^
/home/pierre/www/youtube-reader/src/main/java/com/vackosar/youtubereader/GraphExecutor.java:20: error: cannot find symbol
private final TensorFlowInferenceInterface inferenceInterface;
^
symbol: class TensorFlowInferenceInterface
location: class GraphExecutor
/home/pierre/www/youtube-reader/src/main/java/com/vackosar/youtubereader/GraphExecutor.java:27: error: cannot find symbol
this.inferenceInterface = new TensorFlowInferenceInterface(assetManager, MODEL_FILENAME);
^
symbol: class TensorFlowInferenceInterface
location: class GraphExecutor
3 errors
:compileDebugJavaWithJavac FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.
java { srcDir tensorflowRepo + 'tensorflow/java/src/main/java' exclude '**/examples/**' }
If you do that you can then recompile even all the binaries. But I think your suggestion would probably work.
Hello,
Sorry to bother you again but I'm getting this error when running
gradlew assemble
:I see you are getting this library locally:
youtube-reader/build.gradle
Line 2 in 04c9247
But wouldn't it be possible to add something like this to
build.gradle
:so the library can be downloaded by Gradle.
The text was updated successfully, but these errors were encountered: