Compare commits

..

3 Commits
0.2 ... master

Author SHA1 Message Date
0a9b381bd0 update gitignore 2024-12-23 10:38:08 +01:00
f1d9bdc04d Remove Python cache files 2024-12-23 10:37:37 +01:00
84bfdaed48 fix variety config 2024-12-20 03:45:00 +01:00
15 changed files with 495 additions and 466 deletions

14
src/.gitignore vendored
View File

@ -1 +1,15 @@
/sources
/auth/config/users/*.json
users/*.json
# Python cache files
__pycache__/
*.py[cod]
*$py.class
# IDE
.idea/
.vscode/
*.swp
*.swo

View File

@ -4,6 +4,7 @@ from dataclasses import dataclass
@dataclass
class Ids:
# Auth Container
USE_MODEL = 'use-model'
AUTH_CONTAINER = 'auth-container'
DASHBOARD_CONTAINER = 'dashboard-container'

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
# Data handling and analysis
pandas>=1.5.0
numpy>=1.21.0
scikit-learn==1.5.2
scikit-learn==1.6.0
# Dashboard and visualization
dash>=2.9.0