diff --git a/_layouts/lamalayout.html b/_layouts/lamalayout.html index 1f54b30f..dce215f5 100644 --- a/_layouts/lamalayout.html +++ b/_layouts/lamalayout.html @@ -28,6 +28,7 @@
Centre for Language and Speech Technology +

@@ -53,7 +54,8 @@

{% if page.extracredit %} [ {{ page.extracredit }} ]
{% endif %} - Language Machines // Centre for Language and Speech Technology // Centre for Language Studies // Radboud University Nijmegen + Centre for Language and Speech Technology // Centre for Language Studies // Radboud University Nijmegen
+ Digital Infrastructure // KNAW Humanities Cluster diff --git a/index.html b/index.html index 62a19941..3266963a 100644 --- a/index.html +++ b/index.html @@ -12,14 +12,15 @@ modules were created in the 1990s at the ILK Research Group (Tilburg University, the Netherlands) and the CLiPS Research Centre (University of Antwerp, Belgium). Over the years they have been integrated into a single text -processing tool, which is currently maintained and developed by the Language Machines Research Group and the Centre for Language and Speech Technology at Radboud University Nijmegen. A dependency parser, a base phrase chunker, and +processing tool. This has been further developed at the Centre for Language and Speech Technology at Radboud University Nijmegen, and currently maintained at the KNAW Humanities Cluster. +The tool features a dependency parser, a base phrase chunker, and a named-entity recognizer module were added more recently. Where possible, Frog makes use of multi-processor support to run subtasks in parallel.

Various (re)programming rounds have been made possible through funding by -NWO, the Netherlands Organisation for Scientific Research, particularly under -the CGN project, the IMIX programme, the Implicit Linguistics project, the -CLARIN-NL programme and the CLARIAH programme.

+NWO, the Netherlands Organisation for Scientific Research, particularly under +the CGN project, the IMIX programme, the Implicit Linguistics project, the +CLARIN-NL programme and the CLARIAH programme.

@@ -27,9 +28,9 @@

What does it do?

-

Frog's current version will tokenize, tag, lemmatize, and morphologically segment word tokens in Dutch text files, will assign a dependency graph to each sentence, will identify the base phrase chunks in the sentence, and will attempt to find and label all named entities. +

Frog can tokenize, tag, lemmatize, and morphologically segment word tokens in Dutch text files, will assign a dependency graph to each sentence, will identify the base phrase chunks in the sentence, and will attempt to find and label all named entities. -

Frog produces FoLiA XML, or tab-delimited column-formatted output, one line per token, that looks as follows:

+

Frog produces FoLiA XML, or a tab-delimited column-formatted output, one line per token, that looks as follows:

frog output @@ -104,8 +105,8 @@

Download & Installation

Frog 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 +of the GNU General Public +License v3 as published by the Free Software Foundation.

@@ -114,11 +115,9 @@

Download & Installation

  1. First check if there are up-to-date packages included in your distribution's package manager. There are packages for -Debian,Ubuntu and Arch -Linux.
  2. -
  3. If not, we strongly recommend you use our LaMachine software distribution, -which includes Frog and all necessary dependencies, and runs on Linux, BSD and +Alpine Linux, Arch Linux (AUR), macOS (homebrew), Debian,Ubuntu.
  4. +
  5. If you're only interested in the Frog Python binding, then a simple pip install python-frog suffices.
  6. +
  7. If not, we recommend you use our docker container via docker pull proycon/frog. It includes Frog and all necessary dependencies, and runs on Linux, BSD and Mac OS X. It can also run as a virtual machine under any host OS.
  8. Alternatively, you can always download, compile and install Frog manually, as shown next.
@@ -151,8 +150,8 @@

Manual installation

As well as the following 3rd party dependencies:

@@ -172,11 +171,11 @@

Usage instructions: Making Frog leap

  • With --skip=[mptnc] you can tell Frog to skip tokenization (t), base phrase chunking (c), named-entity recognition (n), multi-word unit chunking for the parser (m), or parsing (p).
  • +If you're using the docker container then follow these instructions. +

    Frog can be used from Python through the python-frog binding, which -has to be obtained separately unless you are using LaMachine. A python-frog example -is shown below:

    +can be downloaded and installed by running pip install python-frog.
     import frog
    @@ -188,9 +187,8 @@ 

    Usage instructions: Making Frog leap

    If you want to connect to the Frog server using Python, then you can use the -Frog client included in PyNLPl -(also included as part of LaMachine).

    +Frog client included in PyNLPl. +pip install pynlpl.

     from pynlpl.clients.frogclient import FrogClient
    @@ -216,8 +214,6 @@ 

    Usage instructions: Making Frog leap

    Machiel Molenaar developed a Frog client for Go, aptly named gorf.

    -

    Notice: we are in the process of writing a reference guide for Frog that explains all options in detail.

    -
    diff --git a/style/lamalayout.css b/style/lamalayout.css index 4d966052..7d1b82bb 100644 --- a/style/lamalayout.css +++ b/style/lamalayout.css @@ -116,6 +116,15 @@ h1#title { min-height: 87px; margin-top: -30px; } +#huclogo { + display: block; + background: url(logo-knaw-huc.png); + background-size: 113px 90px; + width: 113px; + height: 90px; + min-width: 113px; + min-height: 90px; +} #lamalogo { position: absolute; display: block; diff --git a/style/logo-knaw-huc.png b/style/logo-knaw-huc.png new file mode 100644 index 00000000..3d20881a Binary files /dev/null and b/style/logo-knaw-huc.png differ