Skip to content

Instantly share code, notes, and snippets.

@kevinrobinson
Last active December 23, 2015 15:31
Show Gist options
  • Save kevinrobinson/f47c8fd32b965ca76308 to your computer and use it in GitHub Desktop.
Save kevinrobinson/f47c8fd32b965ca76308 to your computer and use it in GitHub Desktop.
node {
name: "W"
op: "Const"
attr {
key: "dtype"
value {
type: DT_FLOAT
}
}
attr {
key: "value"
value {
tensor {
dtype: DT_FLOAT
tensor_shape {
dim {
size: 784
}
dim {
size: 10
}
}
float_val: 0.0
}
}
}
}
node {
name: "Variable"
op: "Variable"
attr {
key: "container"
value {
s: ""
}
}
attr {
key: "dtype"
value {
type: DT_FLOAT
}
}
attr {
key: "shape"
value {
shape {
dim {
size: 784
}
dim {
size: 10
}
}
}
}
attr {
key: "shared_name"
value {
s: ""
}
}
}
node {
name: "Variable/Assign"
op: "Assign"
input: "Variable"
input: "W"
attr {
key: "T"
value {
type: DT_FLOAT
}
}
attr {
key: "use_locking"
value {
b: true
}
}
attr {
key: "validate_shape"
value {
b: true
}
}
}
node {
name: "Variable/read"
op: "Identity"
input: "Variable"
attr {
key: "T"
value {
type: DT_FLOAT
}
}
}
version: 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment