TIL) 22.04.10 ~ 22.04.16
04.10 졸작 matlab 그래프 사이즈 설정: plt.figure(figsize=(30,30)) 이미지 저장: plt.savefig(result_folder + '/' + str(imgid) + '.png') json 파일 다루기 # 열기 with open(orig_file, 'r') as f: orig_json = json.load(f)# 저장 with open(output_file, 'w') as f: json.dump(output_json, f) 04.12 졸업작품 관련 좀비 프로세스 죽이기 원인: train.py 돌리다가 ctrl+c가 아니라 ctrl+z를 눌러서 제대로 종료되지 않았던 문제 해결: ps -ef로 부모 프로세스를 찾아 삭..