Searched refs:modelFile (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/lite/java/src/main/java/org/tensorflow/lite/ |
D | Interpreter.java | 147 public Interpreter(@NonNull File modelFile) { in Interpreter() argument 148 this(modelFile, /*options = */ null); in Interpreter() 160 public Interpreter(@NonNull File modelFile, int numThreads) { in Interpreter() argument 161 this(modelFile, new Options().setNumThreads(numThreads)); in Interpreter() 170 public Interpreter(@NonNull File modelFile, Options options) { in Interpreter() argument 171 wrapper = new NativeInterpreterWrapper(modelFile.getAbsolutePath(), options); in Interpreter()
|
/external/tensorflow/tensorflow/lite/java/ovic/src/main/java/org/tensorflow/ovic/ |
D | OvicValidator.java | 45 final String modelFile = args[0]; in main() local 53 MappedByteBuffer model = loadModelFile(modelFile); in main() 73 System.out.printf("Successfully validated %s.%n", modelFile); in main() 76 System.out.printf("Failed to validate %s.%n", modelFile); in main()
|
/external/skia/tools/skqp/ |
D | make_gmkb.go | 206 modelFile, err := os.Create(path.Join(output, "models.txt")) 211 fmt.Fprintln(modelFile, v)
|
/external/skqp/tools/skqp/ |
D | make_gmkb.go | 206 modelFile, err := os.Create(path.Join(output, "models.txt")) 211 fmt.Fprintln(modelFile, v)
|
/external/tensorflow/tensorflow/lite/g3doc/guide/ |
D | inference.md | 119 public Interpreter(@NotNull File modelFile);
|