Skip to content

Commit aace432

Browse files
author
clams-bot
committed
adding metadata of spacy-wrapper.v2
1 parent 8efd584 commit aace432

File tree

5 files changed

+116
-2
lines changed

5 files changed

+116
-2
lines changed

docs/_apps/spacy-wrapper/v2/index.md

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
layout: single
3+
classes: wide
4+
title: "CLAMS wrapper for spaCy NLP (v2)"
5+
---
6+
* Submitter: [keighrim](https://github.com/keighrim)
7+
* Submission Time: 2024-01-24T05:13:43+00:00
8+
* Prebuilt Container Image: [ghcr.io/keighrim/app-spacy-wrapper-fork:v2](https://github.com/clamsproject/app-spacy-wrapper/pkgs/container/app-spacy-wrapper/v2)
9+
10+
11+
### CLAMS wrapper for spaCy NLP (v2) [metadata.json](metadata.json)
12+
###### Apply spaCy NLP to all text documents in a MMIF file.
13+
14+
* App ID: [http://apps.clams.ai/spacy-wrapper/v2](http://apps.clams.ai/spacy-wrapper/v2)
15+
* App License: Apache 2.0
16+
* Source Repository: [https://github.com/clamsproject/app-spacy-wrapper](https://github.com/clamsproject/app-spacy-wrapper) ([source tree of the submitted version](https://github.com/clamsproject/app-spacy-wrapper/tree/v2))
17+
* Analyzer Version: 3.6
18+
* Analyzer License: MIT
19+
20+
21+
#### Inputs
22+
* [http://mmif.clams.ai/vocabulary/TextDocument/v1](http://mmif.clams.ai/vocabulary/TextDocument/v1) (required)
23+
###### ANY
24+
* [http://vocab.lappsgrid.org/Token](http://vocab.lappsgrid.org/Token)
25+
###### ANY
26+
27+
28+
#### Configurable Parameters
29+
###### Multivalued parameters can have two or more values.
30+
31+
|Name|Description|Type|Multivalued|Default|Choices|
32+
|----|-----------|----|-----------|-------|-------|
33+
|pretokenized|Boolean parameter to set the app to use existing tokenization, if available, for text documents for NLP processing. Useful to process ASR documents, for example.|boolean|N|false|**_`false`_**, `true`|
34+
|pretty|The JSON body of the HTTP response will be re-formatted with 2-space indentation|boolean|N|false|**_`false`_**, `true`|
35+
36+
37+
#### Outputs
38+
###### Note that not all output annotations are always generated.
39+
* [http://vocab.lappsgrid.org/Token](http://vocab.lappsgrid.org/Token)
40+
###### ANY
41+
* [http://vocab.lappsgrid.org/Token#pos](http://vocab.lappsgrid.org/Token#pos)
42+
###### ANY
43+
* [http://vocab.lappsgrid.org/Token#lemma](http://vocab.lappsgrid.org/Token#lemma)
44+
###### ANY
45+
* [http://vocab.lappsgrid.org/NounChunk](http://vocab.lappsgrid.org/NounChunk)
46+
###### ANY
47+
* [http://vocab.lappsgrid.org/Sentence](http://vocab.lappsgrid.org/Sentence)
48+
###### ANY
49+
* [http://vocab.lappsgrid.org/NamedEntity](http://vocab.lappsgrid.org/NamedEntity)
50+
###### ANY
+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"name": "CLAMS wrapper for spaCy NLP",
3+
"description": "Apply spaCy NLP to all text documents in a MMIF file.",
4+
"app_version": "v2",
5+
"mmif_version": "1.0.0",
6+
"analyzer_version": "3.6",
7+
"app_license": "Apache 2.0",
8+
"analyzer_license": "MIT",
9+
"identifier": "http://apps.clams.ai/spacy-wrapper/v2",
10+
"url": "https://github.com/clamsproject/app-spacy-wrapper",
11+
"input": [
12+
{
13+
"@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1",
14+
"required": true
15+
},
16+
{
17+
"@type": "http://vocab.lappsgrid.org/Token",
18+
"required": false
19+
}
20+
],
21+
"output": [
22+
{
23+
"@type": "http://vocab.lappsgrid.org/Token"
24+
},
25+
{
26+
"@type": "http://vocab.lappsgrid.org/Token#pos"
27+
},
28+
{
29+
"@type": "http://vocab.lappsgrid.org/Token#lemma"
30+
},
31+
{
32+
"@type": "http://vocab.lappsgrid.org/NounChunk"
33+
},
34+
{
35+
"@type": "http://vocab.lappsgrid.org/Sentence"
36+
},
37+
{
38+
"@type": "http://vocab.lappsgrid.org/NamedEntity"
39+
}
40+
],
41+
"parameters": [
42+
{
43+
"name": "pretokenized",
44+
"description": "Boolean parameter to set the app to use existing tokenization, if available, for text documents for NLP processing. Useful to process ASR documents, for example.",
45+
"type": "boolean",
46+
"default": 0,
47+
"multivalued": false
48+
},
49+
{
50+
"name": "pretty",
51+
"description": "The JSON body of the HTTP response will be re-formatted with 2-space indentation",
52+
"type": "boolean",
53+
"default": 0,
54+
"multivalued": false
55+
}
56+
]
57+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"time": "2024-01-24T05:13:43+00:00",
3+
"submitter": "keighrim",
4+
"image": "ghcr.io/keighrim/app-spacy-wrapper-fork:v2",
5+
"releasenotes": "changes\\\n* c1\n* c2\n\n"
6+
}

docs/_data/app-index.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"http://apps.clams.ai/spacy-wrapper": [
33
"v1",
4-
"v1.1"
4+
"v1.1",
5+
"v2"
56
],
67
"http://apps.clams.ai/whisper-wrapper": [
78
"v1",

docs/_data/apps.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)