-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Quick Start example to readme with several usability fixes #86
Conversation
Hello @gkirgizov! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found:
Comment last updated at 2023-04-24 05:38:25 UTC |
Ppe8 issues for graph_search & tree_search are already fixed in parallel PR, so I ignore them to avoid conflicts |
Codecov Report
@@ Coverage Diff @@
## main #86 +/- ##
==========================================
+ Coverage 71.31% 71.32% +0.01%
==========================================
Files 115 115
Lines 6456 6456
==========================================
+ Hits 4604 4605 +1
+ Misses 1852 1851 -1
... and 4 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
README.rst
Outdated
Быстрый старт | ||
============= | ||
|
||
Следующий пример показывает поиск графа по графу-эталону с помощью метрики расстояния редактирования (Edit Distance). Оптимизатор настраивается с минимальным набором параметров и простыми одноточечными мутациями. Более подробные примеры можно найти в файлах `examples/synthetic_graph_evolution/simple_run.py`, `graph_search.py` и `tree_search.py` (в той же директории). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
мб гиперссылки вставить на файлы с примерами? вроде их положение достаточно постоянно, не сломается через неделю
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
добавил
Changes:
simple_run.py
example with simple setup of Optimizermax_arity=4, max_depth=10, early_stopping_iterations=50
)Closes #48