Skip to content

Commit ea79b6f

Browse files
committed
PR feedback.
1 parent 564234f commit ea79b6f

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

src/Microsoft.ML.Dnn/ImageClassificationTrainer.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using System;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using System;
26
using System.Collections.Generic;
37
using System.IO;
48
using System.Linq;

src/Microsoft.ML.Dnn/LearningRateScheduler.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
using System;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using System;
26
using System.Collections.Generic;
3-
using System.Text;
47

5-
namespace Microsoft.ML.Transforms
8+
namespace Microsoft.ML.Dnn
69
{
710
/// <summary>
811
/// A class that contains the current train state to use for learning rate scheduling.

test/Microsoft.ML.Benchmarks/ImageClassificationBench.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,12 @@
77
using System.IO.Compression;
88
using System.Collections.Generic;
99
using System.Linq;
10-
using System.Net;
11-
using System.Threading;
1210
using System.Threading.Tasks;
1311
using Microsoft.ML.Data;
1412
using Microsoft.ML.Transforms;
1513
using BenchmarkDotNet.Attributes;
1614
using static Microsoft.ML.DataOperationsCatalog;
1715
using System.Net.Http;
18-
using System.Diagnostics;
1916
using Microsoft.ML.Dnn;
2017

2118
namespace Microsoft.ML.Benchmarks

0 commit comments

Comments
 (0)