We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e81745 commit 00919a5Copy full SHA for 00919a5
.gitignore
@@ -1,15 +1,34 @@
1
-__pycache__/
2
-Observability.md
3
-.venv/
4
-.__pycache__
5
-
6
7
-# DVC managed artifacts (all artifacts handled by DVC)
8
-artifacts/
9
10
-# Keep essential files for CI/CD
11
-!artifacts/model_evaluation/metrics.json
12
-!artifacts/.gitkeep
13
14
-# Log files
15
-logs/
+# Virtual environments
+mlops_env/
+venv/
+env/
+.env
+
+# Python cache
+__pycache__/
+*.pyc
+*.pyo
+*.pyd
+.Python
+# ML artifacts (should be tracked by DVC)
+artifacts/data_ingestion/
16
+artifacts/model_trainer/
17
+*.pkl
18
+*.joblib
19
20
+# IDE
21
+.vscode/
22
+.idea/
23
24
+# OS
25
+.DS_Store
26
+Thumbs.db
27
28
+# Logs
29
+*.log
30
+logs/
31
32
+# Temporary files
33
+*.tmp
34
+*.temp
0 commit comments