ConFIG
[ICLR2025 Spotlight] Official implementation of Conflict-Free Inverse Gradients Method
File Explorer
- build_docs.yml
- __init__.py
- grad_operator.py
- length_model.py
- loss_recorder.py
- momentum_operator.py
- utils.py
- weight_model.py
- grad_operator.md
- length_model.md
- loss_recorder.md
- momentum_operator.md
- utils.md
- weight_model.md
- difweightmodel.png
- difweightmodel.svg
- algorithm.png
- config.png
- config.svg
- config_colorful.svg
- config_illustration.png
- config_white.png
- config_white.svg
- download.svg
- github.svg
- PKU.svg
- TUM.svg
- mtl_toy.ipynb
- pinn_burgers.ipynb
- mathjax.js
- start.md
- theory.md
- troubleshooting.ipynb
- index.md
- requirements.txt
- __init__.py
- data.py
- models.py
- run.sh
- trainer.py
- trainer_one_task.py
- utils.py
- __init__.py
- utils.py
- __init__.py
- min_norm_solvers.py
- weight_methods.py
- README.md
- requirements.txt
- trainer.py
- simulation_data.npy
- NLS.mat
- data_sampler.py
- networks.py
- physical_residual.py
- run_test.py
- simulation_paras.py
- trainer.py
- data_sampler.py
- networks.py
- physical_residual.py
- run_test.py
- simulation_paras.py
- trainer.py
- __init__.py
- run_tasks.py
- __init__.py
- calculator.py
- coding.py
- io.py
- network.py
- __init__.py
- attentions.py
- convs.py
- embedding.py
- normal.py
- sample.py
- unets.py
- __init__.py
- anmiation.py
- bar.py
- field.py
- function.py
- line.py
- style.py
- __init__.py
- LICENSE
- README.md
- trainerX.py
- data_sampler.py
- networks.py
- physical_residual.py
- run_test.py
- simulation_paras.py
- trainer.py
- data_sampler.py
- networks.py
- physical_residual.py
- run_test.py
- simulation_paras.py
- trainer.py
- __init__.py
- gradient_operation.py
- helpers.py
- loss_weighter.py
- network_initialization.py
- trainer_basis.py
- beltrami.yaml
- burgers.yaml
- kovasznay.yaml
- schrodinger.yaml
- README.md
- requirements.txt
- main.html
- .gitignore
- install.sh
- LICENSE
- mkdocs.yml
- pypi_desc.md
- README.md
- release.sh
- requirements.txt
- setup.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pip
View Details ▼
pip
Python package manager.
Some subcommands such as `install` have their own usage documentation.
pip install {{package}}
Install a package (see `pip install` for more install examples):
pip install --user {{package}}
Install a package to the user's directory instead of the system-wide default location:
pip install {{[-U|--upgrade]}} {{package}}
Upgrade a package:
