Share via


TensorString.Create Method

Definition

Overloads

Name Description
Create()

Important

For the latest documentation about Windows Machine Learning, see What is Windows ML. That documentation describes APIs that are in the Microsoft.Windows.AI.MachineLearning namespace, which ships in the Windows App SDK. Those APIs supersede the ones documented here, which are in the Windows.AI.MachineLearning namespace, and were shipped in 2018.

Creates a string tensor object without allocating a buffer.

Create(IIterable<Int64>)

Important

For the latest documentation about Windows Machine Learning, see What is Windows ML. That documentation describes APIs that are in the Microsoft.Windows.AI.MachineLearning namespace, which ships in the Windows App SDK. Those APIs supersede the ones documented here, which are in the Windows.AI.MachineLearning namespace, and were shipped in 2018.

Creates a string tensor object and allocates a buffer of size shape.

Create()

Important

For the latest documentation about Windows Machine Learning, see What is Windows ML. That documentation describes APIs that are in the Microsoft.Windows.AI.MachineLearning namespace, which ships in the Windows App SDK. Those APIs supersede the ones documented here, which are in the Windows.AI.MachineLearning namespace, and were shipped in 2018.

Creates a string tensor object without allocating a buffer.

public:
 static TensorString ^ Create();
/// [Windows.Foundation.Metadata.Overload("Create")]
 static TensorString Create();
[Windows.Foundation.Metadata.Overload("Create")]
public static TensorString Create();
function create()
Public Shared Function Create () As TensorString

Returns

A string tensor object.

Attributes

Remarks

Windows Server

To use this API on Windows Server, you must use Windows Server 2019 with Desktop Experience.

Thread safety

This API is thread-safe.

Applies to

Create(IIterable<Int64>)

Important

For the latest documentation about Windows Machine Learning, see What is Windows ML. That documentation describes APIs that are in the Microsoft.Windows.AI.MachineLearning namespace, which ships in the Windows App SDK. Those APIs supersede the ones documented here, which are in the Windows.AI.MachineLearning namespace, and were shipped in 2018.

Creates a string tensor object and allocates a buffer of size shape.

public:
 static TensorString ^ Create(IIterable<long long> ^ shape);
/// [Windows.Foundation.Metadata.Overload("Create2")]
 static TensorString Create(IIterable<long> const& shape);
[Windows.Foundation.Metadata.Overload("Create2")]
public static TensorString Create(IEnumerable<long> shape);
function create(shape)
Public Shared Function Create (shape As IEnumerable(Of Long)) As TensorString

Parameters

shape

IIterable<Int64>

IEnumerable<Int64>

Windows.Foundation.Collections.IIterable<long long>

IIterable<long>

The size of the buffer.

Returns

A string tensor object with a buffer of the given size.

Attributes

Remarks

Windows Server

To use this API on Windows Server, you must use Windows Server 2019 with Desktop Experience.

Thread safety

This API is thread-safe.

Applies to