aboutsummaryrefslogtreecommitdiff
path: root/readme.md
blob: 0dc64922e2d30c947f552e59d44355feba5bffb3 (plain) (blame)
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
# SWR2-ACR

Automatic speech recognition model for the seminar spoken word
recogniton 2 (SWR2) in the summer term 2023.

# Installation

## Installing poetry

    // installing poetry with the provided install script
    curl -sSL https://install.python-poetry.org | python3 -

    // adding poetry to your path
    // Linux
    echo export PATH="$HOME/.local/bin:$PATH" >> ~/.bashrc && source ~/.bashrc

    // Mac
    echo export PATH="$HOME/.local/bin:$PATH" >> ~/.zshrc && source ~/.zshrc

## Running on cpu or m1 gpu

    poetry lock && poetry install --with cpu

## Running on nvidia gpu

    poetry lock && poetry install --with gpu

# Usage

## Training

Train using the provided train script:

    poetry run train --data PATH/TO/DATA --lr 0.01 

## Evaluation

## Inference

    poetry run recognize --data PATH/TO/FILE

## CI

You can use the Makefile to run these commands manually

    make format

    make lint