DebuggerExtensions.Preview 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Preview(IDataView, Int32) |
在方便偵錯的檢視中擷取資料檢視的「前端」。 |
Preview(ITransformer, IDataView, Int32) |
預覽在指定 |
Preview(IEstimator<ITransformer>, IDataView, Int32, Int32) |
預覽在指定 |
Preview<TSource>(IDataLoader<TSource>, TSource, Int32) |
預覽在指定 |
Preview(IDataView, Int32)
在方便偵錯的檢視中擷取資料檢視的「前端」。
public static Microsoft.ML.Data.DataDebuggerPreview Preview (this Microsoft.ML.IDataView data, int maxRows = 100);
static member Preview : Microsoft.ML.IDataView * int -> Microsoft.ML.Data.DataDebuggerPreview
<Extension()>
Public Function Preview (data As IDataView, Optional maxRows As Integer = 100) As DataDebuggerPreview
參數
- data
- IDataView
要預覽的資料檢視
- maxRows
- Int32
要提取的資料列數目上限
傳回
適用於
Preview(ITransformer, IDataView, Int32)
預覽在指定 data
上的效果 transformer
。
public static Microsoft.ML.Data.DataDebuggerPreview Preview (this Microsoft.ML.ITransformer transformer, Microsoft.ML.IDataView data, int maxRows = 100);
static member Preview : Microsoft.ML.ITransformer * Microsoft.ML.IDataView * int -> Microsoft.ML.Data.DataDebuggerPreview
<Extension()>
Public Function Preview (transformer As ITransformer, data As IDataView, Optional maxRows As Integer = 100) As DataDebuggerPreview
參數
- transformer
- ITransformer
我們正在預覽之效果的轉換程式
- data
- IDataView
要用於預覽的資料檢視
- maxRows
- Int32
要提取的資料列數目上限
傳回
適用於
Preview(IEstimator<ITransformer>, IDataView, Int32, Int32)
預覽在指定 data
上的效果 estimator
。
public static Microsoft.ML.Data.DataDebuggerPreview Preview (this Microsoft.ML.IEstimator<Microsoft.ML.ITransformer> estimator, Microsoft.ML.IDataView data, int maxRows = 100, int maxTrainingRows = 100);
static member Preview : Microsoft.ML.IEstimator<Microsoft.ML.ITransformer> * Microsoft.ML.IDataView * int * int -> Microsoft.ML.Data.DataDebuggerPreview
<Extension()>
Public Function Preview (estimator As IEstimator(Of ITransformer), data As IDataView, Optional maxRows As Integer = 100, Optional maxTrainingRows As Integer = 100) As DataDebuggerPreview
參數
- estimator
- IEstimator<ITransformer>
我們正在預覽之效果的估算器
- data
- IDataView
要用於預覽的資料檢視
- maxRows
- Int32
預覽中顯示的資料列數目上限
- maxTrainingRows
- Int32
要符合估算器的資料列數目上限
傳回
適用於
Preview<TSource>(IDataLoader<TSource>, TSource, Int32)
預覽在指定 source
上的效果 loader
。
public static Microsoft.ML.Data.DataDebuggerPreview Preview<TSource> (this Microsoft.ML.IDataLoader<TSource> loader, TSource source, int maxRows = 100);
static member Preview : Microsoft.ML.IDataLoader<'Source> * 'Source * int -> Microsoft.ML.Data.DataDebuggerPreview
<Extension()>
Public Function Preview(Of TSource) (loader As IDataLoader(Of TSource), source As TSource, Optional maxRows As Integer = 100) As DataDebuggerPreview
類型參數
- TSource
參數
- loader
- IDataLoader<TSource>
要預覽的資料載入器
- source
- TSource
要從中提取資料的來源
- maxRows
- Int32
要提取的資料列數目上限