Giter Club home page Giter Club logo

iswc-2016-semantic-labeling's Introduction

Semantic Typing

Automatically assign semantics to large data sets from heterogeneous sources based on their features using several Statistical and Machine Learning techniques.

##Prerequisites

  1. Elasticsearch
  2. Pyspark
  3. scikit-learn
  4. pandas

##API ###First Time User

This has to be called the very first time the service is setup.

URL /ftu

Method: GET

Parameters: None

###Add Semantic Type

This adds a new semantic type and the corresponding column.

URL /semantic_type

Method: POST

Parameter Description Required
column column data Yes
semantic_type semantic type including domain and type Yes

Sample Payload:

"semantic_type": {
  "domain": {
    "uri": "http://erlangen-crm.org/current/E21_Person"
    },
    "type": {
     "uri": "http://isi.edu/integration/karma/dev#classLink"
   },
},
"column": {
  "header": [...Rows in the column...]
}

###Add columns to semantic type in bulk

URL /semantic_type/bulk

Method: POST

Parameter Description Required
columns column data Yes
semantic_type semantic type including domain and type Yes

Sample Payload:

"semantic_type": {
  "domain": {
    "uri": "http://erlangen-crm.org/current/E21_Person"
    },
    "type": {
     "uri": "http://isi.edu/integration/karma/dev#classLink"
   },
},
"columns": {
  "header1": [...Rows in the column...],
  "header2": [...Rows in the column...],
  "header3": [...Rows in the column...],
  "header4": [...Rows in the column...],
}

###Delete Semantic Type

Deletes semantic type and all the corresponding column

URL /semantic_type

Method: DELETE

Parameter Description Required
semantic_type semantic type including domain and type Yes

Sample Payload:

"semantic_type": {
  "domain": {
    "uri": "http://erlangen-crm.org/current/E21_Person"
    },
    "type": {
     "uri": "http://isi.edu/integration/karma/dev#classLink"
   },
}

###Delete column

Delete a column from a semantic type

URL /column

Method: DELETE

Parameter Description Required
column_name Name of the column that has to be deleted Yes
semantic_type semantic type including domain and type Yes

Sample Payload:

"semantic_type": {
  "domain": {
    "uri": "http://erlangen-crm.org/current/E21_Person"
    },
    "type": {
     "uri": "http://isi.edu/integration/karma/dev#classLink"
   },
},
"column_name": "header1"
}

###Get Semantic Type

Determine semantic type of a column

URL /column

Method: POST

Parameter Description Required
column column data Yes

Sample Payload:

"column": {
  "header": [...Rows in the column...]
}

iswc-2016-semantic-labeling's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.