pattern icon indicating copy to clipboard operation
pattern copied to clipboard

Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.

Results 109 pattern issues
Sort by recently updated
recently updated
newest added

I am using parsetree(text, lemmata=True) (pattern.nl) and search(searchterm, text) for Dutch. Like: search: "baan" in "Het aantal banen in Noord-Holland neemt toe." This has the advantage of constructing a lemma...

The word "using" is lemmatized incorrectly: ``` import pattern.en print("using", pattern.en.lemma("using")) print("use", pattern.en.lemma("use")) ``` The result is: ``` using used use use ``` For comparison, both `amusing` and `amuse` return...

For some reason MATCHING cant find the third {NP} ? As you can see there is 3 NP chunks, so it should work !! Any idea ? ----------------------- In [120]:...

Using the singularize method, I found an issue when processing adjectives derived from verbs: `>>> singularize("descartables")` `'descartabl'` should return "descartable" `>>> singularize("disponibles")` `'disponibl'` should return "disponible"

Hello there I use pattern.de and installed in on Jupyter Notebook I get the following error, when I try to run lemma-command in a for loop with massive (more than...

I dived into source code and found that in `pattern\text\en\wordnet\__init__.py` when trying get necessary corpora of nltk, the code(as below) doesn't handle `zipfile.BadZipFile: File is not a zip file` error...

pattern.en.singularize("miseries") gives 'miseries' while the correct singular noun would be 'misery'.

Hi, I would like to analyze some text in german, but get this error already after import: `from pattern.de import sentiment as sentiment_de` > ImportError: cannot import name 'sentiment' from...

Some of the APIs for services (such as Bing Search API, Google Translate API and Facebook) supported by `pattern.web` are deprecated, require a paid subscription or have changed in some...

help
enhancement