SIENTIAPDE-1308: Update documentation, remove install_dependencies.sh script from README, correct Training class initialization, and update sientia-dataops-library version in requirements.txt.
This commit is contained in:
@@ -494,13 +494,7 @@ kubectl exec -n temporal <temporal-admin-tools-pod-name> -- \
|
|||||||
gh auth login
|
gh auth login
|
||||||
```
|
```
|
||||||
|
|
||||||
3. **Run the install_dependencies.sh script**
|
3. **Install Python dependencies**
|
||||||
```bash
|
|
||||||
chmod +x install_dependencies.sh
|
|
||||||
./install_dependencies.sh
|
|
||||||
```
|
|
||||||
|
|
||||||
4. **Install Python dependencies**
|
|
||||||
```bash
|
```bash
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
# Install production dependencies
|
# Install production dependencies
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ class Training(SientiaMonitoring):
|
|||||||
logger: Logger instance for observability
|
logger: Logger instance for observability
|
||||||
notification_handler: Handler for sending notifications
|
notification_handler: Handler for sending notifications
|
||||||
"""
|
"""
|
||||||
super().__init__(logger, notification_handler, metrics_controller, set_error_counter=True)
|
super().__init__(logger, notification_handler, metrics_controller)
|
||||||
self.training_repository = TrainingRepository(logger)
|
self.training_repository = TrainingRepository(logger)
|
||||||
self.model_repository = model_repository
|
self.model_repository = model_repository
|
||||||
self.storage_repository = storage_repository
|
self.storage_repository = storage_repository
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ psycopg2-binary==2.9.11
|
|||||||
sqlalchemy==2.0.44
|
sqlalchemy==2.0.44
|
||||||
boto3==1.40.55
|
boto3==1.40.55
|
||||||
botocore==1.40.55
|
botocore==1.40.55
|
||||||
git+ssh://git@github.com/Aignosi/sientia-dataops-library.git@1.5.1
|
git+ssh://git@github.com/Aignosi/sientia-dataops-library.git@1.5.2
|
||||||
prometheus-client==0.23.1
|
prometheus-client==0.23.1
|
||||||
mlflow==2.10.1
|
mlflow==2.10.1
|
||||||
evidently==0.4.21
|
evidently==0.4.21
|
||||||
|
|||||||
@@ -5,3 +5,5 @@
|
|||||||
- Atualizar o .github/workflows/quality-gate.yml para usar os pipelines genéricos do github;
|
- Atualizar o .github/workflows/quality-gate.yml para usar os pipelines genéricos do github;
|
||||||
Criar um workflow para fazer o deploy no suse.
|
Criar um workflow para fazer o deploy no suse.
|
||||||
Criar um workflow para criar o release no github.
|
Criar um workflow para criar o release no github.
|
||||||
|
|
||||||
|
- Atualizar a documentação do projeto.
|
||||||
|
|||||||
Reference in New Issue
Block a user