-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Fixing namespace for image samples #3208
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
Fixing namespace for image samples #3208
Conversation
| // If you inspect the fileSystem, after running this line, an "images" folder will be created, containing 4 images, and a .tsv file | ||
| // enumerating the images. | ||
| var imagesDataFile = SamplesUtils.DatasetUtils.DownloadImages(); | ||
| var imagesDataFile = Microsoft.ML.SamplesUtils.DatasetUtils.DownloadImages(); |
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.
Microsoft.ML. [](start = 33, length = 13)
Do you need this? You don't in ConvertToGrayScale.
Ditto for the rest of the files with this pattern. #Resolved
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.
added to ConvertToGrayScale in iteration 2 (else its compile time error)
In reply to: 272409998 [](ancestors = 272409998)
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.
Approved with comments
sfilipi
left a comment
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.
![]()
shmoradims
left a comment
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.
![]()
* fixing namespace for image samples * fix compile error
Towards #3205