dotnet / machinelearning-modelbuilder

Simple UI tool to build custom machine learning models.
Creative Commons Attribution 4.0 International
264 stars 56 forks source link

Delimiter Change before column to predict section mess list of column names #1079

Closed zewditu closed 3 years ago

zewditu commented 3 years ago

Model Builder Version: In which Model Builder version was the bug encountered? Visual Studion Version: In which Visual Studio version was the bug encountered?

Bug description A clear and concise description of what the bug is.

Steps to Reproduce

  1. select TextClassification scenario
  2. choose tour text dataset
  3. Click on advanced data options.. link on the data page
  4. change the column separator --> click save button
  5. select column to predict

Expected Experience A description of what you expected to happen. If applicable, add screenshots or "Machine Learning" Output Logs to help explain what you expected.

Actual Experience

image.png image.png Additional Context Add any other context about the problem here, such as unusual system configurations, network restrictions, etc.

beccamc commented 3 years ago

@zewditu This is a tab separated file right? And you changed it to a comma/semi-colon? If yes, this looks expected to me. You've changed the separator to a comma/semi-colon. There are no comma/semi-colons. When it tries to parse the file it thinks it is one column because there are no separators found. When printing, it puts the tabs into the printed lines. This makes it look really weird, but it's doing what you told it to do.

zewditu commented 3 years ago

@beccamc yes, it is expected, thanks for your explanations.