Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 |
Tags
- DataSet
- pytorch
- 튜토리얼
- image synthesis
- 텐서
- CVPR 2023
- 파이토치
- Diffusion
- DataLoader
- 이미지 생성
- HumanML3D
- VQ-Diffusion
- T2M-GPT
- Human Motion
- image generation
- Motion generation
Archives
- Today
- Total
고도를 기다리며
[오류] CHOIS 논문 코드 실행 오류 해결 본문
이 글은 "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를 사용해 오류 해결