Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ConvertJaxToTFLiteFlatBuffer (0.47 sec)

  1. tensorflow/compiler/mlir/lite/python/jax_to_tfl_flatbuffer.h

    namespace tensorflow {
    
    // Converts the given Jax model to a TF Lite FlatBuffer
    // string according to the given model flags, toco flags and tags. Returns error
    // status if it fails to convert the input.
    Status ConvertJaxToTFLiteFlatBuffer(const std::string& input,
                                        const toco::ModelFlags& model_flags,
                                        toco::TocoFlags& toco_flags,
                                        string* result);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/jax_to_tfl_flatbuffer.cc

      if (!status.ok()) {
        LOG(ERROR) << "HLO Module import failed: " << status;
        return nullptr;
      }
    
      return module;
    }
    
    }  // namespace
    absl::Status ConvertJaxToTFLiteFlatBuffer(const std::string& input,
                                              const toco::ModelFlags& model_flags,
                                              toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

                          "Cannot specify both saved_model and hlo import.");
          return nullptr;
        }
    
        if (model_flags.use_hlo_import()) {
          status = tensorflow::ConvertJaxToTFLiteFlatBuffer(
              input_contents_txt, model_flags, toco_flags,
              &output_file_contents_txt);
        } else if (!model_flags.saved_model_dir().empty()) {
          status = tensorflow::ConvertSavedModelToTFLiteFlatBuffer(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top