File: DataStructures\SearchData.cs | Web Access |
Project: src\docs\samples\Microsoft.ML.AutoML.Samples\Microsoft.ML.AutoML.Samples.csproj (Microsoft.ML.AutoML.Samples) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using Microsoft.ML.Data; namespace Microsoft.ML.AutoML.Samples { public class SearchData { [LoadColumn(0)] public string GroupId; [LoadColumn(1)] public float Features; [LoadColumn(2)] public float Label; } } |