TensorFlowInferenceInterface

TensorFlowInferenceInterface

我想在Android Studio上使用TensorFlow图。
首先,我可以导入org.tensorflow.contrib.android.TensorFlowInferenceInterface。但是我无法建立实例。
这是MainActivity.java。

package com.example.maguro.mnist_beginner;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import org.tensorflow.contrib.android.TensorFlowInferenceInterface;

public class MainActivity extends AppCompatActivity {

    static{
        System.loadLibrary("tensorflow_inference");
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TensorFlowInferenceInterface inferenceInterface = new TensorFlowInferenceInterface();

    }
}


错误点是最后的描述。

TensorFlowInferenceInterface inferenceInterface = new TensorFlowInferenceInterface();


错误提示“无法解析构造函数“ TensorFlowInferenceInterface();”。
尽管我参考了2个主页,但是却收到此错误。
http://docs.fabo.io/tensorflow/android/run.html
https://qiita.com/ohisama@github/items/f2fdd384a5e305462a79

然后编辑2个文件。“ settings.gradle”和“ app / build.gradle”
这是settings.gradle。

include ':app',':TensorFlow-Android-Inference'
findProject(":TensorFlow-Android-Inference").projectDir = new File("/home/maguro/tensorflow/tensorflow/contrib/android/cmake")


这是app / build.gradle。

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.2"
    defaultConfig {
        applicationId "com.example.maguro.mnist_beginner"
        minSdkVersion 23
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    sourceSets{
        main{
            jniLibs.srcDirs = ['libs']
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:26.+'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
    debugCompile project(path:':TensorFlow-Android-Inference',configuration:'debug')
    releaseCompile project(path:':TensorFlow-Android-Inference',configuration:'release')
}


------我的环境------
作业系统:Ubuntu 14.04 LTS
Tensorflow:将Anaconda用于python3.6的GPU
Android Studio:2.3.3
CUDA工具包:8.0
cuDNN:6.0

我不会很好地使用英语。
如果我说了一些粗鲁的话,对不起。
请帮我一下。

最佳答案

如错误消息所暗示的,没有TensorFlowInferenceInterface的构造函数不接受任何参数。

the source file,我看到三个构造函数:


TensorFlowInferenceInterface(AssetManager assetManager, String model)
TensorFlowInferenceInterface(InputStream is)
TensorFlowInferenceInterface(Graph g)


因此,您必须使用其中之一。

希望能有所帮助。

09-25 18:19