nikhilk / node-tensorflow

Node.js + TensorFlow
Apache License 2.0
587 stars 59 forks source link

Enable graph building using C APIs? #23

Open nikhilk opened 6 years ago

nikhilk commented 6 years ago

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).

nikhilk commented 6 years ago

ecd28d71fa944ec7ecda920ee07650d9c371288c allows for JSON object for specifying graphs. This might be more interesting that making repeated calls to TF APIs for each op.