We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afee297 commit aebf7a9Copy full SHA for aebf7a9
1 file changed
docs/source/Placeholder.md
@@ -8,13 +8,13 @@ In this chapter we will talk about another common data type in TensorFlow: Place
8
var x = tf.placeholder(tf.int32);
9
var y = x * 3;
10
11
-Python.with<Session>(tf.Session(), sess =>
+using (var sess = tf.Session())
12
{
13
var result = sess.run(y, feed_dict: new FeedItem[]
14
15
new FeedItem(x, 2)
16
});
17
// (int)result should be 6;
18
-});
+}
19
```
20
0 commit comments