├── LICENSE ├── README.md ├── __init__.py ├── node_list.json ├── nodes └── nodes_ode.py ├── pyproject.toml └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhottensors/ComfyUI-ODE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhottensors/ComfyUI-ODE/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhottensors/ComfyUI-ODE/HEAD/__init__.py -------------------------------------------------------------------------------- /node_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "ODESamplerSelect":"", 3 | } 4 | -------------------------------------------------------------------------------- /nodes/nodes_ode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhottensors/ComfyUI-ODE/HEAD/nodes/nodes_ode.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhottensors/ComfyUI-ODE/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torchdiffeq 2 | --------------------------------------------------------------------------------