Internal infra change

PiperOrigin-RevId: 357744680
Change-Id: Iaaf3ac33c9ce032894577892eff947440a1f3f60
This commit is contained in:
Jared Duke 2021-02-16 10:05:39 -08:00 committed by TensorFlower Gardener
parent b8b03dc654
commit c87f1e3c06
3 changed files with 5 additions and 5 deletions
tensorflow/lite
java/src/test/java/org/tensorflow/lite
testing

View File

@ -38,11 +38,11 @@ public final class InterpreterMobileNetTest {
private static final ByteBuffer MOBILENET_FLOAT_MODEL_BUFFER =
TestUtils.getTestFileAsBuffer(
"third_party/tensorflow/lite/java/demo/app/src/main/assets/mobilenet_v1_1.0_224.tflite");
"tensorflow/lite/java/demo/app/src/main/assets/mobilenet_v1_1.0_224.tflite");
private static final ByteBuffer MOBILENET_QUANTIZED_MODEL_BUFFER =
TestUtils.getTestFileAsBuffer(
"third_party/tensorflow/lite/java/demo/app/src/main/assets/mobilenet_v1_1.0_224_quant.tflite");
"tensorflow/lite/java/demo/app/src/main/assets/mobilenet_v1_1.0_224_quant.tflite");
@Test
public void testMobileNet() {

View File

@ -39,7 +39,7 @@ public final class GpuDelegateTest {
private static final ByteBuffer MODEL_BUFFER = TestUtils.getTestFileAsBuffer(MODEL_PATH);
private static final ByteBuffer MOBILENET_QUANTIZED_MODEL_BUFFER =
TestUtils.getTestFileAsBuffer(
"third_party/tensorflow/lite/java/demo/app/src/main/assets/mobilenet_v1_1.0_224_quant.tflite");
"tensorflow/lite/java/demo/app/src/main/assets/mobilenet_v1_1.0_224_quant.tflite");
@Test
public void testBasic() throws Exception {

View File

@ -64,12 +64,12 @@ bool RunWithRandomInputs(const std::string& filename) {
}
TEST(SelectiveBuiltTest, AddModel) {
std::string model = "third_party/tensorflow/lite/testdata/add.bin";
std::string model = "tensorflow/lite/testdata/add.bin";
EXPECT_THAT(RunWithRandomInputs(model), true);
}
TEST(SelectiveBuiltTest, LSTMModel) {
std::string model = "third_party/tensorflow/lite/testdata/lstm.bin";
std::string model = "tensorflow/lite/testdata/lstm.bin";
EXPECT_THAT(RunWithRandomInputs(model), true);
}
} // namespace tflite