Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
corpus2graph-pipeline
Advanced tools
A pipeline that processes documents from a public repository, performs entity extraction + scoring on them and outputs the data into a database in the form of entity-relation graph.
Corpus to Graph pipeline is a module that processes documents from a public repository (corpus), performs entity extraction + scoring on them and outputs the data into a database in the form of entity-relation graph.
The elements in play in this solution are as follows:
Element | Description |
---|---|
Public Repository | External repository that supplies new documents every day |
Trigger Web Job | Scheduled to run daily and trigger a flow |
Query Web Job | Queries for new document IDs (latest) |
Parser Web Job | Divides documents into sentences and entities |
Scoring Web Job | Scores sentences and relations |
External API | API (url) that enables entity extraction and scoring |
Graph Data | Database to store documents, sentences and relations |
There are 3 web jobs in the bundle
Web Job | Description |
---|---|
Trigger | A scheduled web job that triggers a daily check for new document Ids |
Query | Queries documents according to date range provided through Trigger Queue and insert all unprocessed documents to New IDs Queue |
Parser | Processes each document in New IDs Queue into sentences and entities and pushes them into Scoring Queue |
Scoring | Scores each sentence in the Scoring Queue via the Scoring Service |
To get more information on the message api between the web jobs and the queues see Corpus to Graph Pipeline - Message API
If you have a document repository and you'd like to run it through the corpus to graph pipeline you will need to provide an implementation of the following pipeline logic interface:
var documents = [
{
sourceId: 1,
docId: '85500001'
},
{
sourceId: 2,
docId: '90800001'
}
];
var sentencesArray = {
"sentences": [
{
"sentence": "This is a sentence about entity-1 and entity-2.",
"mentions": [
{
"from": "25",
"to": "32",
"id": "1234",
"type": "entityType1",
"value": "entity-1"
},
{
"from": "38",
"to": "45",
"id": "ABCD",
"type": "entityType2",
"value": "entity-2"
}
]
},
{
"sentence": "This sentence also contains entity-1 and entity-2.",
"mentions": []
}
]
};
You can implement the methods getSentenceEntities and getDocumentSentences separately, or use getDocumentSentences to get both sentences and entities (as is done in the stub).
var result = {
entities: [
{
id: "1234",
name: "entity-1",
typeId: 1
},
{
id: "ABCD",
name: "entity-2",
typeId: 2
}
],
relations: [
{
entity1: {
id: "1234",
name: "entity-1",
typeId: 1
},
entity2: {
id: "ABCD",
name: "entity-2",
typeId: 2
},
modelVersion: "0.1.0.1",
relation: 2,
score: 0.8,
scoringServiceId: "SERVICE1"
}
]
};
You have an example on how to implement this interface here: Pipeline Logic Stub
Initiate tests by running:
npm install
npm test
The test replaces the implementation of azure sql database and the azure storage queue with stubs.
In the same way you can replace the implementation of azure sql database and the azure storage queue with non-azure implementations
An example on how to use this project for processing a document in a Genomics context see Corpus to Graph Genomics
Document Processing Pipeline is licensed under the MIT License.
FAQs
A pipeline that processes documents from a public repository, performs entity extraction + scoring on them and outputs the data into a database in the form of entity-relation graph.
We found that corpus2graph-pipeline demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.