├── CoreNLP-gh-pages ├── _includes │ ├── js │ │ └── custom.js │ ├── title.html │ ├── linkrefs.html │ ├── archive.html │ ├── custom │ │ ├── doc │ │ │ ├── series_acme_next.html │ │ │ ├── series_acme.html │ │ │ ├── customMenu.html │ │ │ └── doc_homepage.md │ │ └── conditions.html │ ├── footer.html │ ├── google_analytics.html │ ├── alerts.html │ ├── head_custom.html │ ├── feedback.html │ ├── frameescape.html │ ├── callouts.html │ ├── taglogic.html │ ├── disqus.html │ ├── head_print.html │ ├── nav.html │ ├── head.html │ ├── initialize_shuffle.html │ ├── sidebar.html │ ├── topnav.html │ ├── vendor │ │ └── anchor_headings.html │ └── toc.html ├── _data │ ├── tags_doc.yml │ ├── strings.yml │ ├── topnav_doc.yml │ └── sidebar_doc.yml ├── _layouts │ ├── none.html │ ├── about.html │ ├── home.html │ ├── post.html │ ├── table_wrappers.html │ ├── archive.html │ ├── page.html │ ├── tag_page.html │ ├── page_print.html │ ├── default_print.html │ ├── vendor │ │ └── compress.html │ └── default.html ├── favicon.png ├── assets │ ├── .DS_Store │ ├── images │ │ ├── ner.png │ │ ├── pos.png │ │ ├── .DS_Store │ │ ├── coref.png │ │ ├── demo.png │ │ ├── depparse.png │ │ ├── pipeline.png │ │ ├── corenlp-logo.png │ │ ├── corenlp-title.png │ │ ├── just-the-docs.png │ │ ├── text-to-annotation.png │ │ └── search.svg │ ├── css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── dark-mode-preview.scss │ │ └── just-the-docs.scss │ ├── cleanxml.properties │ ├── js │ │ ├── search-data.json │ │ └── dark-mode-preview.js │ └── DF-sample.xml ├── _sass │ ├── support │ │ ├── mixins │ │ │ ├── mixins.scss │ │ │ ├── _buttons.scss │ │ │ ├── _layout.scss │ │ │ └── _typography.scss │ │ ├── support.scss │ │ ├── _functions.scss │ │ └── _variables.scss │ ├── utilities │ │ ├── utilities.scss │ │ ├── _lists.scss │ │ ├── _typography.scss │ │ ├── _layout.scss │ │ ├── _spacing.scss │ │ └── _colors.scss │ ├── color_schemes │ │ ├── stanford.scss │ │ └── dark.scss │ ├── labels.scss │ ├── typography.scss │ ├── tables.scss │ ├── overrides.scss │ ├── base.scss │ ├── vendor │ │ └── normalize.scss │ │ │ ├── package.json │ │ │ └── README.md │ ├── navigation.scss │ ├── buttons.scss │ ├── content.scss │ ├── custom │ │ └── custom.scss │ ├── search.scss │ └── layout.scss ├── README.md ├── _pages │ ├── additional.md │ ├── resources.md │ ├── usage.md │ ├── patterns.md │ ├── demo.md │ ├── 404.md │ ├── udfeats.md │ ├── relation.md │ ├── repl.md │ ├── sentiment.md │ ├── natlog.md │ ├── extensions.md │ ├── entitylink.md │ ├── docdate.md │ ├── contact.md │ ├── entitymentions.md │ ├── lemma.md │ ├── tutorials.md │ ├── model-zoo.md │ ├── new_annotator.md │ ├── depparse.md │ ├── pos.md │ ├── pipeline.md │ ├── kbp.md │ ├── pipelines.md │ ├── quote.md │ ├── truecase.md │ ├── mwt.md │ └── ssplit.md ├── LICENSE └── _config.yml ├── Pipelined_CPU ├── Pipelined CPU description.pdf └── pipeline_CPU_tb.v ├── Single_Cycle_CPU ├── Single_cycle_decription.pdf ├── Single_cycle_implementation │ ├── imem.v │ ├── S_type.v │ ├── regfile.v │ ├── B_type.v │ ├── dmem.v │ ├── L_type.v │ ├── R_type.v │ ├── I_type.v │ └── cpu.v └── cpu_tb.v ├── Pipelined_Branch_Predict ├── cpu_tb.v └── top.v └── README.md /CoreNLP-gh-pages/_includes/js/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_data/tags_doc.yml: -------------------------------------------------------------------------------- 1 | allowed-tags: 2 | 3 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_layouts/none.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | {{content}} -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_layouts/about.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_layouts/home.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/favicon.png -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/.DS_Store -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_sass/support/mixins/mixins.scss: -------------------------------------------------------------------------------- 1 | @import "./layout"; 2 | @import "./buttons"; 3 | @import "./typography"; 4 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_sass/support/support.scss: -------------------------------------------------------------------------------- 1 | @import "./variables"; 2 | @import "./functions"; 3 | @import "./mixins/mixins"; 4 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/images/ner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/images/ner.png -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/images/pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/images/pos.png -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/images/.DS_Store -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/images/coref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/images/coref.png -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/images/demo.png -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/images/depparse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/images/depparse.png -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/images/pipeline.png -------------------------------------------------------------------------------- /Pipelined_CPU/Pipelined CPU description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/Pipelined_CPU/Pipelined CPU description.pdf -------------------------------------------------------------------------------- /CoreNLP-gh-pages/README.md: -------------------------------------------------------------------------------- 1 | # CoreNLP Documentation 2 | 3 | The documentation website of the CoreNLP library, created by the Stanford NLP group. 4 | -------------------------------------------------------------------------------- /Single_Cycle_CPU/Single_cycle_decription.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/Single_Cycle_CPU/Single_cycle_decription.pdf -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_includes/title.html: -------------------------------------------------------------------------------- 1 | {% if site.logo %} 2 |
3 | {% else %} 4 | {{ site.title }} 5 | {% endif %} 6 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/images/corenlp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/images/corenlp-logo.png -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/images/corenlp-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/images/corenlp-title.png -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/images/just-the-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/images/just-the-docs.png -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/css/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/css/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/images/text-to-annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/images/text-to-annotation.png -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_includes/linkrefs.html: -------------------------------------------------------------------------------- 1 | {% include custom/conditions.html %} 2 | {% include {{link}} %} 3 | {% include alerts.html %} 4 | {% include callouts.html %} -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_sass/utilities/utilities.scss: -------------------------------------------------------------------------------- 1 | @import "./colors"; 2 | @import "./layout"; 3 | @import "./typography"; 4 | @import "./lists"; 5 | @import "./spacing"; 6 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /CoreNLP-gh-pages/assets/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilbiju/emil-risc-v/HEAD/CoreNLP-gh-pages/assets/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_data/strings.yml: -------------------------------------------------------------------------------- 1 | 2 | 3 | # placed here for translation purposes 4 | search_placeholder_text: search... 5 | search_no_results_text: No results found. 6 | copyright_line: "©2015 Company Name. All rights reserved." 7 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_sass/support/_functions.scss: -------------------------------------------------------------------------------- 1 | @function rem($size, $unit: "") { 2 | $remSize: $size / $root-font-size; 3 | 4 | @if ($unit == false) { 5 | @return #{$remSize}; 6 | } @else { 7 | @return #{$remSize}rem; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_layouts/table_wrappers.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: vendor/compress 3 | --- 4 | 5 | {% assign content_ = content | replace: '{% assign series_pages = site.tags.series_acme %} 2 | {% for p in pages %} 3 | {% if p.series == "ACME series" %} 4 | {% assign nextTopic = page.weight | plus: "0.1" %} 5 | {% if p.weight == nextTopic %} 6 | 7 | {% endif %} 8 | {% endif %} 9 | {% endfor %} 10 |
11 | -------------------------------------------------------------------------------- /CoreNLP-gh-pages/_pages/demo.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Demo 4 | permalink: '/demo.html' 5 | nav_order: 3 6 | has_children: false 7 | --- 8 | 9 | # Demo 10 | 11 | There is a live online demo of CoreNLP available at [corenlp.run](https://corenlp.run). 12 | 13 |
14 |
15 |
The following pages are tagged with
2 || Page | Excerpt |
|---|---|
| {{page.title}} | 10 |{% if page.summary %} {{ page.summary | strip_html | strip_newlines | truncate: 160 }} {% else %} {{ page.content | truncatewords: 50 | strip_html }} {% endif %} | 11 |
8 | 11 | Yesterday afternoon as I negotiated route 149 from Lake George to Fort Ann in NY I passed a new diner that had opened that day. I didnt notice the name but out side it had a Union Jack and a St Georges flag flying 12 | I wonder if they serve proper 'English' food, served by proper 'English' people ? I may have to check it out asap14 | If they don't have english food and beer...tell em they've got a bloody cheek flying the flags and luring un-suspecting expats in....little buggers...13 |
15 | 18 | Yesterday afternoon as I negotiated route 149 from Lake George to Fort Ann in NY I passed a new diner that had opened that day. I didnt notice the name but out side it had a Union Jack and a St Georges flag flying 19 | I wonder if they serve proper 'English' food, served by proper 'English' people ? I may have to check it out asap21 | Halal? 22 |20 |
25 | Halal? 26 |27 | Tandoori. 28 |
15 |
16 |
108 | Collapse All | Expand All 109 |
110 | {% endif %} 111 |