We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To solve the unicode problem in output jsonl file, the following update in write_output_to_jsonl.py is recommended:
Line 27: temp_file.write(json.dumps(one_json) + '\n') modified to: temp_file.write(json.dumps(one_json, ensure_ascii=False)+'\n')
temp_file.write(json.dumps(one_json) + '\n')
temp_file.write(json.dumps(one_json, ensure_ascii=False)+'\n')
The text was updated successfully, but these errors were encountered:
ok,请提个pr吧
Sorry, something went wrong.
No branches or pull requests
To solve the unicode problem in output jsonl file, the following update in write_output_to_jsonl.py is recommended:
Line 27:
temp_file.write(json.dumps(one_json) + '\n')
modified to:
temp_file.write(json.dumps(one_json, ensure_ascii=False)+'\n')
The text was updated successfully, but these errors were encountered: