{"id":21557113,"url":"https://github.com/shenfe/nltags","last_synced_at":"2025-03-18T03:24:07.557Z","repository":{"id":143949431,"uuid":"125831849","full_name":"shenfe/nltags","owner":"shenfe","description":"A service for labeling in POS and DP.","archived":false,"fork":false,"pushed_at":"2018-04-15T15:48:36.000Z","size":434,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-24T10:32:43.284Z","etag":null,"topics":["dependency-parsing","labeling","nlp","pos","server"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shenfe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-19T09:18:53.000Z","updated_at":"2018-04-15T15:48:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"c6ed641c-5c5e-4a97-83fb-943843e057cf","html_url":"https://github.com/shenfe/nltags","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shenfe%2Fnltags","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shenfe%2Fnltags/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shenfe%2Fnltags/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shenfe%2Fnltags/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shenfe","download_url":"https://codeload.github.com/shenfe/nltags/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244148373,"owners_count":20406169,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dependency-parsing","labeling","nlp","pos","server"],"created_at":"2024-11-24T08:11:04.971Z","updated_at":"2025-03-18T03:24:07.539Z","avatar_url":"https://github.com/shenfe.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nltags\n\nA service for labeling in POS and DP.\n\n## Data Structure\n\n### POS\n\nExample:\n\n```json\n{\n    \"word\": \"奇\",\n    \"records\": [\n        {\n            \"pronounce\": \"qi4\",\n            \"type\": \"a\", // 形容词\n            \"explain\": \"奇异；不同寻常。\"\n        },\n        {\n            \"pronounce\": \"ji1\",\n            \"records\": [\n                {\n                    \"type\": \"n\", // 名词\n                    \"explain\": \"零数；零头。\"\n                },\n                {\n                    \"type\": \"a\",\n                    \"records\": [\n                        {\n                            \"explain\": \"单；单数的。\"\n                        },\n                        {\n                            \"explain\": \"（运气、命运）不好；不顺。\"\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}\n```\n\n### DP\n\nExample:\n\n```json\n{\n    \"phrase\": \"我送她鲜花\",\n    \"records\": [\n        {\n            \"relation\": \"SBV\", // 主谓关系\n            \"this\": \"0-1\", // \u003cstart_position\u003e[-\u003cword_length\u003e]\n            \"that\": \"1\"\n        },\n        {\n            \"relation\": \"VOB\", // 动宾关系\n            \"this\": \"1\",\n            \"that\": \"3-2\"\n        },\n        {\n            \"relation\": \"IOB\", // 间宾关系\n            \"this\": \"1\",\n            \"that\": \"2\"\n        }\n    ]\n}\n```\n\n### SDP\n\nExample:\n\n```json\n{\n    \"phrase\": \"我送她鲜花\",\n    \"records\": [\n        {\n            \"relation\": \"Agt\", // 施事关系\n            \"this\": \"0\",\n            \"that\": \"1\"\n        },\n        {\n            \"relation\": \"Pat\", // 受事关系\n            \"this\": \"1\",\n            \"that\": \"2\"\n        },\n        {\n            \"relation\": \"Cont\", // 客事关系\n            \"this\": \"1\",\n            \"that\": \"3-2\"\n        }\n    ]\n}\n```\n\n## Storage\n\n* CouchDB (Master)\n* PouchDB\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshenfe%2Fnltags","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshenfe%2Fnltags","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshenfe%2Fnltags/lists"}