Browse Source

Tensor: Changed eval(Session session, FeedItem[] feed_dict = null) to eval(Session session, params FeedItem[] feed_dict)

tags/v0.12
Eli Belash 6 years ago
parent
commit
1e791f6750
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/TensorFlowNET.Core/Tensors/Tensor.cs

+ 1
- 1
src/TensorFlowNET.Core/Tensors/Tensor.cs View File

@@ -442,7 +442,7 @@ namespace Tensorflow
/// <param name="feed_dict">A dictionary that maps `Tensor` objects to feed values.</param>
/// <param name="session">The `Session` to be used to evaluate this tensor.</param>
/// <returns>A <see cref="NumSharp"/> array corresponding to the value of this tensor.</returns>
public NDArray eval(Session session, FeedItem[] feed_dict = null)
public NDArray eval(Session session, params FeedItem[] feed_dict)
{
return ops._eval_using_default_session(this, feed_dict, graph, session);
}


Loading…
Cancel
Save