7 references to Object
Microsoft.ML.SearchSpace (7)
Parameter.cs (5)
164
/// Create a <see cref="Parameter"/> from an <see cref="object"/> value. The <see cref="ParameterType"/> will be <see cref="ParameterType.
Object
"/>.
216
/// Create a <see cref="Parameter"/> from <paramref name="parameters"/>. The <see cref="ParameterType"/> will be <see cref="ParameterType.
Object
"/>.
221
var parameter = new Parameter(new Dictionary<string, Parameter>(), ParameterType.
Object
);
233
public int Count => ParameterType == ParameterType.
Object
? (_value as Dictionary<string, Parameter>).Count : 1;
360
Contract.Assert(ParameterType == ParameterType.
Object
, "parameter is not object type.");
SearchSpace.cs (2)
380
(ParameterType.
Object
, ParameterType.
Object
) => null,