Skip to content

Commit

Permalink
Merge pull request #143 from cnukaus/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
SkalskiP authored Feb 6, 2025
2 parents 908e274 + fdd862b commit a5585b0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ To begin, install the model-specific dependencies. Since some models may have cl
we recommend creating a dedicated Python environment for each model.

```bash
pip install maestro[paligemma_2]
pip install "maestro[paligemma_2]"
```

### CLI
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@ we recommend creating a dedicated Python environment for each model.
=== "Florence-2"

```bash
pip install maestro[florence_2]
pip install "maestro[florence_2]"
```

=== "PaliGemma 2"

```bash
pip install maestro[paligemma_2]
pip install "maestro[paligemma_2]"
```

=== "Qwen2.5-VL"

```bash
pip install maestro[qwen_2_5_vl]
pip install "maestro[qwen_2_5_vl]"
pip install git+https://github.com/huggingface/transformers
```

Expand Down
2 changes: 1 addition & 1 deletion docs/models/florence_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Florence-2 is a lightweight vision-language model open-sourced by Microsoft unde
## Install

```bash
pip install maestro[florence_2]
pip install "maestro[florence_2]"
```

## Train
Expand Down
2 changes: 1 addition & 1 deletion docs/models/paligemma_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PaliGemma 2 is an updated and significantly enhanced version of the original Pal
## Install

```bash
pip install maestro[paligemma_2]
pip install "maestro[paligemma_2]"
```

## Train
Expand Down
4 changes: 2 additions & 2 deletions docs/models/qwen_2_5_vl.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Building on significant improvements over its predecessor, Qwen2-VL, the Qwen2.5
## Install

```bash
pip install maestro[qwen_2_5_vl]
pip install git+https://github.com/huggingface/transformers
pip install "maestro[qwen_2_5_vl]"
pip install "git+https://github.com/huggingface/transformers"
```

!!! warning
Expand Down

0 comments on commit a5585b0

Please sign in to comment.