https://github.com/shenfe/nltags
A service for labeling in POS and DP.
https://github.com/shenfe/nltags
dependency-parsing labeling nlp pos server
Last synced: 3 months ago
JSON representation
A service for labeling in POS and DP.
- Host: GitHub
- URL: https://github.com/shenfe/nltags
- Owner: shenfe
- License: mit
- Created: 2018-03-19T09:18:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-15T15:48:36.000Z (about 7 years ago)
- Last Synced: 2025-01-24T10:32:43.284Z (5 months ago)
- Topics: dependency-parsing, labeling, nlp, pos, server
- Language: JavaScript
- Homepage:
- Size: 424 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nltags
A service for labeling in POS and DP.
## Data Structure
### POS
Example:
```json
{
"word": "奇",
"records": [
{
"pronounce": "qi4",
"type": "a", // 形容词
"explain": "奇异;不同寻常。"
},
{
"pronounce": "ji1",
"records": [
{
"type": "n", // 名词
"explain": "零数;零头。"
},
{
"type": "a",
"records": [
{
"explain": "单;单数的。"
},
{
"explain": "(运气、命运)不好;不顺。"
}
]
}
]
}
]
}
```### DP
Example:
```json
{
"phrase": "我送她鲜花",
"records": [
{
"relation": "SBV", // 主谓关系
"this": "0-1", // [-]
"that": "1"
},
{
"relation": "VOB", // 动宾关系
"this": "1",
"that": "3-2"
},
{
"relation": "IOB", // 间宾关系
"this": "1",
"that": "2"
}
]
}
```### SDP
Example:
```json
{
"phrase": "我送她鲜花",
"records": [
{
"relation": "Agt", // 施事关系
"this": "0",
"that": "1"
},
{
"relation": "Pat", // 受事关系
"this": "1",
"that": "2"
},
{
"relation": "Cont", // 客事关系
"this": "1",
"that": "3-2"
}
]
}
```## Storage
* CouchDB (Master)
* PouchDB## License
MIT