|
|
|
@@ -8,5 +8,16 @@ namespace Tensorflow |
|
|
|
{ |
|
|
|
public static object get_collection(string key, string scope = "") => get_default_graph() |
|
|
|
.get_collection(key, scope: scope); |
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// Returns a context manager that creates hierarchical names for operations. |
|
|
|
/// </summary> |
|
|
|
/// <param name="name">The name argument that is passed to the op function.</param> |
|
|
|
/// <param name="default_name">The default name to use if the name argument is None.</param> |
|
|
|
/// <param name="values">The list of Tensor arguments that are passed to the op function.</param> |
|
|
|
/// <returns>The scope name.</returns> |
|
|
|
public static ops.name_scope name_scope(string name, |
|
|
|
string default_name = "", |
|
|
|
object values = null) => new ops.name_scope(name, default_name, values); |
|
|
|
} |
|
|
|
} |