Open hamelsmu opened 3 years ago
@hamelsmu , you're exact that the default delimiter is a space
.
If you want to change it, you can create a file parallel_run_step.settings.json
in source directory, (i.e., beside your iris_score.py here), and add following setting in the file:
{
"append_row": {
"pandas.DataFrame.to_csv": {
"sep": ","
}
}
}
The above sample will instruct the output csv to use "," as separator. You can change it to what want unless it's a valid one for pandas.
Thanks!
@keijik @cody-dkdc @gregce
In this example notebook you show the delimter in the file that is written to as being a space. Using space a delimiter seems like a really dangerous choice. Can you change what the delimiter is? If so how? It seems like from this example that this is the default delimiter for tabular datasets which seem problematic.
The scoring script for this example is here as you can see, space is not indicated anywhere in the scoring script, so how does this delimiter come out? If this is the default delimiter, I think this is worth explaining.
iris_score.py