-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
101 lines (83 loc) · 2.11 KB
/
.gitignore
File metadata and controls
101 lines (83 loc) · 2.11 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
# Logging is now database-based - these log file patterns are deprecated
# master_trainer.log
# data/logs/master_arc_trainer.log
# data/logs/master_arc_trainer_output.log
# data/logs/*_backup.log
# Ignore action traces backup files
data/action_traces_backup.ndjson
# Environment files
.env
.env.local
.env.*.local
.env.production
.env.development
.env.test
# Python cache and artifacts
__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
.mypy_cache/
# Virtual environments
venv/
env/
ENV/
docs/
# SELECTIVE MEMORY MANAGEMENT - Allow meta-cognitive control
# Only ignore raw/temporary training data, preserve important states
continuous_learning_data/temp/
continuous_learning_data/raw_sessions/
checkpoints/temp/
research_results/temp/
# Ignore only temporary/high-volume session files
continuous_session_*.json
mutation_exploratory_temp_*.json
temp_meta_learning_session*.json
# Only ignore high-volume debug logs, preserve important logs
# Deprecated log patterns - logging is now database-based
# arc3_competition_debug.log
# temp_*.log
# debug_*.log
# Ignore temporary and backup pickle files
*.pkl.backup_*
*.pkl.tmp_*
*.pkl.fallback_*
# Ignore temporary log files
# data/logs/master_arc_trainer.log.tmp
# Debug files
reset_debug*
# Temporary experiment sandboxes only
experiments/temp/
# sandbox_tests/temp/data/logs/*_backup.log
# Generated training data files
data/scorecards/scorecard_*.json
data/sessions/session_*.json
data/sessions/continuous_session_*.json
data/sessions/master_training_results_*.json
# Database files
tabula_rasa.db
*.db
*.db*
# Training results files (now in database)
simple_training_results_*.json
scaled_training_results_*.json
# Analysis and reporting files (generated by tools)
*_analysis.json
*_scorecard.json
*_trace_analysis.json
*_monitor_results.json
# Legacy data files (now in database)
action_intelligence_*.json
session_*.json
learned_patterns.pkl
global_counters.json
architect_*.json
architectural_insights.json
session_history.json
# ML model state files (generated by learning modules)
elm_state_*.json
advanced_learning_state_*.json
residual_state_*.json
ewc_state_*.json
arc_learning_data/*.json