gitextract_hto38wet/ ├── .gitignore ├── README.md ├── data_generator/ │ ├── modify_material.py │ ├── render_pile_STD_rand.py │ └── run_pile_rand.sh ├── requirements.txt ├── run_simgrasp.sh ├── scripts/ │ ├── sim_grasp.py │ └── stat_expresult.py ├── src/ │ ├── gd/ │ │ ├── __init__.py │ │ ├── baselines.py │ │ ├── dataset.py │ │ ├── detection.py │ │ ├── experiments/ │ │ │ ├── __init__.py │ │ │ └── clutter_removal.py │ │ ├── grasp.py │ │ ├── io.py │ │ ├── networks.py │ │ ├── perception.py │ │ ├── simulation.py │ │ ├── utils/ │ │ │ ├── __init__.py │ │ │ ├── btsim.py │ │ │ ├── panda_control.py │ │ │ ├── ros_utils.py │ │ │ └── transform.py │ │ └── vis.py │ ├── nr/ │ │ ├── asset.py │ │ ├── configs/ │ │ │ └── nrvgn_sdf.yaml │ │ ├── dataset/ │ │ │ ├── database.py │ │ │ ├── name2dataset.py │ │ │ └── train_dataset.py │ │ ├── main.py │ │ ├── network/ │ │ │ ├── aggregate_net.py │ │ │ ├── dist_decoder.py │ │ │ ├── ibrnet.py │ │ │ ├── init_net.py │ │ │ ├── loss.py │ │ │ ├── metrics.py │ │ │ ├── mvsnet/ │ │ │ │ ├── modules.py │ │ │ │ └── mvsnet.py │ │ │ ├── neus.py │ │ │ ├── ops.py │ │ │ ├── render_ops.py │ │ │ ├── renderer.py │ │ │ └── vis_encoder.py │ │ ├── run_training.py │ │ ├── train/ │ │ │ ├── lr_common_manager.py │ │ │ ├── train_tools.py │ │ │ ├── train_valid.py │ │ │ └── trainer.py │ │ └── utils/ │ │ ├── base_utils.py │ │ ├── dataset_utils.py │ │ ├── draw_utils.py │ │ ├── field_utils.py │ │ ├── grasp_utils.py │ │ ├── imgs_info.py │ │ └── view_select.py │ └── rd/ │ ├── modify_material.py │ ├── render.py │ └── render_utils.py └── train.sh