├── .gitignore ├── README.md ├── configs ├── app │ ├── README_config.md │ ├── app.yaml │ ├── gpt_expand.txt │ └── gpt_question.txt ├── base.yaml ├── dataset │ └── demo.yaml ├── pipe │ ├── dev.yaml │ ├── sana.yaml │ ├── schnell.yaml │ └── sd.yaml └── vlm │ ├── gemma3.yaml │ ├── idefics2.yaml │ ├── llava.yaml │ ├── pixtral.yaml │ └── qwenvl.yaml ├── demo_optimize.ipynb ├── dual_process ├── dig_helpers.py ├── dig_operators.py ├── dig_pipeline.py ├── dig_viz.py └── gpt_helpers.py ├── environment.yaml ├── launch_gradio.py ├── run_dual_process.sh └── script_dual_process.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/README.md -------------------------------------------------------------------------------- /configs/app/README_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/app/README_config.md -------------------------------------------------------------------------------- /configs/app/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/app/app.yaml -------------------------------------------------------------------------------- /configs/app/gpt_expand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/app/gpt_expand.txt -------------------------------------------------------------------------------- /configs/app/gpt_question.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/app/gpt_question.txt -------------------------------------------------------------------------------- /configs/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/base.yaml -------------------------------------------------------------------------------- /configs/dataset/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/dataset/demo.yaml -------------------------------------------------------------------------------- /configs/pipe/dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/pipe/dev.yaml -------------------------------------------------------------------------------- /configs/pipe/sana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/pipe/sana.yaml -------------------------------------------------------------------------------- /configs/pipe/schnell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/pipe/schnell.yaml -------------------------------------------------------------------------------- /configs/pipe/sd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/pipe/sd.yaml -------------------------------------------------------------------------------- /configs/vlm/gemma3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/vlm/gemma3.yaml -------------------------------------------------------------------------------- /configs/vlm/idefics2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/vlm/idefics2.yaml -------------------------------------------------------------------------------- /configs/vlm/llava.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/vlm/llava.yaml -------------------------------------------------------------------------------- /configs/vlm/pixtral.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/vlm/pixtral.yaml -------------------------------------------------------------------------------- /configs/vlm/qwenvl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/configs/vlm/qwenvl.yaml -------------------------------------------------------------------------------- /demo_optimize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/demo_optimize.ipynb -------------------------------------------------------------------------------- /dual_process/dig_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/dual_process/dig_helpers.py -------------------------------------------------------------------------------- /dual_process/dig_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/dual_process/dig_operators.py -------------------------------------------------------------------------------- /dual_process/dig_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/dual_process/dig_pipeline.py -------------------------------------------------------------------------------- /dual_process/dig_viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/dual_process/dig_viz.py -------------------------------------------------------------------------------- /dual_process/gpt_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/dual_process/gpt_helpers.py -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/environment.yaml -------------------------------------------------------------------------------- /launch_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/launch_gradio.py -------------------------------------------------------------------------------- /run_dual_process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/run_dual_process.sh -------------------------------------------------------------------------------- /script_dual_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g-luo/dual_process/HEAD/script_dual_process.py --------------------------------------------------------------------------------