README.md 327 Bytes
Newer Older
1
2
3
4
5
# OTTER: Multi-modal In-context Instruction Tuning.

### Prepare the environment

```sh
6
pip install otter_ai
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
```

### Start evaluation

#### Slurm

```sh
cd $root
python run.py configs/multimodal/tasks.py --mm-eval --slurm -p $PARTITION
```

#### PyTorch


```sh
cd $root
python run.py configs/multimodal/tasks.py --mm-eval
```