-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
119 lines (105 loc) · 1.42 KB
/
.gitignore
File metadata and controls
119 lines (105 loc) · 1.42 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# Virtual Environment
.venv
venv/
ENV/
# ML Models - keeping these private
*.pkl
*.h5
*.model
*.joblib
*.bin
# Jupyter Notebooks
.ipynb_checkpoints
*.ipynb
# Large datasets
*.csv
*.json
*.xlsx
*.xls
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
# IDE
.idea/
.vscode/
*.swp
*.swo
# Logs
logs/
*.log
# Exclude training/testing files and models
*_models/
*_coded_*/
bert_comparison_results/
hierarchical*
new classifier training and testing/
augmented_models/
qwen_coded_*/
retrained_*
sentence_qwen_models/
tfidf_coded_*/
window_*
real_qwen3_models/
# Exclude training scripts
*_comparison.py
*_detailed_metrics.py
*_labeler.py
bert_*.py
compare_*.py
comprehensive_*.py
continue_*.py
create_*.py
ensemble_classifier.py
evaluate_*.py
finetune_*.py
generate_*.py
hierarchical_*.py
qwen_*.py
real_qwen3_classifier.py
retrain_*.py
run_*.py
scibert_detailed_metrics.py
scibert_labeler.py
sentence_qwen_classifier.py
test_*.py
tfidf_*.py
traditional_*.py
train_*.py
view_*.py
window_*.py
# Exclude confusion matrices and plots
*.png
confusion_matrix.*
# Exclude database files
*.duckdb
# Exclude README files for training
*README*.md
!README.md
# Exclude additional app versions
app_*.py
!app.py
# Exclude additional template files
templates/upload_and_analyze.html