You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when data block with string in Chinese like id1='左前方向:S', write_sets lost Chinese string. How to modify this code :
for k, v in dset.items():
if type(v) == str:
dset[k] = v.encode("utf-8").decode('ascii','ignore')
to correct Chinese string?