-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# A few AI examples for [pixi](pixi.sh) | ||
|
||
All of these examples use `pixi` - our new package manager. | ||
Pixi is based on the (vast) conda & conda-forge ecosystem. | ||
|
||
Pixi also comes with lockfiles and a little workflow / task running system (similar to `taskfile` or `make`). That makes it very easy to run these examples. | ||
|
||
## Installation | ||
|
||
To install `pixi`, run the following command: | ||
|
||
```bash | ||
curl -fsSL https://pixi.sh/install.sh | bash | ||
``` | ||
|
||
## Whisper | ||
|
||
Whisper does text-to-speech. To run it locally, just navigate to the `whisper` directory and run: | ||
|
||
```bash | ||
pixi run start # live transcription using base-en | ||
``` | ||
|
||
Or if you want to transscribe a file: | ||
|
||
```bash | ||
pixi run convert myfile.mp3 # convert the file from any audio format to `output.wav` using ffmpeg | ||
# then | ||
pixi run transcribe -f output.wav # transcribe the file using base-en | ||
``` | ||
|
||
## Llama.cpp | ||
|
||
Follows ... | ||
|
||
## Resnet | ||
|
||
Follows ... |