Home

Awesome

Build Status Language Machines Badge DOI GitHub release Project Status: Active – The project has reached a stable, usable state and is being actively developed.

FoliAutils

(c) CLST/TiCC/CLiPS 2024 https://github.com/LanguageMachines/foliautils

Centre for Language and Speech Technology, Radboud University Nijmegen
Tilburg centre for Cognition and Communication, Tilburg University and
Centre for Dutch Language and Speech, University of Antwerp

This file is part of foliautils foliautils provides a series of programs to make FoLiA processsing more easy.

This includes:

foliautils is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

Comments and bug-reports are welcome at our issue tracker at https://github.com/LanguageMachines/foliautils/issues or by mailing lamasoftware (at) science.ru.nl.


This software has been tested on:

Contents of this distribution:

Dependencies: To be able to succesfully build foliautils from source, you need the following dependencies:

To install ticcutils, libfolia and ucto, first consult whether your distribution's package manager has an up-to-date package. If not, you can use the supplied build-deps.sh script to automatically download and install the latest stable versions of these dependencis dependencies. You can pass a target directory prefix as first argument and you may need to prepend sudo to ensure you can install there.

To compile and install FoLiA-utils manually from source, provided you have all the dependencies installed, do:

$ bash bootstrap.sh
$ ./configure
$ make
$ make install

Container Usage

A pre-made container image can be obtained from Docker Hub as follows:

docker pull proycon/foliautils

You can build a docker container as follows, make sure you are in the root of this repository:

docker build -t proycon/foliautils .

This builds the latest stable release, if you want to use the latest development version from the git repository instead, do:

docker build -t proycon/foliautils --build-arg VERSION=development .

Run the container interactively as follows:

docker run -t -i proycon/foliautils

Or invoke the tool you want:

docker run proycon/foliautils FoLiA-page

Add the -v /path/to/your/data:/data parameter (before -t) if you want to mount your data volume into the container at /data .