7 instantiations of BigArray
Microsoft.ML.Data (2)
DataView\CacheDataView.cs (2)
1353
_indices = new
BigArray
<int>();
1354
_values = new
BigArray
<T>();
Microsoft.ML.StandardTrainers (4)
Standard\SdcaBinary.cs (4)
1090
_duals = new
BigArray
<float>(length);
1219
_rgit = new
BigArray
<long>(prime);
1221
_entries = new
BigArray
<Entry>();
1314
_rgit = new
BigArray
<long>(size);
Microsoft.ML.Transforms (1)
Text\WordEmbeddingsExtractor.cs (1)
106
WordVectors = new
BigArray
<float>();
9 references to BigArray
Microsoft.ML.Core (1)
Utilities\BigArray.cs (1)
88
/// Initializes a new instance of the <see cref="
BigArray
{T}"/> class with a specified size.
Microsoft.ML.Data (2)
DataView\CacheDataView.cs (2)
1338
private readonly
BigArray
<int> _indices;
1340
private readonly
BigArray
<T> _values;
Microsoft.ML.StandardTrainers (4)
Standard\SdcaBinary.cs (4)
1083
private readonly
BigArray
<float> _duals;
1101
BigArray
<float>.Visitor manip2 = (long idx, ref float value) => manip(idx, ref value);
1199
private
BigArray
<long> _rgit;
1205
private readonly
BigArray
<Entry> _entries;
Microsoft.ML.Transforms (2)
Text\WordEmbeddingsExtractor.cs (2)
99
public readonly
BigArray
<float> WordVectors;
423
var
wordVectors = _parent._currentVocab.WordVectors;