Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get a working build #1

Merged
merged 5 commits into from
May 4, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
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
Empty file modified build.sh
100644 → 100755
Empty file.
Empty file modified init-tools.sh
100644 → 100755
Empty file.
Empty file modified run.sh
100644 → 100755
Empty file.
Empty file modified src/Native/build.sh
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion test/Microsoft.ML.Core.Tests/UnitTests/TestCSharpApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public void TestCrossValidationBinaryMacro()
}
}

[Fact]
[Fact(Skip = "Missing data set. See https://github.com/dotnet/machinelearning/issues/3")]
public void TestCrossValidationMacro()
{
var dataPath = GetDataPath(@"housing.txt");
Expand Down
6 changes: 3 additions & 3 deletions test/Microsoft.ML.Core.Tests/UnitTests/TestEntryPoints.cs
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ public void EntryPointEvaluateMultiClass()
Assert.Equal(3, CountRows(loader));
}

[Fact]
[Fact(Skip = "Missing data set. See https://github.com/dotnet/machinelearning/issues/3")]
public void EntryPointEvaluateRegression()
{
var dataPath = GetDataPath("housing.txt");
Expand Down Expand Up @@ -887,7 +887,7 @@ public void EntryPointSDCAMultiClass()
TestEntryPointRoutine("iris.txt", "Trainers.StochasticDualCoordinateAscentClassifier");
}

[Fact]
[Fact(Skip = "Missing data set. See https://github.com/dotnet/machinelearning/issues/3")]
public void EntryPointSDCARegression()
{
TestEntryPointRoutine("housing.txt", "Trainers.StochasticDualCoordinateAscentRegressor");
Expand Down Expand Up @@ -961,7 +961,7 @@ public void EntryPointHogwildSGD()
TestEntryPointRoutine("breast-cancer.txt", "Trainers.StochasticGradientDescentBinaryClassifier");
}

[Fact]
[Fact(Skip = "Missing data set. See https://github.com/dotnet/machinelearning/issues/3")]
public void EntryPointPoissonRegression()
{
TestEntryPointRoutine("housing.txt", "Trainers.PoissonRegressor");
Expand Down
2 changes: 1 addition & 1 deletion test/Microsoft.ML.Tests/PredictionModelTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class HousePricePrediction
public float Price;
}

[Fact]
[Fact(Skip = "Missing data set. See https://github.com/dotnet/machinelearning/issues/3")]
public async Task ReadStrongTypeModelFromStream()
{
using (var memoryStream = new MemoryStream())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A real-estate firm Contoso wants to add a house price prediction to their ASP.NE
The application will let users submit information about their house, and see a price they could expect if they put the house for sale.
Because real estate transaction data is public, Contoso has historical data they intend to use to train Machine Learning prediction engine.
*/
[Fact]
[Fact(Skip = "Missing data set. See https://github.com/dotnet/machinelearning/issues/3")]
public async void PredictHousePriceModelTest()
{
string modelFilePath = GetOutputPath("PredictHousePriceModelTest.zip");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Microsoft.ML.Scenarios
{
public partial class Top5Scenarios
{
[Fact]
[Fact(Skip = "Missing data set. See https://github.com/dotnet/machinelearning/issues/3")]
public void TrainAndPredictHousePriceModelTest()
{
string dataPath = GetDataPath("kc_house_data.csv");
Expand Down
587 changes: 587 additions & 0 deletions test/data/MNIST.Train.0-class.tiny.txt

Large diffs are not rendered by default.

100 changes: 100 additions & 0 deletions test/data/Train-Tiny-28x28.txt

Large diffs are not rendered by default.

Loading