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
I'm running torch-tb-profiler 0.4.1 on windows and getting the same issue as in #336
Invalid \escape when decoding the JSON. The fix specified in #336 still works although the line is now 131:
Change line 131 in '\path_to_python_installation\Lib\site-packages\torch_tb_profiler\profiler\data.py'
to
trace_json = json.loads(data.replace(b"\", b"\\"), strict=False)
The text was updated successfully, but these errors were encountered:
I'm running torch-tb-profiler 0.4.1 on windows and getting the same issue as in #336
Invalid \escape when decoding the JSON. The fix specified in #336 still works although the line is now 131:
Change line 131 in '\path_to_python_installation\Lib\site-packages\torch_tb_profiler\profiler\data.py'
to
trace_json = json.loads(data.replace(b"\", b"\\"), strict=False)
The text was updated successfully, but these errors were encountered: