mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
ae2ad5becc
With speed benchmarks, charts ended up taking up too much space – and they were mostly data porn and not particularly useful anyways. Instead, we might add a "Compare" page that fetches all models and lets the user compare two or more models in terms of accuracy, speed etc.
44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
//- 💫 INCLUDES > SCRIPTS
|
|
|
|
if quickstart
|
|
script(src="/assets/js/quickstart.min.js")
|
|
|
|
if IS_PAGE
|
|
script(src="/assets/js/in-view.min.js")
|
|
|
|
if environment == "deploy"
|
|
script(async src="https://www.google-analytics.com/analytics.js")
|
|
|
|
script(src="/assets/js/prism.min.js")
|
|
script(src="/assets/js/main.js?v#{V_JS}")
|
|
|
|
script
|
|
| new ProgressBar('.js-progress');
|
|
|
|
if changelog
|
|
| new Changelog('!{SOCIAL.github}', 'spacy');
|
|
|
|
if quickstart
|
|
| new Quickstart("#qs");
|
|
|
|
if IS_PAGE
|
|
| new SectionHighlighter('data-section', 'data-nav');
|
|
| new GitHubEmbed('!{SOCIAL.github}', 'data-gh-embed');
|
|
| ((window.gitter = {}).chat = {}).options = {
|
|
| useStyles: false,
|
|
| activationElement: '.js-gitter-button',
|
|
| targetElement: '.js-gitter',
|
|
| room: '!{SOCIAL.gitter}'
|
|
| };
|
|
|
|
if HAS_MODELS
|
|
| new ModelLoader('!{MODELS_REPO}', !{JSON.stringify(CURRENT_MODELS)}, !{JSON.stringify(MODEL_LICENSES)}, !{JSON.stringify(MODEL_BENCHMARKS)});
|
|
|
|
if environment == "deploy"
|
|
| window.ga=window.ga||function(){
|
|
| (ga.q=ga.q||[]).push(arguments)}; ga.l=+new Date;
|
|
| ga('create', '#{ANALYTICS}', 'auto'); ga('send', 'pageview');
|
|
|
|
if IS_PAGE
|
|
script(src="https://sidecar.gitter.im/dist/sidecar.v1.js" async defer)
|