Skip to content

Commit 87e4c4c

Browse files
committed
Adds a chapter on how to define and use observers
1 parent 888ab8e commit 87e4c4c

File tree

5 files changed

+453
-3
lines changed

5 files changed

+453
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ docs/protein-optimization/understanding_foldx/01-single-mutation-using-foldx/tmp
99
!docs/protein-optimization/understanding_foldx/01-single-mutation-using-foldx/tmp/101m.pdb
1010
!docs/protein-optimization/understanding_foldx/01-single-mutation-using-foldx/tmp/Raw_101m_Repair.fxout
1111
!docs/protein-optimization/understanding_foldx/01-single-mutation-using-foldx/tmp/individual_list.txt
12+
docs/protein-optimization/using_poli/the_basics/results
1213

1314
# Build directory
1415
docs/protein-optimization/_build

docs/protein-optimization/_toc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ parts:
1111
chapters:
1212
- file: using_poli/the_basics/intro_to_poli.ipynb
1313
- file: using_poli/the_basics/registering_an_objective_function.md
14+
- file: using_poli/the_basics/defining_an_observer.ipynb
1415
- file: using_poli/the_basics/defining_a_problem_solver.md
1516
- file: using_poli/the_basics/optimizing_an_objective_function.md
1617
- file: using_poli/the_basics/diving_deeper.md

docs/protein-optimization/contributing/a_new_problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class YourProblemFactory(AbstractProblemFactory):
8181

8282
def create(
8383
self,
84-
seed: int = 0,
84+
seed: int = None,
8585
your_keyword_1: str = ...,
8686
your_keyword_2: str = ...,
8787
) -> Tuple[AbstractBlackBox, np.ndarray, np.ndarray]:

0 commit comments

Comments
 (0)