-
Notifications
You must be signed in to change notification settings - Fork 9
/
.gitignore
72 lines (51 loc) · 1.04 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Ignore environment files
.env*
# Ignore data directory
data/
# Ignore Konfuzio SDK egg info
konfuzio_sdk.egg-info/
# Ignore IDE specific files
.idea/
.vscode/
# Ignore documentation build output
docs/build/
# Ignore log files
*.log
# Ignore compiled Python files
*.pyc
# Ignore virtual environment directory
venv/
.venv/
# Ignore project settings
settings.py
# Ignore pickled files
*.pkl
# Ignore archived files
*.tar.gz
# Ignore files containing 'data_'
*data_[0-9]*
# Ignore Jupyter Notebook checkpoints
*.ipynb_checkpoints/
*.ipynb~
# Ignore any Jupyter Notebook in the tutorials folder at any depth
docs/sdk/tutorials/**/*.ipynb
# Ignore distribution and build directories
dist/
build/
_build/
# Ignore SDK tutorials tests
docs/sdk/tutorials/tests/
# Ignore example project data for tests
tests/example_project_data/
# Ignore Python cache
__pycache__/
# Ignore training logs
training_logs
# Ignore mlflow artifacts
mlruns
mlartifacts
*.db
# Ignore any file or folder that starts with "draft"
draft*
# Ignore MacOS system files
.DS_Store