Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update communitiesextract.sql - add NBFC mining #1496

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,14 @@ setschema 'docid,prev,middle,next' select c1, textwindow2s(keywords(filterstopwo
), grants where conceptLabel="INSPIRED RIs" and regexprmatches("\bMIS|INSPIRED", context)
) group by docid


-- NBFC
union all
select jdict('documentId',docid, 'conceptId', conceptId, 'confidenceLevel', 0.8,'textsnippet',context) as c1 from (
select docid, conceptId, conceptLabel, prev||" "||middle||" "||next as context
from (
setschema 'docid,prev,middle,next' select c1, textwindow2s(keywords(lower(c2)),7,4,3, 'national biodiversity future cent') from pubs where c2 is not null
),grants where conceptLabel="Italian National Biodiversity Future Center"
) group by docid
union all

-- DARIAH
Expand Down