-
Notifications
You must be signed in to change notification settings - Fork 8
Dev/architecture v11 core concept #164
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
Open
Fredcapit
wants to merge
270
commits into
sb-ai-lab:dev/architecture_v11_scenario_tests
Choose a base branch
from
Fredcapit:dev/architecture_v11_core_concept
base: dev/architecture_v11_scenario_tests
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Dev/architecture v11 core concept #164
Fredcapit
wants to merge
270
commits into
sb-ai-lab:dev/architecture_v11_scenario_tests
from
Fredcapit:dev/architecture_v11_core_concept
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lama_feature_select -> feature_select
feature_selection
feature_selection
feature_selection
matcher reorder features initialization
fixed bugs fixed silent mode for all selectors
[HEI-328] Added new algorithm in faiss.
Added "process_split" method, which can divide the DataFrame into an arbitrary number of groups
Improving pytests code
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Предлагаю рассмотреть новый подход к организации пайплайнов.
Я добавил такие возможности:
Стоит отметить, что Имя класса пайплайна написанное в PascaleCase преобразуется в имя метода при добавлении в класс Hypex snake_case (например, класс AATest преобразуется в aa_test)
Также docstring класса реализованного пайплайна будет передан в docstring метода, который будет прикручен к классу Hypex.
Для оптимального использования ресурсов, загружаются не все пайплайны, а только те, что указаны в файле init.py в корте директории pipeline проекта. Для использования необходимых пайплайнов, можно импортировать из явно (from hypex.pipelines.aa_test import AATest, после чего в экземпляре объекта Hypex будет доступен метод aa_test)
Реализована изоляция контекстов общего и пайплайнов. Также добавлена "изоляция" пайплайнов друг от друга, для того, чтобы можно было вызывать внутри пайплайна другой пайпалйн. Реализация с помощью стека контекстов пайплайнов.