/linguisticmeasures

Tools for calculating linguistic measures and other useful utilities

Primary LanguagePythonMIT LicenseMIT

Linguistic Measures

Tools for calculating linguistic measures and other useful utilities.

Tabula rasa

  • Usage on measures can be found here
  • Usage on transformations can be found here
  • Usage on tools can be found here
  • If you use these measures in an acedemic work, consider adding in one of these refrences.

Prerequsits

The following packages need to be installed. I recomend using Chocolatey. After Python is installed, the prerequsit packages need installed too. If you want to modify the code, I recomend VS Code.

  • Python
    • I tested this on version 3.8 so YMMV.
  • VS Code along with the below plugins
    • Python by Microsoft.
if('Unrestricted' -ne (Get-ExecutionPolicy)) { Set-ExecutionPolicy Bypass -Scope Process -Force }
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
refreshenv

choco install python3  -y
refreshenv
pip install -r requirements.txt

choco install vscode -y
refreshenv
code --install-extension ms-python.python