Skip to content

Commit

Permalink
Fix inconsistency in describing graph's initializer. The initializer (#…
Browse files Browse the repository at this point in the history
…2115)

is no longer required to be subset of graph's inputs.
  • Loading branch information
xykong58 authored and gramalingam committed Jun 20, 2019
1 parent 355a495 commit eb798fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/IR.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Graphs have the following properties:
|---|---|---|
name|string|The name of the model graph.
node|Node[]|A list of nodes, forming a partially ordered computation graph based on input/output data dependencies.
initializer|Tensor[]|A list of named tensor values, used to specify default values for some of the inputs of the graph. Each initializer value is associated with an input by name matching.
initializer|Tensor[]|A list of named tensor values. When an initializer has the same name as a graph input, it specifies a default value for that input. When an initializer has a name different from all graph inputs, it specifies a constant value.
doc_string|string|A human-readable documentation for this model. Markdown is allowed.
input|ValueInfo[]|The input “parameters” of the graph, possibly initialized by a default value found in ‘initializer.’
output|ValueInfo[]|The output parameters of the graph. Once all output parameters have been written to by a graph execution, the execution is complete.
Expand Down

0 comments on commit eb798fc

Please sign in to comment.