
Create a console application
- Create a.NET Core Console Applicationcalled “TaxiFarePrediction”.
- Create a directory namedDatain your project to store the data set and model files.
- Install theMicrosoft.MLNuGet Package:InSolution Explorer, right-click the project and selectManage NuGet Packages. Choose “nuget.org” as the Package source, select theBrowsetab, search forMicrosoft.ML, select the package in the list, and select theInstallbutton. Select theOKbutton on thePreview Changesdialog and then select theI Acceptbutton on theLicense Acceptancedialog if you agree with the license terms for the packages listed. Do the same for theMicrosoft.ML.FastTreeNuget package.
Prepare and understand the data
- Download thetaxi-fare-train.csvand thetaxi-fare-test.csvdata sets and save them to theDatafolder you’ve created at the previous step. We use these data sets to train the machine learning model and then evaluate…
View original post 1,775 more words