Этот проект представляет собой инструмент для выбора архитектуры модели машинного обучения.
-
Клонируйте репозиторий:
git clone https://github.com/your_username/Architecture_selection.git
-
Перейдите в каталог проекта:
cd Architecture_selection
-
Установите зависимости:
pip install -r requirements.txt
-
Создайте экземпляр класса
ModelSelection
:from Architecture_selection import ModelSelection Selection = ModelSelection()
-
Укажите путь к директории с изображениями:
image_dir = '/path/to/your/image/directory'
-
Выберите архитектуру модели, запустив метод
select_model
:selected_model = Selection.predict_model(image_dir=image_dir)
-
Получите результат выбора:
print("Selected model:", selected_model)
Есть руководство по запуску проекта на Google Colab. Вы можете найти его в папке notebooks/guide.ipynb
.
- Если вы хотите сообщить об ошибке или предложить улучшение, создайте issue на GitHub.
- При желании вы можете внести свой вклад, создав pull request.
This project is a tool for selecting a machine learning model architecture.
-
Clone the repository:
git clone https://github.com/your_username/Architecture_selection.git
-
Navigate to the project directory:
cd Architecture_selection
-
Install the dependencies:
pip install -r requirements.txt
-
Create an instance of the
ModelSelection
class:from Architecture_selection import ModelSelection Selection = ModelSelection()
-
Specify the path to the directory containing images:
image_dir = '/path/to/your/image/directory'
-
Choose the model architecture by running the
select_model
method:selected_model = Selection.predict_model(image_dir=image_dir)
-
Get the selection result:
print("Selected model:", selected_model)
There's a guide available for running the project on Google Colab. You can find it in the notebooks/guide.ipynb
folder.
- If you want to report a bug or suggest an improvement, create an issue on GitHub.
- If you'd like, you can contribute by creating a pull request.