Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
239fb8b
eddited the readme so the explantion for the toggle system is better
Mahatav Jan 19, 2026
4decd28
updated the redme again to better relft how the filtering works now
Mahatav Jan 19, 2026
0279b12
fixed the clean lable
Mahatav Jan 19, 2026
6327283
remove the toggel feature in its totallity and creted main file that …
Mahatav Jan 21, 2026
cb5d6c5
added init file for scripts
Mahatav Jan 21, 2026
32b9146
Added Tests for Process Model
Jan 24, 2026
f764b63
Refactored Clean Scripts
Jan 26, 2026
2354db0
Refactor label processing functions to use Optional types and improve…
Mahatav Jan 26, 2026
a6be9de
removing the pdf that i added by mistake
Mahatav Jan 26, 2026
2f58fff
Add compute_elbow_scores function and save elbow scores to CSV
Mahatav Feb 2, 2026
d24d0ee
fix typos in clean_labels.py references in documentation
Mahatav Feb 2, 2026
e996952
added helpers_comm.py
AdaraPutri Feb 2, 2026
c91ac42
added prep_data.py
AdaraPutri Feb 2, 2026
25c6fc2
added llm_prompts.py
AdaraPutri Feb 2, 2026
b6927f7
added get_clean_comm_label.py
AdaraPutri Feb 2, 2026
36951c7
modified comm_label.py to use helper functions
AdaraPutri Feb 2, 2026
89cde60
restored comm_label.py
AdaraPutri Feb 5, 2026
50bdaff
Merge remote-tracking branch 'origin/dev' into refactor/documentation
Mahatav Feb 7, 2026
01c5077
Refactor/Automatic-Clean
d2r3v Feb 7, 2026
a847455
Merge pull request #41 from bohuie/refactor/documentation
Mahatav Feb 7, 2026
8be5381
Add checks for elbow score computation and CSV saving in main function
Mahatav Feb 8, 2026
e10d4b1
Merge remote-tracking branch 'origin/dev' into feature/adding_elbow_s…
Mahatav Feb 8, 2026
7e2d521
Enhance README and main execution flow: add LLM setup instructions, s…
Mahatav Feb 8, 2026
e052d65
Refactor configuration and improve edge filtering in clustering and g…
Mahatav Feb 8, 2026
358bdda
pulled dev and rexolved conflits so it is ready for a merge
Mahatav Feb 8, 2026
bfa4bca
added temporary config for communication process model
AdaraPutri Feb 8, 2026
6fa8a7c
Add Unit Tests for process_model (#50)
d2r3v Feb 9, 2026
85f1646
Refactor: Integrate cleaning logic into main labelling scripts and re…
d2r3v Feb 9, 2026
8f1b256
Refactor: Moved Clean Script to Util
d2r3v Feb 9, 2026
112d503
Refactor/ File Cleanup
d2r3v Feb 9, 2026
ed42e07
Merge pull request #55 from bohuie/feature/adding-main-run-it-all-file
Mahatav Feb 10, 2026
6a720f1
Add elbow score plotting functionality and save plots in main function
Mahatav Feb 15, 2026
7ab182d
merged with dev to insure evething is up to date
Mahatav Feb 15, 2026
87a6eb0
Merge remote-tracking branch 'origin/dev' into Refactor/Clean-Util
d2r3v Mar 2, 2026
62eee9c
Merge pull request #65 from bohuie/feature/adding_elbow_score
Mahatav Mar 2, 2026
1d6e841
Merge pull request #54 from bohuie/Refactor/Clean-Util
d2r3v Mar 9, 2026
6d80c00
added .venv to gitignore
AdaraPutri Mar 9, 2026
d695edb
updated toggle removal for graphing and transition edges
AdaraPutri Mar 9, 2026
50a90ca
Merge remote-tracking branch 'origin/dev' into feature/comm-label
AdaraPutri Mar 9, 2026
db95e92
updated clustering and zscore_calculation configs to include communic…
AdaraPutri Mar 9, 2026
fac69ff
Merge pull request #67 from bohuie/feature/comm-label
AdaraPutri Mar 9, 2026
783a08c
added test script for cross pr double counting
AdaraPutri Mar 9, 2026
e35735d
added test script for branch reused across prs
AdaraPutri Mar 9, 2026
e878c77
added test script for label features per branch
AdaraPutri Mar 9, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
GITHUB_TOKEN=
# Legacy dataset selectors (currently unused by the codebase; keep defaults)
FILE_SOURCE=branching # logical name of the dataset source
FOLDER_SOURCE=branching # folder label for outputs under data/
# AI Mode: Set to 'online' to use Groq API, 'offline' for local processing
AI_MODE=online
GROQ_API_KEY=
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ data/*

# Virtual Environment files
venv/
.venv/

# Ignore specific files
.DS_Store
Expand Down
364 changes: 267 additions & 97 deletions README.md

Large diffs are not rendered by default.

138 changes: 83 additions & 55 deletions documentation/code_structure_and_branching.md

Large diffs are not rendered by default.

Loading