33 references to Type
Microsoft.ML.Data (33)
Model\Pfa\BoundPfaContext.cs (2)
13using T = PfaUtils.Type; 171return T.PfaTypeOrNullForColumnType(type);
Model\Pfa\PfaUtils.cs (10)
68return ((JObject)null).AddReturn("type", Type.String).AddReturn("value", str); 105cases.Add(jobj.AddReturn("as", Type.Map(itemType)).AddReturn( 107cases.Add(jobj.AddReturn("as", Type.Array(itemType)).AddReturn( 279ctx.AddFunc(name, new JArray(Param("a", Type.Vector(itemType))), Type.Int, 293ctx.AddFunc(name, new JArray(Param("str", Type.String)), Type.Bool, 305var arrType = Type.Array(Type.Double); 318ctx.AddFunc(name, new JArray(Param("size", Type.Int)), arrType,
Transforms\ColumnConcatenatingTransformer.cs (3)
33using PfaType = PfaUtils.Type; 825var itemType = PfaType.PfaTypeOrNullForColumnType(itemColumnType); 829var arrType = PfaType.Array(itemType);
Transforms\KeyToValue.cs (4)
466var outType = PfaUtils.Type.PfaTypeOrNullForColumnType(TypeOutput); 473var defaultToken = PfaUtils.Type.DefaultTokenOrNull(TypeOutput); 485string cellName = ctx.DeclareCell("KeyToValueMap", PfaUtils.Type.Array(outType), jsonValues); 492ctx.Pfa.AddFunc(funcName, new JArray(PfaUtils.Param("key", PfaUtils.Type.Int)),
Transforms\KeyToVector.cs (6)
676JToken arrType = PfaUtils.Type.Array(PfaUtils.Type.Double); 681PfaContext.CreateFuncBlock(new JArray() { PfaUtils.Param("k", PfaUtils.Type.Int) }, 691new JArray() { PfaUtils.Param("v", PfaUtils.Type.Double) }, PfaUtils.Type.Double, 695new JArray(PfaUtils.Param("a", arrType), PfaUtils.Param("i", PfaUtils.Type.Int)),
Transforms\NormalizeColumnDbl.cs (2)
759var itemType = PfaUtils.Type.Double; 760var arrType = PfaUtils.Type.Array(itemType);
Transforms\NormalizeColumnSng.cs (2)
916var itemType = PfaUtils.Type.Double; 917var arrType = PfaUtils.Type.Array(itemType);
Transforms\ValueToKeyMappingTransformer.cs (4)
972"TermMap", PfaUtils.Type.Map(PfaUtils.Type.Int), jsonMap); 978ctx.Pfa.AddFunc(funcName, new JArray(PfaUtils.Param("term", PfaUtils.Type.String)), 979PfaUtils.Type.Int, PfaUtils.If(PfaUtils.Call("map.containsKey", cellRef, "term"), PfaUtils.Index(cellRef, "term"), -1));