File size: 716 Bytes
3c258f1
 
 
 
 
 
e3a23db
3c258f1
 
 
23900aa
3c258f1
 
 
 
b0a0635
 
 
 
 
3c258f1
 
e3a23db
3c258f1
e3a23db
 
3c258f1
e3a23db
 
 
 
 
 
 
 
 
 
 
 
 
 
b0a0635
 
 
 
 
 
3c258f1
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
---
title: Seed Crawl Annotator
emoji: 🐨
colorFrom: red
colorTo: yellow
sdk: gradio
sdk_version: 5.9.1
app_file: app.py
pinned: false
license: mit
hf_oauth: true
---

# Annotate Web Languages

## Requirements

- Python 3.10 (same as HF space)
- Chromium

## Usage

Run the Gradio app
```bash
# auto reload
gradio app.py

# manual reload
python app.py
```

Install with virtual conda env:
```bash
conda create -n seed-crawl-annotator python=3.10
conda activate seed-crawl-annotator
pip install -r requirements.txt
```

Build Docker image
```bash
docker build -t seed-crawl-annotator  .
```

Run app within container
```bash
docker run --rm -p 7860:7860 -e HF_TOKEN=$HF_TOKEN seed-crawl-annotator gradio app.py

```