Questions tagged [languagetool]

Languagetool is a Java based Open Source style and grammar checker

LanguageTool is a proof-reading tool for English, German, Polish, Chinese, French, Dutch, Russian, Italian, Danish and more languages (see http://www.languagetool.org/languages/ for a list). It is based on a Diploma Thesis around which an open source community was created.

Links

83 questions
0
votes
0 answers

CMD outputs when using pylanguagetool (Python)

I'm using pylanguagetool, a Python wrapper for LanguageTool, a spelling/grammar correction application. It operates in both Python and Windows command line. It is particularly useful in command line, as it displays outputs in the following…
0
votes
1 answer

Can not deploy Cloud Function with language_tool_python in Python 3.7 runtime

How you use language tool in Google Cloud Function? I'm trying to deploy in GCP Cloud Function with runtime Python 3.7. I could use the library using my local virtual environment where I have java installed. But when I'm trying to deploy it in…
0
votes
0 answers

How to setup LanguageTool in Eclipse?

May I ask how can I configure/setup LanguageTool in Eclipse? I don't know how to start my project since I don't know how to setup LT properly.
ayraley
  • 1
  • 2
0
votes
1 answer

Does LanguageTool Java API have "useless" dependencies?

I want to use LanguageTool's Java API for spell checking hence I add its dependency into my pom.xml: org.languagetool language-en 4.7 For some reason it…
George Z.
  • 6,643
  • 4
  • 27
  • 47
0
votes
0 answers

vim-LanguageTool and vim-grammarous not working

I am using VIM version 8.1.1401 on Debian Buster. I am pretty new to VIM (just few days ago I started using it) and trying to get some plugin which can detect the grammatical mistakes. After few google searches I found vim-LanguageTool and…
Dexter
  • 1,421
  • 3
  • 22
  • 43
0
votes
1 answer

ngx-quill issue with Language tool extension

I am using ngx-quill-editor as a rich text editor for my angular application. I am not getting Value from quill as expected while using Language tool chrome extension. It works fine otherwise. I didn't find any issue raised for support of quill…
0
votes
3 answers

Package org.languagetool.language.BritishEnglish does not exist

I am LanguageTools to implement a spell corrector. I am currently trying to run the example code which checks for basic spelling error in a string. I downloaded and imported languagetool-core-2.2.jar into my project library in Netbeans. My imports…
0
votes
0 answers

language-check gives OSError: [WinError 87] The parameter is incorrect

I am trying to use language-check a link I get error on line tool = language_check.LanguageTool('en-US') I am getting this error: Traceback (most recent call last): File "", line 1, in tool =…
0
votes
2 answers

Python 2.7 - grammar-check 1.3.1 library: HTTP Error 400: Bad Request

I am trying to use the grammar-check 1.3.1 library for Python I have installed it using the pip commands $ pip install --upgrade 3to2 $ pip install --upgrade language-check I also unzipped the LanguageTool file from this link and moved it to…
EstevaoLuis
  • 2,422
  • 7
  • 33
  • 40
0
votes
0 answers

Could not initialize English Chunker

I have included LanguageTool coding in my Java Maven project as below; Java Code List realLanguages = Languages.get(); for (Language language : realLanguages) { System.out.println(language.getName() + " ==> " +…
Sindhu Venkatachary
  • 233
  • 1
  • 2
  • 10
0
votes
1 answer

linking the language tool to google n-gram dataset

I was wondering if there is a way to force language tool to use google n-gram data set instead of its usual dataset? In fact, I think such a replacement would result in much more wise grammatical corrections.
Hamid
  • 253
  • 2
  • 11
0
votes
1 answer

Unable to Spellcheck Correctly using LanguageTool Java API

I am trying to correct some misspelled words present in a text file using LanguageTool Java API. After going through LT wiki and https://languagetool.org/ I tried some example codes - JLanguageTool langTool; String text = "I.- Any reference _in this…
Rana
  • 505
  • 1
  • 5
  • 19
0
votes
1 answer

java language tool library, cannot find dependency

I am using this example code to use the API. I don't want to use maven so I downloaded the jar files from here, and included the Jar files in org and lib to the build path, then tried to run the example code. I got this error: Error:(15, 56) java:…
Jeremy Hunts
  • 353
  • 1
  • 5
  • 14
0
votes
2 answers

How to perform a tag-agnostic text string search in an html file?

I'm using LanguageTool (LT) with the --xmlfilter option enabled to spell-check HTML files. This forces LanguageTool to strip all tags before running the spell check. This also means that all reported character positions are off because LT doesn't…
Nemo XXX
  • 644
  • 2
  • 14
  • 35
0
votes
2 answers

How do I get the Suggested Sentence in a string as output in LanguageTool?

I am using LanguageTool along with Eclipse. The API can be accessed using the link: Click here. I am able to get the text output from it which shows that certain columns have misspelled words but I am not able to get the output which is the…