initial commit with 2024 materials
This commit is contained in:
commit
6fdfdbb8b7
66 changed files with 102457 additions and 0 deletions
10
hands_on_solutions/logistic_fun/conftest2.py
Normal file
10
hands_on_solutions/logistic_fun/conftest2.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
import numpy as np
|
||||
import pytest
|
||||
|
||||
SEED = 42
|
||||
|
||||
@pytest.fixture
|
||||
def random_state():
|
||||
print(f'Seed: {SEED}')
|
||||
random_state = np.random.RandomState(SEED)
|
||||
return random_state
|
Loading…
Add table
Add a link
Reference in a new issue