Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_model_file (0.21 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/BUILD

            "@llvm-project//llvm:Support",
        ],
    )
    
    tf_cc_test(
        name = "quantize_model_test",
        srcs = ["quantize_model_test.cc"],
        args = [
            "--test_model_file=$(location //tensorflow/lite/tools/optimize:testdata/single_conv_weights_min_0_max_plus_10.bin)",
        ],
        data = [
            "//tensorflow/lite/tools/optimize:testdata/add_with_const_input.bin",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

      const std::vector<tensorflow::Flag> flag_list = {
          tensorflow::Flag("test_model_file", &model_file,
                           "Path to test tflite model file."),
      };
    
      const bool parse_result = tensorflow::Flags::Parse(&argc, argv, flag_list);
      if (!parse_result) {
        std::cerr << "Required test_model_file\n";
        std::abort();
      }
      g_test_model_dir =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      const std::vector<tensorflow::Flag> flag_list = {
          tensorflow::Flag("test_model_file", &model_file,
                           "Path to test tflite model file."),
      };
    
      const bool parse_result = tensorflow::Flags::Parse(&argc, argv, flag_list);
      if (!parse_result) {
        std::cerr << "Required test_model_file\n";
        std::abort();
      }
      g_test_model_dir =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top