Semi-supervised block clustering, for grouping together signatures from the same author.
Features
The list of available features is presented below. In addition each signature is required to have signature_id
key, which will be used to present results of the clustering process as well as publication_id
to link the given signature with a record. The publication_id
must be also presented in a record.
RECORDS
Abstract string
Authors (co-authors) list of strings
Citations list of ints
Collaborations list of strings
Journal string
Keywords list of strings
References list of ints
Title string
Topics list of strings
Year int
SIGNATURES
Author's affiliation string
Author's name string
Position of author's name int
API
The API endpoint can be reached via /api/clustering/clusters
path. The endpoint expects POST
request with a body of the type application/json
. As a response, the server returns JSON object containing a dictionary with lists representing clustered signatures.
curl -i -H "Content-Type: application/json" -H "Accept: application/json" -X POST -d '{"signatures": [SIGNATURES], "records": [RECORDS]}' "http://beard.inspirehep.net/api/clustering/clusters"