Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.

Commit 25341f2

Browse files
authored
Fix bug in ipynb-render.sh (#79)
* Update metas
1 parent 20e2a10 commit 25341f2

File tree

17 files changed

+21
-14
lines changed

17 files changed

+21
-14
lines changed

.actions/ipynb-render.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
set -e
44
printf "Rendering: $1\n\n"
55

6-
python -c "import glob ; assert(len(glob.glob('$1/*.ipynb')) == 1)"
6+
python -c "import os, glob ; assert(len(glob.glob(os.path.join('$1', '*.ipynb'))) == 1)"
77
ipynb_file=( $(ls "$1"/*.ipynb) )
88
printf $ipynb_file
99

10-
python -c "import glob ; assert(len(glob.glob('$1/.meta.{yaml,yml}')) == 1)"
10+
python -c "import os ; assert any(os.path.isfile(os.path.join('$1', f'.meta{ext}')) for ext in ['.yml', '.yaml'])"
1111
meta_file=( $(ls "$1"/.meta.*) )
1212
printf $meta_file
1313

course_UvA-DL/autoregressive-image-modeling/.meta.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ author: Phillip Lippe
33
created: 2021-07-12
44
updated: 2021-07-12
55
license: CC BY-SA
6+
build: 0
67
tags:
78
- Image
89
description: |

course_UvA-DL/deep-autoencoders/.meta.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ author: Phillip Lippe
33
created: 2021-07-12
44
updated: 2021-07-12
55
license: CC BY-SA
6+
build: 0
67
tags:
78
- Image
89
description: |

course_UvA-DL/deep-energy-based-generative-models/.meta.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ author: Phillip Lippe
33
created: 2021-07-12
44
updated: 2021-07-12
55
license: CC BY-SA
6+
build: 0
67
tags:
78
- Image
89
description: |

course_UvA-DL/graph-neural-networks/.meta.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ author: Phillip Lippe
33
created: 2021-06-07
44
updated: 2021-06-16
55
license: CC BY-SA
6+
build: 0
67
tags:
78
- Graph
89
description: |

course_UvA-DL/normalizing-flows/.meta.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ author: Phillip Lippe
33
created: 2021-06-07
44
updated: 2021-06-16
55
license: CC BY-SA
6+
build: 0
67
tags:
78
- Image
89
description: |

course_UvA-DL/transformers-and-MH-attention/.meta.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ author: Phillip Lippe
33
created: 2021-06-30
44
updated: 2021-06-30
55
license: CC BY-SA
6+
build: 0
67
tags:
78
- Text
89
description: |

lightning_examples/augmentation_kornia/.meta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: PL/Kornia team
33
created: 2021-06-11
44
updated: 2021-06-16
55
license: CC BY-SA
6-
build: 0
6+
build: 1
77
tags:
88
- Image
99
description: |

lightning_examples/basic-gan/.meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: PL team
33
created: 2020-12-21
44
updated: 2021-06-16
55
license: CC BY-SA
6-
build: 0
6+
build: 1
77
tags:
88
- Image
99
description: |

lightning_examples/cifar10-baseline/.meta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: PL team
33
created: 2020-12-21
44
updated: 2021-06-16
55
license: CC BY-SA
6-
build: 0
6+
build: 1
77
tags:
88
- Image
99
description: >

0 commit comments

Comments
 (0)