resseg-ijcars
Code, data and model for Pérez-García et al. 2021, "A self-supervised learning strategy for postoperative brain cavity segmentation simulating resections"
File Explorer
- config_load_no_train.yml
- config_load_train.yml
- config_load_train_pseudo.yml
- config_no_load_train.yml
- config_no_load_train_pseudo.yml
- config_simulated_shape_cuboid.yml
- config_simulated_shape_ellipsoid.yml
- config_simulated_texture_clot.yml
- config_simulated_texture_clot_wm.yml
- config_simulated_texture_dark.yml
- config_simulated_texture_random.yml
- config_simulated_texture_wm.yml
- config_simulated_baseline.yml
- config_simulated_no_augment.yml
- config_simulated_pseudo.yml
- .gitignore
- constants.py
- datasets.py
- engine.py
- estimate_aleatoric_uncertainty.py
- estimate_epistemic_uncertainty.py
- evaluate.py
- infer.py
- LICENSE
- loss.py
- main.py
- models.py
- observers.py
- README.md
- register_all.zsh
- requirements.txt
- run_robex.zsh
- utils.py
- visualization.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.
conda create
View Details ▼
conda create
Create new conda environments.
conda create {{[-y|--yes]}} {{[-n|--name]}} py39 python=3.9 "numpy>=1.11" scipy
Create a new environment named `py39`, install Python 3.9, NumPy v1.11 or above in it, and the latest stable version of SciPy. Say yes to all confirmations:
conda create {{[-n|--name]}} myenv --file {{file1.yml}} --file {{file2.yml}}
Create a new environment named `myenv` and install packages listed in files:
conda create {{[-p|--prefix]}} {{path/to/myenv}}
Create a new environment at a custom path (i.e. prefix):
conda install
View Details ▼
conda install
Install packages into an existing conda environment.
conda install {{package1 package2 ...}}
Install one or more package into the currently active conda environment:
conda install {{[-c|--channel]}} conda-forge {{package}}
Install a single package into the currently active conda environment using channel conda-forge:
conda install {{[-c|--channel]}} conda-forge --override-channels {{package}}
Install a single package into the currently active conda environment using channel conda-forge and ignoring other channels:
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:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
