nlptoolkit-annotatedtree 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +14 -12
package/README.md CHANGED
@@ -19,6 +19,11 @@ After all levels of processing are finished, the data structure stored for the s
19
19
 
20
20
  As is self-explanatory, 'turkish' tag shows the original Turkish word; 'morphologicalanalysis' tag shows the correct morphological parse of that word; 'semantics' tag shows the ID of the correct sense of that word; 'namedEntity' tag shows the named entity tag of that word; 'propbank' tag shows the semantic role of that word for the verb synset id (frame id in the frame file) which is also given in that tag.
21
21
 
22
+ Video Lectures
23
+ ============
24
+
25
+ [<img src=https://github.com/StarlangSoftware/AnnotatedTree/blob/master/video1.jpg width="50%">](https://youtu.be/LfMf1bo3tEw)[<img src=https://github.com/StarlangSoftware/AnnotatedTree/blob/master/video2.jpg width="50%">](https://youtu.be/QoFPb9XY8Vc)
26
+
22
27
  For Developers
23
28
  ============
24
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nlptoolkit-annotatedtree",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.js",
@@ -20,18 +20,20 @@
20
20
  "devDependencies": {
21
21
  "@types/mocha": "^9.1.0",
22
22
  "mocha": "^9.2.0",
23
- "nlptoolkit-annotatedsentence": "^1.0.3",
24
- "nlptoolkit-corpus": "^1.0.4",
25
- "nlptoolkit-dependencyparser": "^1.0.0",
26
- "nlptoolkit-dictionary": "^1.0.2",
27
- "nlptoolkit-framenet": "^1.0.0",
28
- "nlptoolkit-morphologicalanalysis": "^1.0.2",
29
- "nlptoolkit-namedentityrecognition": "^1.0.0",
30
- "nlptoolkit-parsetree": "^1.0.1",
31
- "nlptoolkit-propbank": "^1.0.2",
32
- "nlptoolkit-sentinet": "^1.0.0",
33
- "nlptoolkit-wordnet": "^1.0.2",
34
23
  "ts-node": "^10.4.0",
35
24
  "typescript": "^4.5.5"
25
+ },
26
+ "dependencies": {
27
+ "nlptoolkit-annotatedsentence": "^1.0.4",
28
+ "nlptoolkit-corpus": "^1.0.9",
29
+ "nlptoolkit-dependencyparser": "^1.0.3",
30
+ "nlptoolkit-dictionary": "^1.0.9",
31
+ "nlptoolkit-framenet": "^1.0.1",
32
+ "nlptoolkit-morphologicalanalysis": "^1.0.9",
33
+ "nlptoolkit-namedentityrecognition": "^1.0.1",
34
+ "nlptoolkit-parsetree": "^1.0.2",
35
+ "nlptoolkit-propbank": "^1.0.3",
36
+ "nlptoolkit-sentinet": "^1.0.1",
37
+ "nlptoolkit-wordnet": "^1.0.5"
36
38
  }
37
39
  }