TensorDouble Classe
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Oggetto tensore float a 64 bit.
public ref class TensorDouble sealed : ITensor
public ref class TensorDouble sealed : ITensor, IClosable, IMemoryBuffer
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.MachineLearningContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class TensorDouble final : ITensor
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.MachineLearningContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class TensorDouble final : ITensor, IClosable, IMemoryBuffer
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.MachineLearningContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class TensorDouble : ITensor
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.MachineLearningContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class TensorDouble : System.IDisposable, ITensor, IMemoryBuffer
Public NotInheritable Class TensorDouble
Implements ITensor
Public NotInheritable Class TensorDouble
Implements IDisposable, IMemoryBuffer, ITensor
- Ereditarietà
- Attributi
- Implementazioni
Requisiti Windows
Famiglia di dispositivi |
Windows 10, version 1809 (è stato introdotto in 10.0.17763.0)
|
API contract |
Windows.AI.MachineLearning.MachineLearningContract (è stato introdotto in v1.0)
|
Commenti
Un tensore è una matrice multidimensionale di valori. Un tensore doppio è un tensore di valori a virgola mobile a 64 bit.
Il layout dei tensori è di tipo row-major, con dati contigui ben compressi che rappresentano ogni dimensione. La dimensione totale di un tensore è il prodotto delle dimensioni di ogni dimensione.
Windows Server
Per usare questa API in Windows Server, è necessario usare Windows Server 2019 con Esperienza desktop.
Thread safety
Questa API è thread-safe.
Cronologia delle versioni
Versione di Windows | Versione dell'SDK | Valore aggiunto |
---|---|---|
1903 | 18362 | CreateFromBuffer |
1903 | 18362 | CreateFromShapeArrayAndDataArray |
Proprietà
Kind |
Tipo di funzionalità. |
Shape |
Restituisce il conteggio e le dimensioni di ogni dimensione. |
TensorKind |
Restituisce il tipo di dati del tensore. |
Metodi
Close() |
Se non sono presenti oggetti IMemoryBufferReference in sospeso creati da questo oggetto, Close eliminerà l'oggetto ed eliminerà le risorse associate. In caso contrario, Close si disconnetterà dalle risorse associate e verrà eliminato definitivamente quando l'ultimo IMemoryBufferReference viene chiuso. |
Create() |
Crea un oggetto tensore float a 64 bit senza allocare un buffer. |
Create(IIterable<Int64>) |
Crea un oggetto tensore float a 64 bit e alloca un buffer di forma di dimensioni. |
CreateFromArray(IIterable<Int64>, Double[]) |
Crea un oggetto tensore float a 64 bit, alloca un buffer di forma di dimensioni e copia tutti i dati in esso contenuti. |
CreateFromBuffer(Int64[], IBuffer) |
Crea un oggetto tensore doppio con la forma specificata e usa il buffer sottostante nei dati per la valutazione successiva. |
CreateFromIterable(IIterable<Int64>, IIterable<Double>) |
Crea un oggetto tensore float a 64 bit, alloca un buffer di forma di dimensioni e copia tutti i dati in esso contenuti. |
CreateFromShapeArrayAndDataArray(Int64[], Double[]) |
Crea un oggetto tensore float a 64 bit, alloca un buffer di forma di dimensioni e copia tutti i dati in esso contenuti. |
CreateReference() |
Restituisce una rappresentazione IMemoryBufferReference del buffer che supporta l'oggetto tensore doppio. |
Dispose() |
Esegue attività definite dall'applicazione, come rilasciare o reimpostare risorse non gestite. |
GetAsVectorView() |
Restituisce una visualizzazione di sola lettura dei dati. |