-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Use includes for ml samples #5245
Use includes for ml samples #5245
Conversation
Include all code snippets from a running sample.
closing and reopening to trigger a new build. (Samples are merged) |
const string TestDataPath = @".\Data\test.csv"; | ||
const string ModelPath = @".\Models\Model.zip"; | ||
``` | ||
[!code-csharp[InitializePaths](../../../samples/machine-learning/tutorials/SentimentAnalyis/Program.cs#2 "Define variables to store the data file paths")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This and all below code snippets should link to the TaxiFarePrediction
folder
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Nit: I used "walkthrough" in an earlier version, and those need to be changed to "tutorial".
Just to add, I had to change the Build Language Version to 7.1/7.2 to use with async main (wasn't listed in documentation), to make the change: |
@d4m3 Thanks for pointing that out. We'll get that updated as well. |
Relies on dotnet/samples#57