npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

corpus2graph-pipeline

v1.0.6

Published

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.

Downloads

12

Readme

Corpus to Graph Pipeline

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.

Solution Architecture

Architecture Diagram

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

Web Jobs

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

Pipeline Logic Interface

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:

pipeline-logic-interface.js:

  1. getNewUnprocessedDocumentIDs - Retrieves IDs of unprocessed documents in the following format:
var documents = [
  {
    sourceId: 1,
    docId: '85500001'
  },
  {
    sourceId: 2,
    docId: '90800001'
  }
];
  1. getDocumentSentences - Gets an array of sentences in following format (you can also provide entities alongside the sentences):
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": []
    }
  ]
};
  1. getSentenceEntities - Gets the entities array for a retrieved sentence

You can implement the methods getSentenceEntities and getDocumentSentences separately, or use getDocumentSentences to get both sentences and entities (as is done in the stub).

  1. getScoring - Scores a sentence with mentions and return the score in the following format:
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

Testing

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

Example

An example on how to use this project for processing a document in a Genomics context see Corpus to Graph Genomics

License

Document Processing Pipeline is licensed under the MIT License.