Skip to content

Enable graph building using C APIs? #23

@nikhilk

Description

@nikhilk

The new C APIs support building ops and adding them to the Graph.
For example, from https://www.tensorflow.org/install/install_java

// Construct the computation graph with a single operation, a constant
// named "MyConst" with a value "value".
try (Tensor t = Tensor.create(value.getBytes("UTF-8"))) {
  // The Java API doesn't yet include convenience functions for adding operations.
  g.opBuilder("Const", "MyConst").setAttr("dtype", t.dataType()).setAttr("value", t).build();
}

We could provide equivalent in node.js (only better, in terms of API compared to Java). However, how useful is it ... vs. the idea of constructing graphs entirely in Python or with JSON (once #22 is fixed).

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions