Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Resolved some formatting issues.
  • Loading branch information
zeahmed committed Jun 27, 2018
commit 05637d0c2407bcfd34d391cb670c4037d4edddeb
1 change: 0 additions & 1 deletion src/Microsoft.ML.Data/Transforms/CopyColumnsTransform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ private static VersionInfo GetVersionInfo()
public CopyColumnsTransform(IHostEnvironment env, IDataView input, string name, string source)
: this(env, new Arguments(){ Column = new[] { new Column() { Source = source, Name = name }}}, input)
{

}
Copy link
Contributor

@TomFinley TomFinley Jun 27, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Blank lines with trailing whitespace on them is evil. #Resolved


public CopyColumnsTransform(IHostEnvironment env, Arguments args, IDataView input)
Expand Down
1 change: 0 additions & 1 deletion src/Microsoft.ML.Data/Transforms/NAFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ private static VersionInfo GetVersionInfo()
public NAFilter(IHostEnvironment env, IDataView input, bool complement = Defaults.Complement, params string[] columns)
: this(env, new Arguments() { Column = columns, Complement = complement }, input)
{

}

public NAFilter(IHostEnvironment env, Arguments args, IDataView input)
Expand Down
1 change: 0 additions & 1 deletion src/Microsoft.ML.Transforms/BootstrapSampleTransform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ public BootstrapSampleTransform(IHostEnvironment env,
int poolSize = Defaults.PoolSize)
: this(env, new Arguments() { Complement = complement, Seed = seed, ShuffleInput = shuffleInput, PoolSize = poolSize }, input)
{

}

private BootstrapSampleTransform(IHost host, ModelLoadContext ctx, IDataView input)
Expand Down