File size: 637 Bytes
3bf0142
9c801fe
 
3bf0142
9c801fe
 
 
 
3bf0142
 
9c801fe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
license: apache-2.0
title: KenLM UI
sdk: docker
emoji: πŸ“–
colorFrom: green
colorTo: gray
short_description: 'Score texts and build KenLMs'
---

# KenLM UI

## Install

```shell
uv venv --python 3.12.9

source .venv/bin/activate

uv pip install -r requirements.txt

uv pip install https://github.com/kpu/kenlm/archive/master.zip
```

## Build KenLM in a container

```
git clone https://github.com/kpu/kenlm/

mkdir kenlm/build
cd kenlm/build

cmake ..
make -j2
```

## Build image

```shell
docker build -t kenlm-trainer-gradio .
```

## Run

```shell
docker run -it --rm -p 8888:7860 --name kenlm-trainer kenlm-trainer-gradio
```