spaCy/website/_harp.json

148 lines
6.2 KiB
JSON
Raw Normal View History

2016-03-31 17:24:48 +03:00
{
"globals": {
2016-10-31 21:04:15 +03:00
"title": "spaCy",
2016-03-31 17:24:48 +03:00
"description": "spaCy is a free open-source library featuring state-of-the-art speed and accuracy and a powerful Python API.",
2016-10-19 01:19:42 +03:00
"SITENAME": "spaCy",
2016-10-31 21:04:15 +03:00
"SLOGAN": "Industrial-strength Natural Language Processing in Python",
2016-10-19 01:19:42 +03:00
"SITE_URL": "https://spacy.io",
"EMAIL": "contact@explosion.ai",
"COMPANY": "Explosion AI",
"COMPANY_URL": "https://explosion.ai",
"DEMOS_URL": "https://demos.explosion.ai",
2016-11-08 00:48:35 +03:00
2017-04-16 23:39:58 +03:00
"SPACY_VERSION": "1.8",
2016-11-08 00:48:35 +03:00
"LATEST_NEWS": {
2017-04-07 19:34:22 +03:00
"url": "https://survey.spacy.io/",
"title": "Take the spaCy user survey and help us improve the library!"
2016-11-08 00:48:35 +03:00
},
2016-10-31 21:04:15 +03:00
2016-10-03 21:19:13 +03:00
"SOCIAL": {
"twitter": "spacy_io",
"github": "explosion",
2016-11-25 04:29:48 +03:00
"reddit": "spacynlp",
2017-01-01 05:17:29 +03:00
"codepen": "explosion",
"gitter": "explosion/spaCy"
2016-03-31 17:24:48 +03:00
},
2016-10-31 21:04:15 +03:00
"NAVIGATION": {
"Home": "/",
"Usage": "/docs/usage",
2017-05-17 12:40:19 +03:00
"Reference": "/docs/api",
2016-10-31 21:04:15 +03:00
"Demos": "/docs/usage/showcase",
"Blog": "https://explosion.ai/blog"
},
"FOOTER": {
"spaCy": {
"Usage": "/docs/usage",
"API Reference": "/docs/api",
"Tutorials": "/docs/usage/tutorials",
"Showcase": "/docs/usage/showcase"
},
"Support": {
"Issue Tracker": "https://github.com/explosion/spaCy/issues",
"StackOverflow": "http://stackoverflow.com/questions/tagged/spacy",
"Reddit usergroup": "https://www.reddit.com/r/spacynlp/",
"Gitter chat": "https://gitter.im/explosion/spaCy"
},
"Connect": {
"Twitter": "https://twitter.com/spacy_io",
"GitHub": "https://github.com/explosion/spaCy",
"Blog": "https://explosion.ai/blog",
"Contact": "mailto:contact@explosion.ai"
}
2016-11-01 04:12:25 +03:00
},
2017-05-17 13:03:42 +03:00
"QUICKSTART": [
{ "id": "os", "title": "Operating system", "options": [
{ "id": "mac", "title": "macOS / OSX", "checked": true },
{ "id": "windows", "title": "Windows" },
{ "id": "linux", "title": "Linux" }]
},
{ "id": "package", "title": "Package manager", "options": [
{ "id": "pip", "title": "pip", "checked": true },
{ "id": "conda", "title": "conda" },
{ "id": "source", "title": "from source" }]
},
{ "id": "python", "title": "Python version", "options": [
{ "id": 2, "title": "2.x" },
{ "id": 3, "title": "3.x", "checked": true }]
},
{ "id": "config", "title": "Configuration", "multiple": true, "options": [
{"id": "venv", "title": "virtualenv", "help": "Use a virtual environment and install spaCy into a user directory" },
{"id": "gpu", "title": "GPU", "help": "Run spaCy on GPU to make it faster. Requires an NVDIA graphics card with CUDA 2+. See section below for more info."}]
2017-05-17 13:03:42 +03:00
},
{ "id": "model", "title": "Models", "multiple": true, "options": [
{ "id": "en", "title": "English", "meta": "50MB" },
{ "id": "de", "title": "German", "meta": "645MB" },
{ "id": "fr", "title": "French", "meta": "1.33GB" },
2017-06-01 19:22:35 +03:00
{ "id": "es", "title": "Spanish", "meta": "378MB"}]
2017-05-17 13:03:42 +03:00
}
],
"QUICKSTART_MODELS": [
{ "id": "lang", "title": "Language", "options": [
{ "id": "en", "title": "English", "checked": true },
{ "id": "de", "title": "German" },
{ "id": "fr", "title": "French" },
{ "id": "es", "title": "Spanish" }]
},
{ "id": "load", "title": "Loading style", "options": [
{ "id": "spacy", "title": "Use spacy.load()", "checked": true, "help": "Use spaCy's built-in loader to load the model by name." },
{ "id": "module", "title": "Import as module", "help": "Import the model explicitly as a Python module." }]
},
{ "id": "config", "title": "Options", "multiple": true, "options": [
{ "id": "example", "title": "Show usage example" }]
}
],
"MODELS": {
"en": [
{ "id": "en_core_web_sm", "lang": "English", "feats": [1, 1, 1, 1], "size": "50 MB", "license": "CC BY-SA", "def": true },
{ "id": "en_core_web_md", "lang": "English", "feats": [1, 1, 1, 1], "size": "1 GB", "license": "CC BY-SA" },
{ "id": "en_depent_web_md", "lang": "English", "feats": [1, 1, 1, 0], "size": "328 MB", "license": "CC BY-SA" },
{ "id": "en_vectors_glove_md", "lang": "English", "feats": [1, 0, 0, 1], "size": "727 MB", "license": "CC BY-SA" }
],
"de": [
{ "id": "de_core_news_md", "lang": "German", "feats": [1, 1, 1, 1], "size": "645 MB", "license": "CC BY-SA" }
],
"fr": [
{ "id": "fr_depvec_web_lg", "lang": "French", "feats": [1, 1, 0, 1], "size": "1.33 GB", "license": "CC BY-NC" }
],
"es": [
2017-06-01 19:22:35 +03:00
{ "id": "es_core_web_md", "lang": "Spanish", "feats": [1, 1, 1, 1], "size": "378 MB", "license": "CC BY-SA"}
]
},
"EXAMPLE_SENTENCES": {
"en": "This is a sentence.",
"de": "Dies ist ein Satz.",
"fr": "C'est une phrase.",
"es": "Esto es una frase."
},
"ALPHA": true,
2017-05-03 20:41:13 +03:00
"V_CSS": "1.6",
2017-03-17 14:52:55 +03:00
"V_JS": "1.2",
2017-01-17 19:55:59 +03:00
"DEFAULT_SYNTAX": "python",
2016-11-01 04:12:25 +03:00
"ANALYTICS": "UA-58931649-1",
"MAILCHIMP": {
"user": "spacy.us12",
"id": "83b0498b1e7fa3c91ce68c3f1",
"list": "89ad33e698"
},
"BADGES": {
"pipy": {
"badge": "https://img.shields.io/pypi/v/spacy.svg?style=flat-square",
"link": "https://pypi.python.org/pypi/spacy"
},
"conda": {
"badge": "https://anaconda.org/conda-forge/spacy/badges/version.svg",
"link": "https://anaconda.org/conda-forge/spacy"
}
2016-10-31 21:04:15 +03:00
}
2016-03-31 17:24:48 +03:00
}
}