Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
e1f60ec
Update to title extraction: new mapping + using data namespace inste…
alliyya Jun 27, 2024
d090bf1
Update logger and prefixes
alliyya Jul 4, 2024
a469922
URL fixes
alliyya Jul 5, 2024
ab310d0
add title typing for titles
alliyya Jul 5, 2024
af81fe9
renaming influence properties
alliyya Jul 5, 2024
b15d540
add title typing for titles
alliyya Jul 5, 2024
ea66d76
updating other writing properties
alliyya Jul 5, 2024
99b9253
Intertextual properties fixed
alliyya Jul 5, 2024
7b0666f
More Properties updated
alliyya Jul 5, 2024
db0e15f
Update to dependencies for project
alliyya Jul 10, 2024
c7174b5
Fixing unstable tag decomposition
alliyya Jul 10, 2024
95ecc5e
Update reconciliation
alliyya Aug 6, 2024
a253577
Using external identifiers
alliyya Aug 6, 2024
0283e0a
refactor of property names
alliyya Aug 6, 2024
28a04a1
Full Name fixes for missing names
alliyya Aug 6, 2024
0906895
logging clean up
alliyya Sep 26, 2024
b36bc02
readme update
alliyya Oct 4, 2024
c4529fb
Adding recommended extensions
alliyya Oct 4, 2024
ca9c63b
Added extension instructions
alliyya Oct 4, 2024
2c2689f
add additional settings config
alliyya Oct 9, 2024
04d9348
logging clean up
alliyya Oct 9, 2024
2360c6f
update todo tree config
alliyya Oct 9, 2024
088d36c
Update person mapping with updated files
alliyya Oct 18, 2024
46cfa69
Adding back full name column person_mapping
alliyya Oct 20, 2024
f81552a
Updating org mapping
alliyya Oct 20, 2024
2282ef0
Revising freestanding event extraction
alliyya Oct 30, 2024
827d2d8
Updating and adding new mapping files
alliyya Oct 30, 2024
acc17f4
update writing testcases
alliyya Oct 30, 2024
9e32e7f
Update org extraction
alliyya Oct 30, 2024
98fe082
adding textscope to vocab
alliyya Oct 30, 2024
2643a70
logging fix
alliyya Oct 30, 2024
0eb9344
placeholder script to generating title mappings
alliyya Oct 30, 2024
fafcb70
Adding textscopes to author
alliyya Oct 30, 2024
d27b46b
New approach to writing extraction
alliyya Oct 30, 2024
c101d04
Update title mapping
alliyya Nov 4, 2024
1b963a1
update org mapping
alliyya Nov 4, 2024
3809821
TEMP: adhoc extraction
alliyya Nov 4, 2024
eb986da
better uri handling
alliyya Nov 5, 2024
4df1038
update gitignore to prevent crash
alliyya Nov 5, 2024
c30b15a
reformat readme
alliyya Jan 31, 2025
7b70edc
reorg projects
alliyya Oct 10, 2025
3b47e74
Migrating python version and using uv
alliyya Oct 10, 2025
3f25f50
Update mapping
alliyya Oct 10, 2025
cd95143
clean up of context diversity
alliyya Oct 10, 2025
3e0141f
env refactor
alliyya Oct 10, 2025
22a4cb8
some file reorganization
alliyya Oct 10, 2025
ae87b70
formatting fixes
alliyya Oct 14, 2025
65f388e
fix folder name change
alliyya Oct 24, 2025
049c971
fix folder name change
alliyya Oct 24, 2025
6d8097e
add external terms
alliyya Dec 5, 2025
cbf8258
tweak mapping
alliyya Feb 19, 2026
0371b0b
updated genre mapping
alliyya Feb 20, 2026
c35a85a
update mappings
alliyya Mar 5, 2026
0049b95
tweaks to mappings
alliyya Mar 11, 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
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*.swp
.DS_STORE
*/.DS_STORE
*.pyc
.env
.idea
Expand All @@ -15,8 +16,14 @@ venv
*.xml
*.rdf
*.log
*.csv
*.config
.dccache
/Mods/unmatchedplaces.csv
.vscode
Mods/unmatchedplaces.csv
/Entry/Adhoc Extraction
/Entry/Context Based Extraction
adhoc*
*-adhoc*
Analytics/
Entry/log/place_log.csv
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.14
31 changes: 31 additions & 0 deletions .vscode/classic-extraction.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"folders": [
{
"path": ".."
},
],
"settings": {
"cSpell.words": [
"textscopes"
]
},
"extensions": {
"recommendations": [
"gitlab.gitlab-workflow",
"streetsidesoftware.code-spell-checker",
"ms-toolsai.datawrangler",
"usernamehw.errorlens",
"oderwat.indent-rainbow",
"ms-vsliveshare.vsliveshare",
"davidanson.vscode-markdownlint",
"ms-python.vscode-pylance",
"ms-python.pylint",
"ms-python.python",
"ms-python.debugpy",
"kevinrose.vsc-python-indent",
"mechatroner.rainbow-csv",
"gruntfuggly.todo-tree",
"dotjoshjohnson.xml"
]
}
}
19 changes: 19 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"recommendations": [
"gitlab.gitlab-workflow",
"streetsidesoftware.code-spell-checker",
"ms-toolsai.datawrangler",
"usernamehw.errorlens",
"oderwat.indent-rainbow",
"ms-vsliveshare.vsliveshare",
"davidanson.vscode-markdownlint",
"ms-python.vscode-pylance",
"ms-python.pylint",
"ms-python.python",
"ms-python.debugpy",
"kevinrose.vsc-python-indent",
"mechatroner.rainbow-csv",
"gruntfuggly.todo-tree",
"dotjoshjohnson.xml"
]
}
94 changes: 94 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
{
"cSpell.words": [
"CHRONSTRUCT",
"cwrc",
"intertextuality"
],
"todo-tree.general.tags": [
"TODO",
"FIXME",
"BUG",
"NOTE",
"print",
"logger.info",
"logger.warn",
"logger.error",
"input",
],
"todo-tree.filtering.includeHiddenFiles": true,
"todo-tree.general.statusBar": "current file",
"todo-tree.highlights.customHighlight": {
"print": {
"icon": "log",
"type": "text",
"foreground": "#ff0000",
"iconColour": "#ff0000",
"hideFromStatusBar": true,
"hideFromActivityBar": true,
"gutterIcon":true
},
"input": {
"icon": "log",
"type": "text",
"foreground": "#ff0000",
"iconColour": "#ff0000",
"hideFromStatusBar": true,
"hideFromActivityBar": true,
"gutterIcon":true
},
"console.log": {
"icon": "log",
"type": "text",
"foreground": "#ff0000",
"iconColour": "#ff0000",
"hideFromStatusBar": true,
"hideFromActivityBar": true,
"gutterIcon":true
},
"console.warn": {
"icon": "log",
"type": "text",
"foreground": "#fffb00",
"iconColour": "#fffb00",
"hideFromStatusBar": true,
"hideFromActivityBar": true,
"gutterIcon":true
},
"console.error": {
"icon": "log",
"type": "text",
"foreground": "#ffaa00",
"iconColour": "#ffaa00",
"hideFromStatusBar": true,
"hideFromActivityBar": true,
"gutterIcon":true
},
"logger.error": {
"icon": "log",
"type": "text",
"foreground": "#ff0000",
"iconColour": "#ff0000",
"hideFromStatusBar": true,
"hideFromActivityBar": true,
"gutterIcon":true
},
"logger.info": {
"icon": "log",
"type": "text",
"foreground": "#fffb00",
"iconColour": "#fffb00",
"hideFromStatusBar": true,
"hideFromActivityBar": true,
"gutterIcon":true
},
"logger.warn": {
"icon": "log",
"type": "text",
"foreground": "#ffaa00",
"iconColour": "#ffaa00",
"hideFromStatusBar": true,
"hideFromActivityBar": true,
"gutterIcon":true
}
}
}
1 change: 0 additions & 1 deletion Entry/Utils

This file was deleted.

29 changes: 0 additions & 29 deletions Entry/relationshipPredicates.csv

This file was deleted.

12 changes: 0 additions & 12 deletions Entry/requirements.txt

This file was deleted.

16 changes: 0 additions & 16 deletions Mods/requirements.txt

This file was deleted.

Loading