spaCy/website/docs/usage/resources.jade

119 lines
3.0 KiB
Plaintext
Raw Normal View History

2016-12-23 16:32:32 +03:00
//- 💫 DOCS > USAGE > RESOURCES
include ../../_includes/_mixins
p Many of the associated tools and resources that we're developing alongside spaCy can be found in their own repositories.
+h(2, "developer") Developer tools
+table(["Name", "Description"])
+row
2016-12-23 16:35:50 +03:00
+cell
+src(gh("spacy-dev-resources")) spaCy Dev Resources
+cell
| Scripts, tools and resources for developing spaCy, adding new
| languages and training new models.
2016-12-23 16:32:32 +03:00
+row
2016-12-23 16:35:50 +03:00
+cell
+src("spacy-benchmarks") spaCy Benchmarks
+cell
| Runtime performance comparison of spaCy against other NLP
| libraries.
2016-12-23 16:32:32 +03:00
+row
2016-12-23 16:35:50 +03:00
+cell
+src(gh("spacy-services")) spaCy Services
+cell
| REST microservices for spaCy demos and visualisers.
2016-12-23 16:32:32 +03:00
+h(2, "libraries") Libraries and projects
+table(["Name", "Description"])
+row
2016-12-23 16:35:50 +03:00
+cell
+src(gh("sense2vec")) sense2vec
+cell
| Use spaCy to go beyond vanilla
| #[+a("https://en.wikipedia.org/wiki/Word2vec") Word2vec].
2016-12-23 16:32:32 +03:00
+h(2, "utility") Utility libraries and dependencies
+table(["Name", "Description"])
+row
2016-12-23 16:35:50 +03:00
+cell
2016-12-23 23:35:59 +03:00
+src(gh("thinc")) Thinc
2016-12-23 16:35:50 +03:00
+cell
| Super sparse multi-class machine learning with Cython.
2016-12-23 16:32:32 +03:00
+row
2016-12-23 16:35:50 +03:00
+cell
2016-12-23 23:35:59 +03:00
+src(gh("sputnik")) Sputnik
2016-12-23 16:35:50 +03:00
+cell
| Data package manager library for spaCy.
2016-12-23 16:32:32 +03:00
+row
2016-12-23 16:35:50 +03:00
+cell
2016-12-23 23:35:59 +03:00
+src(gh("sputnik-server")) Sputnik Server
2016-12-23 16:35:50 +03:00
+cell
2016-12-23 23:35:59 +03:00
| Index service for the Sputnik data package manager for spaCy.
2016-12-23 16:32:32 +03:00
+row
2016-12-23 16:35:50 +03:00
+cell
2016-12-23 23:35:59 +03:00
+src(gh("cymem")) Cymem
2016-12-23 16:35:50 +03:00
+cell
| Gate Cython calls to malloc/free behind Python ref-counted
| objects.
2016-12-23 16:32:32 +03:00
+row
2016-12-23 16:35:50 +03:00
+cell
2016-12-23 23:35:59 +03:00
+src(gh("preshed")) Preshed
2016-12-23 16:35:50 +03:00
+cell
| Cython hash tables that assume keys are pre-hashed
2016-12-23 16:32:32 +03:00
+row
2016-12-23 16:35:50 +03:00
+cell
2016-12-23 23:35:59 +03:00
+src(gh("murmurhash")) MurmurHash
2016-12-23 16:35:50 +03:00
+cell
| Cython bindings for
| #[+a("https://en.wikipedia.org/wiki/MurmurHash") MurmurHash2].
2016-12-23 16:32:32 +03:00
+h(2, "visualizers") Visualisers and demos
+table(["Name", "Description"])
+row
2016-12-23 16:35:50 +03:00
+cell
+src(gh("displacy")) displaCy.js
+cell
| A lightweight dependency visualisation library for the modern
| web, built with JavaScript, CSS and SVG.
| #[+a(DEMOS_URL + "/displacy") Demo here].
2016-12-23 16:32:32 +03:00
+row
2016-12-23 16:35:50 +03:00
+cell
+src(gh("displacy-ent")) displaCy#[sup ENT]
+cell
| A lightweight and modern named entity visualisation library
| built with JavaScript and CSS.
| #[+a(DEMOS_URL + "/displacy-ent") Demo here].
2016-12-23 16:32:32 +03:00
+row
2016-12-23 16:35:50 +03:00
+cell
+src(gh("sense2vec-demo")) sense2vec Demo
+cell
| Source of our Semantic Analysis of the Reddit Hivemind
| #[+a(DEMOS_URL + "/sense2vec") demo] using
| #[+a(gh("sense2vec")) sense2vec].