Skip to content

Commit 1193e9c

Browse files
authored
Update README.md
1 parent cb96250 commit 1193e9c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var c = tf.add(a, b);
2222

2323
using (var sess = tf.Session())
2424
{
25-
var o = sess.run(c);
25+
var o = sess.run(c);
2626
}
2727
```
2828

@@ -34,10 +34,10 @@ var c = tf.add(a, b);
3434

3535
using(var sess = tf.Session())
3636
{
37-
var feed_dict = new Dictionary<Tensor, object>();
38-
feed_dict.Add(a, 3.0f);
39-
feed_dict.Add(b, 2.0f);
37+
var feed_dict = new Dictionary<Tensor, object>();
38+
feed_dict.Add(a, 3.0f);
39+
feed_dict.Add(b, 2.0f);
4040

41-
var o = sess.run(c, feed_dict);
41+
var o = sess.run(c, feed_dict);
4242
}
43-
```
43+
```

0 commit comments

Comments
 (0)