src/Microsoft.ML.DotNet.Interactive/DecisionTreeData.cs
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Microsoft.ML.DotNet.Interactive { public class DecisionTreeData { public NodeData Root { get; set; } } } |