Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LiteSessionWrapper (0.13 sec)

  1. tensorflow/cc/saved_model/loader.cc

    //
    // Limiting the available methods on a returned Session gives us the option
    // to replace the Session with a cut-down implementation, without breaking any
    // users.
    class LiteSessionWrapper : public Session {
     public:
      explicit LiteSessionWrapper(std::unique_ptr<Session> wrapped)
          : wrapped_(std::move(wrapped)) {}
    
      Status Create(const GraphDef& graph) override {
        return absl::UnimplementedError("Session::Create()");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top