-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Description
Is your feature request related to a problem?
No response
User Story: Describe the solution you'd like
As a developer, I want to initialize the AtlasML project with a clear folder structure and modular components so that it can be easily used
Acceptance Criteria
- it should have the following folder structure
atlasml/
├── __pycache__/
├── models/
│ └── __init__.py
├── routers/
│ ├── __init__.py
│ ├── health.py
├── app.py
├── settings.py
├── ml/
│ ├── __init__.py
│ ├── ml_runner.py # Standalone script for ML operations
│ └── model.py # Core ML functionality
├── tests/
├── .env
├── .env.example
├── poetry.lock
├── pyproject.toml
├── README.md
- ML Module should have it's own directory. It should be easily accessible and run with single command while it is developed to have better development experience
Describe alternatives you've considered
No response