jupyter kernel definition
This commit is contained in:
parent
cb3fe0e197
commit
624c1c7c81
3 changed files with 33 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
out/
|
||||||
|
training-runs/
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
* Included Peter Baylies' projector from [Schultz]'s StyleGAN repo
|
* Included Peter Baylies' projector from [Schultz]'s StyleGAN repo
|
||||||
* adapted gen_images.py to allow use from other python code
|
* adapted gen_images.py to allow use from other python code
|
||||||
|
* Added `kernel.json`. Place this under `~/.local/share/jupyter/kernels/paris-stylegan3/kernel.json` to be able to use the Docker container in JupyterLab.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Alias-Free Generative Adversarial Networks (StyleGAN3)<br><sub>Official PyTorch implementation of the NeurIPS 2021 paper</sub>
|
## Alias-Free Generative Adversarial Networks (StyleGAN3)<br><sub>Official PyTorch implementation of the NeurIPS 2021 paper</sub>
|
||||||
|
|
29
kernel.json
Normal file
29
kernel.json
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"argv": [
|
||||||
|
"/usr/bin/docker",
|
||||||
|
"run",
|
||||||
|
"--shm-size=2g",
|
||||||
|
"--gpus",
|
||||||
|
"all",
|
||||||
|
"--network=host",
|
||||||
|
"--rm",
|
||||||
|
"-v",
|
||||||
|
"/home/ruben/paris/stylegan3:/scratch",
|
||||||
|
"--user",
|
||||||
|
"1000:1000",
|
||||||
|
"--workdir=/scratch",
|
||||||
|
"-e",
|
||||||
|
"HOME=/scratch",
|
||||||
|
"-v",
|
||||||
|
"{connection_file}:/connection-spec",
|
||||||
|
"stylegan3",
|
||||||
|
"python",
|
||||||
|
"-m",
|
||||||
|
"ipykernel_launcher",
|
||||||
|
"-f",
|
||||||
|
"/connection-spec"
|
||||||
|
],
|
||||||
|
"display_name": "paris-stylegan3",
|
||||||
|
"language":"python"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue