creepymaster commited on
Commit
494cd2f
·
verified ·
1 Parent(s): abf1a2b

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +25 -7
.gitignore CHANGED
@@ -1,7 +1,25 @@
1
- "sklearn.tree._classes.DecisionTreeClassifier",
2
- "sklearn.tree._tree.Tree",
3
- "sklearn.ensemble._forest.RandomForestClassifier",
4
- "numpy.core.multiarray._reconstruct",
5
- "numpy.core.multiarray.scalar",
6
- "numpy.dtype",
7
- "numpy.ndarray"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Build artifacts
2
+ build/
3
+ target/
4
+
5
+ # IDE or editor temporary files
6
+ *.pyc # Python bytecode files
7
+ *.swp # Swap files (e.g., Vim)
8
+
9
+ # Virtual environment files
10
+ .env # Environment variables (consider a separate .env.example for defaults)
11
+ venv/ # Virtual environment directory (if using virtualenv)
12
+
13
+ # Logs and output files
14
+ *.log
15
+
16
+ # Documentation (if built automatically)
17
+ docs/generated/
18
+
19
+ # Coverage reports
20
+ coverage/
21
+
22
+ # Tests output (if temporary)
23
+ # (uncomment if your tests generate temporary files)
24
+ # __pycache__/
25
+ test_output.txt