Skip to content

Commit a42625c

Browse files
authored
Merge pull request #1 from dotnet/master
Update fork...
2 parents 21ad5ff + d9d1216 commit a42625c

File tree

9 files changed

+26
-16
lines changed

9 files changed

+26
-16
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@ Or alternatively you can add the Microsoft.ML package from within Visual Studio'
3636

3737
To build ML.NET from source please visit our [developers guide](Documentation/project-docs/developer-guide.md).
3838

39-
Live build status is coming soon.
39+
| | x64 Debug | x64 Release |
40+
|:---|----------------:|------------------:|
41+
|**Linux**|[![x64-debug](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/linux_debug/badge/icon)](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/linux_debug/lastCompletedBuild)|[![x64-release](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/linux_release/badge/icon)](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/linux_release/lastCompletedBuild)|
42+
|**macOS**|[![x64-debug](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/osx10.13_debug/badge/icon)](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/osx10.13_debug/lastCompletedBuild)|[![x64-release](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/osx10.13_release/badge/icon)](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/osx10.13_release/lastCompletedBuild)|
43+
|**Windows**|[![x64-debug](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/windows_nt_debug/badge/icon)](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/windows_nt_debug/lastCompletedBuild)|[![x64-release](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/windows_nt_release/badge/icon)](https://ci2.dot.net/job/dotnet_machinelearning/job/master/job/windows_nt_release/lastCompletedBuild)|
4044

4145
## Contributing
4246

ROADMAP.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In the meanwhile, we are looking for contributions. An easy place to start is t
4646
* Generative Additive Models
4747
* [SymSGD](https://arxiv.org/pdf/1705.08030.pdf) -a fast linear SGD learner
4848
* Factorization Machines
49-
* [ProtoNN and Bonsaii](https://www.microsoft.com/en-us/research/project/resource-efficient-ml-for-the-edge-and-endpoint-iot-devices/) for compact and effecient models
49+
* [ProtoNN and Bonsaii](https://www.microsoft.com/en-us/research/project/resource-efficient-ml-for-the-edge-and-endpoint-iot-devices/) for compact and efficient models
5050
* Integration with other ML packages
5151
* Accord.NET
5252
* etc.
@@ -56,7 +56,7 @@ In the meanwhile, we are looking for contributions. An easy place to start is t
5656
* Hybrid training of pipelines containing both DNN and non-DNN predictors
5757
* Additional ML tasks (*)
5858
* _Recommendation_ - Is a problem that can be phrased a: "For a given user, predict the ratings this user would give to the items that they have not explicitly rated yet"
59-
* _Anomaly Detection_, also known as _outlier detection_. It is a task to identify items, events or observations which do not conform to an expected pattern in the dataset. Typical examples are: detecting credit card fraud, medical problems or errors in text. Anomalies are also referred to as outliers,  novelties, noise, deviations and exceptions
59+
* _Anomaly Detection_, also known as _outlier detection_. It is a task to identify items, events or observations which do not conform to an expected pattern in the dataset. Typical examples are: detecting credit card fraud, medical problems or errors in text. Anomalies are also referred to as outliers, novelties, noise, deviations and exceptions
6060
* _Sequence Classification_ - learns from a series of examples in a sequence, and each item is assigned a distinct label, akin to a multiclass classification task
6161
* Additional Data source support
6262
* Data from SQL Databases, such as SQL Server

src/Microsoft.ML/Models/BinaryClassificationEvaluator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public sealed partial class BinaryClassificationEvaluator
1818
/// The trained PredictionModel to be evaluated.
1919
/// </param>
2020
/// <param name="testData">
21-
/// The test data that will be predicted and used to evaulate the model.
21+
/// The test data that will be predicted and used to evaluate the model.
2222
/// </param>
2323
/// <returns>
2424
/// A BinaryClassificationMetrics instance that describes how well the model performed against the test data.

src/Microsoft.ML/Models/ClassificationEvaluator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public sealed partial class ClassificationEvaluator
1818
/// The trained multi-class classification PredictionModel to be evaluated.
1919
/// </param>
2020
/// <param name="testData">
21-
/// The test data that will be predicted and used to evaulate the model.
21+
/// The test data that will be predicted and used to evaluate the model.
2222
/// </param>
2323
/// <returns>
2424
/// A ClassificationMetrics instance that describes how well the model performed against the test data.

src/Microsoft.ML/Models/RegressionEvaluator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public sealed partial class RegressionEvaluator
1818
/// The trained PredictionModel to be evaluated.
1919
/// </param>
2020
/// <param name="testData">
21-
/// The test data that will be predicted and used to evaulate the model.
21+
/// The test data that will be predicted and used to evaluate the model.
2222
/// </param>
2323
/// <returns>
2424
/// A RegressionMetrics instance that describes how well the model performed against the test data.

src/Microsoft.ML/Runtime/EntryPoints/CodeGen/TransformGenerators.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ protected override void GenerateContent(IndentingTextWriter writer, string prefi
200200
{
201201
writer.WriteLine("[Module(");
202202
_compName = prefix + component.LoadNames[0];
203-
var name = Name ?? PrettyPrintDiaplayName(component.LoadNames[0]);
203+
var name = Name ?? PrettyPrintDisplayName(component.LoadNames[0]);
204204
using (writer.Nest())
205205
{
206206
writer.WriteLine("Name = \"{0}\",", name);
@@ -460,15 +460,15 @@ protected override void GenerateParameter(IndentingTextWriter w, string type, st
460460
private void GenerateParameterAttribute(IndentingTextWriter w, string displayName, object defaultValue, string description,
461461
string parent = null, string parentType = null, string parentValue = null)
462462
{
463-
w.WriteLine("[Help(Display = @\"{0}\", ToolTip = \"{1}\")]", PrettyPrintDiaplayName(displayName), description);
463+
w.WriteLine("[Help(Display = @\"{0}\", ToolTip = \"{1}\")]", PrettyPrintDisplayName(displayName), description);
464464
if (parent != null)
465465
w.WriteLine("[Relevancy(Key = \"{0}\", Values = new object[] {{ {1}.{2} }})]", parent, parentType, parentValue);
466466
if (defaultValue != null)
467467
w.WriteLine("[Domain(DefaultValue = {0})]", defaultValue);
468468
w.WriteLine("[ModuleParameter]");
469469
}
470470

471-
private string PrettyPrintDiaplayName(string displayName)
471+
private string PrettyPrintDisplayName(string displayName)
472472
{
473473
var sb = new StringBuilder();
474474
bool first = true;

src/Microsoft.ML/Runtime/EntryPoints/CrossValidationBinaryMacro.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public sealed class SubGraphOutput
3737

3838
public sealed class Arguments
3939
{
40-
// This is the data used in the cross validataion. It will be split into k folds
40+
// This is the data used in the cross validation. It will be split into k folds
4141
// and a model will be trained and evaluated for each fold.
4242
[TlcModule.OptionalInput]
4343
[Argument(ArgumentType.Required, HelpText = "The data set", SortOrder = 1)]

src/Microsoft.ML/Runtime/EntryPoints/CrossValidationMacro.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public sealed class SubGraphOutput
3535

3636
public sealed class Arguments
3737
{
38-
// This is the data used in the cross validataion. It will be split into k folds
38+
// This is the data used in the cross validation. It will be split into k folds
3939
// and a model will be trained and evaluated for each fold.
4040
[TlcModule.OptionalInput]
4141
[Argument(ArgumentType.Required, HelpText = "The data set", SortOrder = 1)]

test/data/README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
MICROSOFT PROVIDES THE DATASETS ON AN "AS IS" BASIS. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, GUARANTEES OR CONDITIONS WITH RESPECT TO YOUR USE OF THE DATASETS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAW, MICROSOFT DISCLAIMS ALL LIABILITY FOR ANY DAMAGES OR LOSSES, INLCUDING DIRECT, CONSEQUENTIAL, SPECIAL, INDIRECT, INCIDENTAL OR PUNITIVE, RESULTING FROM YOUR USE OF THE DATASETS.
22

3-
### Wikipedia Detox
4-
5-
Redistributing the dataset "wikipedia-detox-250-line-data.tsv" with attribution:
3+
The datasets are provided under the original terms that Microsoft received such datasets. See below for more information about each dataset.
64

7-
> Wulczyn, Ellery; Thain, Nithum; Dixon, Lucas (2016): Wikipedia Detox. figshare. https://doi.org/10.6084/m9.figshare.4054689
5+
### Wikipedia Detox
86

9-
With modifications by taking a sample of rows and reducing rough language.
7+
>This dataset is provided under [CC0](https://creativecommons.org/share-your-work/public-domain/cc0/). Redistributing the dataset "wikipedia-detox-250-line-data.tsv" with attribution:
8+
>
9+
> Wulczyn, Ellery; Thain, Nithum; Dixon, Lucas (2016): Wikipedia Detox. figshare.
10+
>
11+
>With modifications by taking a sample of rows and reducing rough language.
12+
>
13+
>Original source: https://doi.org/10.6084/m9.figshare.4054689
14+
>
15+
>Original readme: https://meta.wikimedia.org/wiki/Research:Detox
1016
1117
### UCI Adult Dataset
1218

0 commit comments

Comments
 (0)