Coder Social home page Coder Social logo

Getting [java.lang.IllegalArgumentException: Internal error: Error applying delegate] error while applying GPU Delegate about tensorflow HOT 2 OPEN

walker-ai avatar walker-ai commented on April 30, 2024
Getting [java.lang.IllegalArgumentException: Internal error: Error applying delegate] error while applying GPU Delegate

from tensorflow.

Comments (2)

vytanase avatar vytanase commented on April 30, 2024


override suspend fun initModel(): InitModelResult {
    return withContext(dispatcher) {
        val loadResult = loadModelFile(context)

        if (loadResult.isFailure) {
            val exc = loadResult.exceptionOrNull()
            return@withContext if (exc is FileNotFoundException) {
                InitModelResult.Error(AutoCompleteServiceError.MODEL_FILE_NOT_FOUND)
            } else {
                InitModelResult.Error(AutoCompleteServiceError.MODEL_NOT_INITIALIZED)
            }
        }

        val options = Interpreter.Options()
        val myDelegate = GpuDelegate()
        options.addDelegate(myDelegate)

        try {

            val model = loadResult.getOrNull()
            isInitialized = model?.let {
                interpreter = Interpreter(it, options)
                true
            } ?: false

            return@withContext if (isInitialized) {
                InitModelResult.Success
            } else {
                InitModelResult.Error(AutoCompleteServiceError.MODEL_NOT_INITIALIZED)
            }
        } catch (e: Exception) {
 
            e.printStackTrace()
            return@withContext InitModelResult.Error(AutoCompleteServiceError.MODEL_INITIALIZATION_FAILED)
        }
    }
}
// Try this code snippet 

from tensorflow.

walker-ai avatar walker-ai commented on April 30, 2024


override suspend fun initModel(): InitModelResult {
    return withContext(dispatcher) {
        val loadResult = loadModelFile(context)

        if (loadResult.isFailure) {
            val exc = loadResult.exceptionOrNull()
            return@withContext if (exc is FileNotFoundException) {
                InitModelResult.Error(AutoCompleteServiceError.MODEL_FILE_NOT_FOUND)
            } else {
                InitModelResult.Error(AutoCompleteServiceError.MODEL_NOT_INITIALIZED)
            }
        }

        val options = Interpreter.Options()
        val myDelegate = GpuDelegate()
        options.addDelegate(myDelegate)

        try {

            val model = loadResult.getOrNull()
            isInitialized = model?.let {
                interpreter = Interpreter(it, options)
                true
            } ?: false

            return@withContext if (isInitialized) {
                InitModelResult.Success
            } else {
                InitModelResult.Error(AutoCompleteServiceError.MODEL_NOT_INITIALIZED)
            }
        } catch (e: Exception) {
 
            e.printStackTrace()
            return@withContext InitModelResult.Error(AutoCompleteServiceError.MODEL_INITIALIZATION_FAILED)
        }
    }
}
// Try this code snippet 

Thank you for your reply. I have tried this code above. It does catch the exception. However, the log convert from 'Error' to 'Warning":

com.google.tensorflowdemo.debug      W  java.lang.IllegalArgumentException: Internal error: Error applying delegate: 
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at org.tensorflow.lite.NativeInterpreterWrapper.createInterpreter(Native Method)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at org.tensorflow.lite.NativeInterpreterWrapper.init(NativeInterpreterWrapper.java:110)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at org.tensorflow.lite.NativeInterpreterWrapper.<init>(NativeInterpreterWrapper.java:73)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at org.tensorflow.lite.NativeInterpreterWrapperExperimental.<init>(NativeInterpreterWrapperExperimental.java:36)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at org.tensorflow.lite.Interpreter.<init>(Interpreter.java:214)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at com.google.tensorflowdemo.data.autocomplete.AutoCompleteServiceImpl$initModel$2.invokeSuspend(AutoCompleteService.kt:156)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:106)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at kotlinx.coroutines.internal.LimitedDispatcher.run(LimitedDispatcher.kt:42)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at kotlinx.coroutines.scheduling.TaskImpl.run(Tasks.kt:95)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:570)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:750)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:677)
2024-04-14 18:08:11.198 29026-29253 System.err              com.google.tensorflowdemo.debug      W  	at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:664)

The problem seems to still exist.

from tensorflow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.