├── .gitignore ├── JSON-NLP.schema.json ├── LICENSE ├── README.md ├── TODO.md ├── doc └── README.md ├── src ├── go │ ├── README.md │ └── jsonnlp.go ├── java │ └── README.md └── python │ ├── README.md │ ├── nlp2json.py │ └── spaCy2JSON.py └── test ├── NLP-JSON_1.json └── spaCy ├── sample.txt ├── sample.txt.json └── spaCy.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/.gitignore -------------------------------------------------------------------------------- /JSON-NLP.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/JSON-NLP.schema.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/TODO.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/src/go/README.md -------------------------------------------------------------------------------- /src/go/jsonnlp.go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/java/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/nlp2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/src/python/nlp2json.py -------------------------------------------------------------------------------- /src/python/spaCy2JSON.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/src/python/spaCy2JSON.py -------------------------------------------------------------------------------- /test/NLP-JSON_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/test/NLP-JSON_1.json -------------------------------------------------------------------------------- /test/spaCy/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/test/spaCy/sample.txt -------------------------------------------------------------------------------- /test/spaCy/sample.txt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/test/spaCy/sample.txt.json -------------------------------------------------------------------------------- /test/spaCy/spaCy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SemiringInc/JSON-NLP/HEAD/test/spaCy/spaCy.json --------------------------------------------------------------------------------