-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support sweeping multiline option in AutoML (#5148)
* upgrade to 3.1 * write inline data using invariantCulture * add tryMulti in AutoML and test * add test for AutoML inferColumn API * Update test/Microsoft.ML.AutoML.Tests/ColumnInferenceTests.cs Co-authored-by: Justin Ormont <justinormont@users.noreply.github.com> Co-authored-by: Justin Ormont <justinormont@users.noreply.github.com>
- Loading branch information
1 parent
c576d5e
commit e3ca7e0
Showing
6 changed files
with
91 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
test/Microsoft.ML.AutoML.Tests/TestData/DatasetWithNewlineBetweenQuotes.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
id,Column1,Column2,Column3 | ||
1,this is a description, 1,2 | ||
2,"this is a quote description",1,2 | ||
3,"this is a quote description with double quote("")",1,2 | ||
4,"this is a quote description with ""a pair of double quote""",1,2 | ||
5,"this is a quote description with new line | ||
quote",1,2 | ||
6,"this is a quote description with | ||
new line1 and | ||
new line2 and empty line | ||
|
||
and double quote""",1,2 | ||
7, this is a description with single quote("),1,2 | ||
// empty line between quotes | ||
8,"",1,2 | ||
// single quote between quotes | ||
9,"""",1,2 | ||
// simply newline between quotes | ||
10," | ||
|
||
|
||
|
||
",1,2 | ||
// simply signle quote and newline between quotes | ||
11," | ||
|
||
"""" | ||
|
||
"" | ||
|
||
"" | ||
|
||
",1,2 | ||
|
||
|
||
|