├── __init__.py ├── pattern ├── server │ └── static │ │ └── robots.txt ├── text │ ├── xx │ │ ├── xx-context.txt │ │ ├── xx-morphology.txt │ │ ├── xx-frequency.txt │ │ ├── xx-lexicon.txt │ │ ├── xx-verbs.txt │ │ ├── __main__.py │ │ └── xx-sentiment.xml │ ├── en │ │ ├── en-model.slp │ │ ├── wordnet │ │ │ └── dict │ │ │ │ ├── index.32 │ │ │ │ ├── lexnames │ │ │ │ └── LICENSE.txt │ │ ├── __main__.py │ │ └── wordlist │ │ │ ├── time.txt │ │ │ ├── __init__.py │ │ │ └── profanity.txt │ ├── ru │ │ ├── ru-model.slp │ │ ├── __main__.py │ │ ├── wordlist │ │ │ └── __init__.py │ │ └── __init__.py │ ├── it │ │ ├── __main__.py │ │ └── it-context.txt │ ├── de │ │ └── __main__.py │ ├── es │ │ ├── __main__.py │ │ └── es-morphology.txt │ ├── fr │ │ ├── __main__.py │ │ └── fr-morphology.txt │ └── nl │ │ └── __main__.py ├── vector │ ├── svm │ │ ├── macos │ │ │ ├── libsvm-3.22 │ │ │ │ └── libsvm.so.2 │ │ │ └── liblinear-2.20 │ │ │ │ └── liblinear.so.3 │ │ ├── ubuntu │ │ │ ├── libsvm-3.22 │ │ │ │ └── libsvm.so.2 │ │ │ └── liblinear-2.20 │ │ │ │ └── liblinear.so.3 │ │ ├── windows │ │ │ ├── libsvm-3.22 │ │ │ │ └── libsvm.dll │ │ │ └── liblinear-2.20 │ │ │ │ └── liblinear.dll │ │ ├── __init__.py │ │ ├── INSTALL.txt │ │ ├── COPYRIGHT-liblinear.txt │ │ └── COPYRIGHT-libsvm.txt │ ├── stopwords-nl.txt │ └── stopwords-es.txt ├── web │ ├── api.py │ └── utils.py ├── helpers.py └── __init__.py ├── docs ├── index.html ├── g │ ├── more.png │ ├── header.jpg │ ├── scanner.jpg │ ├── shadow.png │ ├── download.gif │ ├── download3.gif │ ├── external.png │ ├── gradient.jpg │ ├── pattern_graph1.jpg │ ├── pattern_graph2.jpg │ ├── pattern_graph3.jpg │ ├── pattern_graph4.jpg │ ├── pattern_graph5.jpg │ ├── pattern_schema.gif │ ├── paypal-donate.jpg │ ├── pattern_schema_de.gif │ ├── pattern_schema_es.gif │ ├── pattern_schema_fr.gif │ ├── pattern_schema_it.gif │ ├── pattern_schema_nl.gif │ ├── pattern-vector-lsa1.jpg │ ├── pattern-vector-svm1.jpg │ ├── pattern-vector-svm2.jpg │ ├── pattern-canvas-editor.jpg │ ├── pattern-canvas-editor2.jpg │ ├── pattern-canvas-filter1.jpg │ ├── pattern-canvas-filter2.jpg │ ├── pattern-canvas-filter3.jpg │ ├── pattern-canvas-filter4.jpg │ ├── pattern-canvas-origin1.jpg │ ├── pattern-canvas-origin2.jpg │ ├── pattern-canvas-path1.jpg │ ├── pattern-metrics-bell.jpg │ ├── pattern-canvas-particle1.png │ ├── pattern-canvas-particle2.png │ ├── pattern-canvas-particle3.png │ ├── pattern-metrics-boxplot.jpg │ ├── pattern-search-taxonomy.jpg │ ├── pattern-vector-cluster1.jpg │ ├── pattern-vector-cluster2.jpg │ ├── pattern_example_100days.jpg │ ├── pattern_example_italian.jpg │ ├── pattern_example_spanish.jpg │ ├── pattern-canvas-primitives1.jpg │ ├── pattern-canvas-primitives2.jpg │ ├── pattern-canvas-primitives3.jpg │ ├── pattern-canvas-primitives4.jpg │ ├── pattern-canvas-primitives5.jpg │ ├── pattern-canvas-primitives6.jpg │ ├── pattern-canvas-supershape1.jpg │ ├── pattern-canvas-supershape2.jpg │ ├── pattern-canvas-supershape3.jpg │ ├── pattern_example_elections.jpg │ └── pattern_example_semantic_network.jpg ├── desmedt12a.pdf └── js │ ├── shBrushXml.js │ ├── shBrushJScript.js │ ├── shBrushPython.js │ └── shThemeDefault.css ├── examples ├── 02-db │ ├── store.db │ ├── food.txt │ ├── 03-date.py │ └── 02-datasheet.py ├── 08-server │ ├── 02-api │ │ └── rate.db │ ├── 04-db │ │ └── store.db │ ├── 01-basic │ │ └── static │ │ │ └── cat.jpg │ └── 03-wiki │ │ └── data │ │ └── index.html.txt ├── 03-en │ ├── texts │ │ ├── 1701.00002.txt │ │ ├── 1701.00003.txt │ │ ├── 1701.00004.txt │ │ ├── 1701.00005.txt │ │ ├── 1701.00006.txt │ │ ├── 1701.00007.txt │ │ ├── 1701.00008.txt │ │ ├── 1701.00009.txt │ │ ├── 1701.00010.txt │ │ ├── 1701.00011.txt │ │ ├── 1701.00012.txt │ │ ├── 1701.00013.txt │ │ ├── 1701.00014.txt │ │ ├── 1701.00015.txt │ │ ├── 1701.00016.txt │ │ ├── 1701.00017.txt │ │ ├── 1701.00018.txt │ │ ├── 1701.00019.txt │ │ ├── 1701.00020.txt │ │ ├── 1701.00021.txt │ │ ├── 1701.00022.txt │ │ ├── 1701.00023.txt │ │ ├── 1701.00024.txt │ │ ├── 1701.00025.txt │ │ ├── 1701.00026.txt │ │ ├── 1701.00027.txt │ │ ├── 1701.00028.txt │ │ ├── 1701.00029.txt │ │ ├── 1701.00030.txt │ │ ├── 1701.00031.txt │ │ ├── 1701.00032.txt │ │ ├── 1701.00033.txt │ │ ├── 1701.00034.txt │ │ ├── 1701.00035.txt │ │ ├── 1701.00037.txt │ │ ├── 1701.00038.txt │ │ ├── 1701.00039.txt │ │ ├── 1701.00043.txt │ │ ├── 1701.00044.txt │ │ ├── 1701.00045.txt │ │ ├── 1701.00046.txt │ │ ├── 1701.00047.txt │ │ ├── 1701.00049.txt │ │ ├── 1701.00050.txt │ │ ├── 1701.00051.txt │ │ ├── 1701.00052.txt │ │ ├── 1701.00053.txt │ │ ├── 1701.00054.txt │ │ ├── 1701.00055.txt │ │ ├── 1701.00056.txt │ │ ├── 1701.00057.txt │ │ ├── 1701.00058.txt │ │ ├── 1701.00060.txt │ │ ├── 1701.00061.txt │ │ ├── 1701.00062.txt │ │ ├── 1701.00063.txt │ │ ├── 1701.00064.txt │ │ ├── 1701.00065.txt │ │ ├── 1701.00066.txt │ │ ├── 1701.00067.txt │ │ ├── 1701.00068.txt │ │ ├── 1701.00069.txt │ │ ├── 1701.00072.txt │ │ ├── 1701.00073.txt │ │ ├── 1701.00074.txt │ │ ├── 1701.00075.txt │ │ ├── 1701.00076.txt │ │ ├── 1701.00077.txt │ │ ├── 1701.00078.txt │ │ ├── 1701.00079.txt │ │ ├── 1701.00081.txt │ │ ├── 1701.00082.txt │ │ ├── 1701.00083.txt │ │ ├── 1701.00084.txt │ │ ├── 1701.00085.txt │ │ ├── 1701.00086.txt │ │ ├── 1701.00087.txt │ │ ├── 1701.00088.txt │ │ ├── 1701.00089.txt │ │ ├── 1701.00090.txt │ │ ├── 1701.00091.txt │ │ ├── 1701.00092.txt │ │ ├── 1701.00094.txt │ │ ├── 1701.00095.txt │ │ ├── 1701.00096.txt │ │ ├── 1701.00097.txt │ │ ├── 1701.00098.txt │ │ ├── 1701.00099.txt │ │ ├── 1701.00100.txt │ │ ├── 1701.00101.txt │ │ ├── 1701.00102.txt │ │ ├── 1701.00103.txt │ │ ├── 1701.00104.txt │ │ ├── 1701.00105.txt │ │ ├── 1701.00106.txt │ │ ├── 1701.00107.txt │ │ ├── 1701.00109.txt │ │ ├── 1701.00110.txt │ │ ├── 1701.00111.txt │ │ └── 1701.00112.txt │ ├── 04-tree.py │ ├── 02-quantify.py │ ├── 08-topmine_ngrammer.py │ ├── 03-parse.py │ ├── 06-wordnet.py │ └── 07-sentiment.py ├── 07-canvas │ ├── 02-basic.html │ ├── 01-basic.html │ ├── 06-image.html │ ├── 08-widget.html │ ├── 04-path.html │ ├── data-url.html │ ├── 03-transformation.html │ └── 05-points.html ├── 06-graph │ ├── 07-graphml.py │ ├── 01-graph.py │ ├── 03-template.py │ ├── 05-trends.py │ ├── 02-export.py │ ├── 06-commonsense.py │ └── 04-canvas.html ├── 04-search │ ├── 05-multiple.py │ ├── 03-lemmata.py │ ├── 09-web.py │ ├── 06-optional.py │ ├── 01-search.py │ ├── 08-group.py │ ├── 07-exclude.py │ ├── 02-constraint.py │ └── 04-taxonomy.py ├── 01-web │ ├── 02-google-translate.py │ ├── 05-twitter-stream.py │ ├── 15-sort.py │ ├── 06-feed.py │ ├── 14-flickr.py │ ├── 07-wikipedia.py │ ├── 09-wikia.py │ ├── 03-bing.py │ ├── 01-google.py │ ├── 04-twitter.py │ ├── 08-wiktionary.py │ └── 11-facebook.py └── 05-vector │ ├── corpus │ └── parakeet.txt │ ├── 05-nb.py │ ├── 02-model.py │ ├── 01-document.py │ └── 04-KNN.py ├── test ├── corpora │ ├── README.txt │ ├── carroll-wonderland.pdf │ └── carroll-lookingglass.docx ├── test_graph.js ├── test.html ├── test.js └── test_ru.py ├── .gitignore ├── .travis.yml └── LICENSE.txt /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pattern/server/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * -------------------------------------------------------------------------------- /pattern/text/xx/xx-context.txt: -------------------------------------------------------------------------------- 1 | IN VB PREVTAG PRP 2 | NN VB PREVTAG TO -------------------------------------------------------------------------------- /pattern/text/xx/xx-morphology.txt: -------------------------------------------------------------------------------- 1 | NN s fhassuf 1 NNS x 2 | ly hassuf 2 RB x -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/g/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/more.png -------------------------------------------------------------------------------- /pattern/text/xx/xx-frequency.txt: -------------------------------------------------------------------------------- 1 | the 1.0000 2 | of 0.5040 3 | and 0.4805 4 | a 0.3941 -------------------------------------------------------------------------------- /docs/g/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/header.jpg -------------------------------------------------------------------------------- /docs/g/scanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/scanner.jpg -------------------------------------------------------------------------------- /docs/g/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/shadow.png -------------------------------------------------------------------------------- /docs/desmedt12a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/desmedt12a.pdf -------------------------------------------------------------------------------- /docs/g/download.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/download.gif -------------------------------------------------------------------------------- /docs/g/download3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/download3.gif -------------------------------------------------------------------------------- /docs/g/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/external.png -------------------------------------------------------------------------------- /docs/g/gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/gradient.jpg -------------------------------------------------------------------------------- /examples/02-db/store.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/02-db/store.db -------------------------------------------------------------------------------- /test/corpora/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/test/corpora/README.txt -------------------------------------------------------------------------------- /docs/g/pattern_graph1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_graph1.jpg -------------------------------------------------------------------------------- /docs/g/pattern_graph2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_graph2.jpg -------------------------------------------------------------------------------- /docs/g/pattern_graph3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_graph3.jpg -------------------------------------------------------------------------------- /docs/g/pattern_graph4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_graph4.jpg -------------------------------------------------------------------------------- /docs/g/pattern_graph5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_graph5.jpg -------------------------------------------------------------------------------- /docs/g/pattern_schema.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_schema.gif -------------------------------------------------------------------------------- /docs/g/paypal-donate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/paypal-donate.jpg -------------------------------------------------------------------------------- /docs/g/pattern_schema_de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_schema_de.gif -------------------------------------------------------------------------------- /docs/g/pattern_schema_es.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_schema_es.gif -------------------------------------------------------------------------------- /docs/g/pattern_schema_fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_schema_fr.gif -------------------------------------------------------------------------------- /docs/g/pattern_schema_it.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_schema_it.gif -------------------------------------------------------------------------------- /docs/g/pattern_schema_nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_schema_nl.gif -------------------------------------------------------------------------------- /pattern/text/en/en-model.slp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/pattern/text/en/en-model.slp -------------------------------------------------------------------------------- /pattern/text/ru/ru-model.slp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/pattern/text/ru/ru-model.slp -------------------------------------------------------------------------------- /pattern/text/xx/xx-lexicon.txt: -------------------------------------------------------------------------------- 1 | The DT 2 | the DT 3 | cat NN 4 | sat VBD 5 | sit VB 6 | on IN 7 | mat NN 8 | . . -------------------------------------------------------------------------------- /docs/g/pattern-vector-lsa1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-vector-lsa1.jpg -------------------------------------------------------------------------------- /docs/g/pattern-vector-svm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-vector-svm1.jpg -------------------------------------------------------------------------------- /docs/g/pattern-vector-svm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-vector-svm2.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-editor.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-editor2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-editor2.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-filter1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-filter1.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-filter2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-filter2.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-filter3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-filter3.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-filter4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-filter4.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-origin1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-origin1.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-origin2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-origin2.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-path1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-path1.jpg -------------------------------------------------------------------------------- /docs/g/pattern-metrics-bell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-metrics-bell.jpg -------------------------------------------------------------------------------- /examples/08-server/02-api/rate.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/08-server/02-api/rate.db -------------------------------------------------------------------------------- /examples/08-server/04-db/store.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/08-server/04-db/store.db -------------------------------------------------------------------------------- /docs/g/pattern-canvas-particle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-particle1.png -------------------------------------------------------------------------------- /docs/g/pattern-canvas-particle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-particle2.png -------------------------------------------------------------------------------- /docs/g/pattern-canvas-particle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-particle3.png -------------------------------------------------------------------------------- /docs/g/pattern-metrics-boxplot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-metrics-boxplot.jpg -------------------------------------------------------------------------------- /docs/g/pattern-search-taxonomy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-search-taxonomy.jpg -------------------------------------------------------------------------------- /docs/g/pattern-vector-cluster1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-vector-cluster1.jpg -------------------------------------------------------------------------------- /docs/g/pattern-vector-cluster2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-vector-cluster2.jpg -------------------------------------------------------------------------------- /docs/g/pattern_example_100days.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_example_100days.jpg -------------------------------------------------------------------------------- /docs/g/pattern_example_italian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_example_italian.jpg -------------------------------------------------------------------------------- /docs/g/pattern_example_spanish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_example_spanish.jpg -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00002.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00003.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00004.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00005.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00006.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00007.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00008.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00009.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00010.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00011.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00012.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00013.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00014.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00015.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00016.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00017.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00018.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00019.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00020.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00021.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00022.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00023.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00024.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00025.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00026.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00026.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00027.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00027.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00028.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00028.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00029.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00029.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00030.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00031.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00031.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00032.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00032.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00033.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00033.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00034.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00034.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00035.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00035.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00037.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00037.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00038.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00038.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00039.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00039.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00043.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00043.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00044.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00044.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00045.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00045.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00046.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00046.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00047.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00047.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00049.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00049.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00050.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00051.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00051.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00052.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00052.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00053.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00053.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00054.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00054.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00055.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00055.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00056.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00056.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00057.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00057.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00058.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00058.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00060.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00060.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00061.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00061.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00062.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00062.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00063.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00063.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00064.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00064.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00065.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00065.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00066.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00066.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00067.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00067.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00068.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00068.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00069.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00069.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00072.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00072.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00073.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00073.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00074.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00074.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00075.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00075.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00076.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00076.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00077.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00077.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00078.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00078.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00079.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00079.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00081.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00081.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00082.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00082.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00083.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00083.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00084.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00084.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00085.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00085.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00086.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00086.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00087.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00087.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00088.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00088.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00089.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00089.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00090.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00090.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00091.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00091.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00092.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00092.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00094.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00094.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00095.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00095.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00096.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00096.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00097.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00097.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00098.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00098.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00099.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00099.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00100.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00101.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00102.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00103.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00104.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00105.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00106.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00107.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00109.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00110.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00111.txt -------------------------------------------------------------------------------- /examples/03-en/texts/1701.00112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/03-en/texts/1701.00112.txt -------------------------------------------------------------------------------- /test/corpora/carroll-wonderland.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/test/corpora/carroll-wonderland.pdf -------------------------------------------------------------------------------- /docs/g/pattern-canvas-primitives1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-primitives1.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-primitives2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-primitives2.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-primitives3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-primitives3.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-primitives4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-primitives4.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-primitives5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-primitives5.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-primitives6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-primitives6.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-supershape1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-supershape1.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-supershape2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-supershape2.jpg -------------------------------------------------------------------------------- /docs/g/pattern-canvas-supershape3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern-canvas-supershape3.jpg -------------------------------------------------------------------------------- /docs/g/pattern_example_elections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_example_elections.jpg -------------------------------------------------------------------------------- /pattern/text/en/wordnet/dict/index.32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/pattern/text/en/wordnet/dict/index.32 -------------------------------------------------------------------------------- /test/corpora/carroll-lookingglass.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/test/corpora/carroll-lookingglass.docx -------------------------------------------------------------------------------- /docs/g/pattern_example_semantic_network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/docs/g/pattern_example_semantic_network.jpg -------------------------------------------------------------------------------- /examples/08-server/01-basic/static/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/examples/08-server/01-basic/static/cat.jpg -------------------------------------------------------------------------------- /pattern/text/xx/xx-verbs.txt: -------------------------------------------------------------------------------- 1 | be,am,are,is,are,being,was,were,was,were,were,been,,am not,aren't,isn't,aren't,,wasn't,weren't,wasn't,weren't,weren't, -------------------------------------------------------------------------------- /pattern/vector/svm/macos/libsvm-3.22/libsvm.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/pattern/vector/svm/macos/libsvm-3.22/libsvm.so.2 -------------------------------------------------------------------------------- /pattern/vector/svm/ubuntu/libsvm-3.22/libsvm.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/pattern/vector/svm/ubuntu/libsvm-3.22/libsvm.so.2 -------------------------------------------------------------------------------- /pattern/vector/svm/windows/libsvm-3.22/libsvm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/pattern/vector/svm/windows/libsvm-3.22/libsvm.dll -------------------------------------------------------------------------------- /pattern/vector/svm/macos/liblinear-2.20/liblinear.so.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/pattern/vector/svm/macos/liblinear-2.20/liblinear.so.3 -------------------------------------------------------------------------------- /pattern/vector/svm/ubuntu/liblinear-2.20/liblinear.so.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/pattern/vector/svm/ubuntu/liblinear-2.20/liblinear.so.3 -------------------------------------------------------------------------------- /pattern/vector/svm/windows/liblinear-2.20/liblinear.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellohaptik/pattern/master/pattern/vector/svm/windows/liblinear-2.20/liblinear.dll -------------------------------------------------------------------------------- /examples/02-db/food.txt: -------------------------------------------------------------------------------- 1 | "id (INTEGER)","name (STRING)","type (STRING)","color (STRING)" 2 | "1","broccoli","vegetable","green" 3 | "2","turnip","vegetable","purple" 4 | "3","asparagus","vegetable","white" 5 | "4","banana","fruit","yellow" -------------------------------------------------------------------------------- /pattern/text/it/__main__.py: -------------------------------------------------------------------------------- 1 | #### PATTERN | IT | PARSER COMMAND-LINE ############################################################ 2 | 3 | from __future__ import absolute_import 4 | 5 | from .__init__ import parse, commandline 6 | commandline(parse) 7 | -------------------------------------------------------------------------------- /pattern/text/xx/__main__.py: -------------------------------------------------------------------------------- 1 | #### PATTERN | XX | PARSER COMMAND-LINE ############################################################ 2 | 3 | from __future__ import absolute_import 4 | 5 | from .__init__ import parse, commandline 6 | commandline(parse) 7 | -------------------------------------------------------------------------------- /examples/08-server/03-wiki/data/index.html.txt: -------------------------------------------------------------------------------- 1 |
This is a very simple wiki powered by pattern.server.
2 |Each page can be modified by clicking the edit-link.
3 |To create a new page, create a link to it, for example this test page.
-------------------------------------------------------------------------------- /pattern/vector/svm/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | from __future__ import division 3 | 4 | LIBSVM = LIBLINEAR = True 5 | 6 | try: 7 | from . import libsvm 8 | from . import libsvmutil 9 | except ImportError as e: 10 | LIBSVM = False 11 | raise e 12 | 13 | try: 14 | from . import liblinear 15 | from . import liblinearutil 16 | except: 17 | LIBLINEAR = False 18 | -------------------------------------------------------------------------------- /pattern/text/xx/xx-sentiment.xml: -------------------------------------------------------------------------------- 1 | 2 |