Skip to content

Commit 871826f

Browse files
authored
Merge pull request #43 from automl-edu/unify_slides
Unify slides
2 parents 11fa2aa + 67c6dee commit 871826f

27 files changed

+17
-17
lines changed

slides.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,18 @@ def sort_paths(plist):
4444
number1 = int(''.join(filter(str.isdigit, nxt_element.name)))
4545
number2 = int(''.join(filter(str.isdigit, plist[j].name)))
4646

47-
if number1 >= 10:
47+
if number1 > 10 and number1 <= 90:
4848
number1 /= 10
4949

50-
if number2 >= 10:
50+
if number2 > 10 and number2 <= 90:
5151
number2 /= 10
5252

5353
while number2 > number1 and j >= 0:
5454
plist[j+1] = plist[j]
5555
j = j - 1
5656
number2 = int(''.join(filter(str.isdigit, plist[j].name)))
5757

58-
if number2 >= 10:
58+
if number2 > 10 and number2 <= 90:
5959
number2 /= 10
6060
plist[j+1] = nxt_element
6161

slides/autoML.pdf

56.9 MB
Binary file not shown.

slides/w01_big_picture.pdf

-20 Bytes
Binary file not shown.

slides/w02_evaluation.pdf

1.68 KB
Binary file not shown.

slides/w03_algorithm_selection.pdf

2 Bytes
Binary file not shown.

slides/w04_hpo_basics.pdf

52 Bytes
Binary file not shown.

slides/w05_gps.pdf

227 Bytes
Binary file not shown.

slides/w06_hpo_bo.pdf

893 KB
Binary file not shown.

slides/w07_hpo_speedup.pdf

978 KB
Binary file not shown.

slides/w08_hpo_multicrit.pdf

-83 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)