Closed SuryaThiru closed 3 years ago
The golden features JSON file that is being saved by mljar contains strings for new_features and new_columns instead of dictionaries which makes it a little difficult to view/parse the file.
new_features
new_columns
Current output:
Expected output:
We can avoid using the indented JSON string here while saving the model unless there is some other specific reason to do so.
Hey @SuryaThiru! You are right, the indent is not needed here. Would you like to PR?
Yes, I can do that.
@SuryaThiru thank you! Good fix!
The golden features JSON file that is being saved by mljar contains strings for
new_features
andnew_columns
instead of dictionaries which makes it a little difficult to view/parse the file.Current output:
Expected output:
We can avoid using the indented JSON string here while saving the model unless there is some other specific reason to do so.