You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="dims">Describes the tensor shape, an array that indicates .</param>
625
627
/// <param name="data">Pointer to the raw data that will be used to initialize the tensor.</param>
626
628
/// <param name="dataSize">The size of the data being passed in.</param>
627
-
/// <param name="deallocator">Deallocator method, it is invoked when the tensor is destroyed to release the data pointed to by <paramref name="data"/>.</param>
629
+
/// <param name="deallocator">Deallocator method, it is invoked when the tensor is destroyed to release the data pointed to by <paramref name="data"/>. On platforms like iOS (or other static compilation platforms), yiou must annotate the method specified in the deallocator with a <see cref="T:TensorFlow.MonoPInvokeCallbackAttribute"/>.</param>
628
630
/// <param name="deallocatorData">An optional argument of data that is passed to the deallocator method when the tensor is destroyed, you can use this to pass context information.</param>
/// Sets the tensor shape of the tensor referenced by <paramref name="output"/> to the shape described by <paramref name="dims"/>.
493
+
/// </summary>
494
+
/// <param name="output">The tensor on which this method will operate in the graph.</param>
495
+
/// <param name="dims">The tensor shape, specified as an array of dimensions.</param>
496
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
/// Returns the shape of a tensor specified in <paramref name="output"/>.
530
+
/// </summary>
531
+
///
532
+
/// <returns>The tensor shape. If the number of dimensions in the shape is unknown or the shape is, a scalar, the values in the array will be zero. Otherwise, each element of will be set corresponding to the size of the dimension. An unknown dimension is represented by -1.</returns>
533
+
/// <param name="output">The tensor that you want to look up. </param>
534
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
/// Write out a serialized representation of the graph (as a GraphDef protocol buffer message) into <paramref name="outputGraphDef"/>.
556
+
/// </summary>
557
+
/// <param name="outputGraphDef">Target buffer where the graphs is serialized into.</param>
558
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
@@ -560,7 +581,7 @@ public void ToGraphDef (TFBuffer outputGraphDef, TFStatus status = null)
560
581
/// <returns>The import.</returns>
561
582
/// <param name="graphDef">A buffer containing the serialized graph.</param>
562
583
/// <param name="prefix">A prefix that will be prepended to names of nodes in the <paramref name="graphDef"/> when they are imported into the graph.</param>
563
-
/// <param name="status">Status buffer.</param>
584
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
/// <param name="buffer">A byte array containing the serialized graph.</param>
608
-
/// <param name="prefix">A prefix that will be prepended to names of nodes in the <paramref name="graphDef"/> when they are imported into the graph.</param>
609
-
/// <param name="status">Status buffer.</param>
629
+
/// <param name="prefix">A prefix that will be prepended to names of nodes in the graph when they are imported into the graph.</param>
630
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
@@ -686,7 +707,7 @@ public IEnumerable<TFOperation> GetEnumerator ()
686
707
/// </summary>
687
708
/// <returns>null for single dimension, .</returns>
688
709
/// <param name="output">The output operation to probe.</param>
689
-
/// <param name="status">Status.</param>
710
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
/// <param name="constructor">Callback method that fills out the various while loop parameters.</param>
902
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
881
903
/// <returns>
882
904
/// An array of TFOutputs from creating the While loop, or null if there is an error creating the
883
905
/// while loop, or if the constructor raised an exception when it was invoked.
@@ -951,7 +973,7 @@ public TFOutput [] While (TFOutput [] inputs, WhileConstructor constructor, TFSt
951
973
/// <param name="x">The x elements.</param>
952
974
/// <param name="dx">Initial gradients, which represent the symbolic partial derivatives of some loss function `L` w.r.t. <paramref name="y"/> ).
953
975
/// If the parameter is null, the implementation will use dx for 'OnesLike' for all shapes in <paramref name="y"/></param>
954
-
/// <param name="status">Status.</param>
976
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
@@ -1727,7 +1749,7 @@ public TFAttributeMetadata GetAttributeMetadata (string attrName, TFStatus statu
1727
1749
/// Encodes the TFOperation as a protocol buffer payload
1728
1750
/// </summary>
1729
1751
/// <returns>The buffer with the encoded operation in the protocol buffer format.</returns>
1730
-
/// <param name="status">Status.</param>
1752
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
1731
1753
/// <remarks>
1732
1754
/// </remarks>
1733
1755
publicTFBufferToNodeDef(TFStatusstatus=null)
@@ -1918,6 +1940,10 @@ public class TFSession : TFDisposable
/// Execute the graph fragments necessary to compute all requested fetches.
2200
2225
/// </summary>
2201
2226
/// <returns>One TFTensor for each call to Fetch that you made, in the order that you made them.</returns>
2202
-
/// <param name="status">Status.</param>
2227
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
2213
2238
/// <remarks>
2214
2239
/// This method is a convenience method, and when you call it, it will clear any
2215
2240
/// calls that you might have done to Fetch() and use the specified operation to Fetch
@@ -2251,7 +2276,7 @@ public Runner GetRunner ()
2251
2276
/// <param name="targetOpers">Target operations to execute.</param>
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
/// <param name="targetOpers">Target operations to run.</param>
2336
-
/// <param name="status">Status.</param>
2361
+
/// <param name="status">Status buffer, if specified a status code will be left here, if not specified, a <see cref="T:TensorFlow.TFException"/> exception is raised if there is an error.</param>
0 commit comments