고도를 기다리며

[오류] CHOIS 논문 코드 실행 오류 해결 본문

공부한것/대학원

[오류] CHOIS 논문 코드 실행 오류 해결

MING.G 2026. 1. 28. 21:24
이 글은 "Controllable Human-Object Interaction Synthesis" 논문 코드를 실행하며 발생한 오류를 해결한 경험을 적은 글이다.

논문 : https://arxiv.org/pdf/2312.03913

 

FileNotFoundError: [Errno 2] No such file or directory: './processed_data/cano_object_bps_npy_files_joints24_120/sub15_trashcan_037_12137.npy'

  • sh scripts/test_chois_single_window.sh 를 수행하면, 오류가 발생하고 수행되지 않음
  • chois_release/manip/data/cano_traj_dataset.py의 197 Line을 아래와 같이 변경하거나 processed_data의 test_diffusion_manip_seq_joints24.p와 train_diffusion_manip_seq_joints24.p를 제거
  • [관련 issue] https://github.com/lijiaman/chois_release/issues/9 
Before
if os.path.exists(processed_data_path):
    self.window_data_dict = joblib.load(processed_data_path)
After
if False and os.path.exists(processed_data_path):
    self.window_data_dict = joblib.load(processed_data_path)

 

AttributeError: Calling operator "bpy.ops.import_mesh.ply" error, could not be found

  • Blender 버전과 관련된 문제
  • blender-3.6.3-linux-x64를 사용해 오류 해결