https://github.com/prefix-dev/ai-forge
AI examples for pixi & rattler-build
https://github.com/prefix-dev/ai-forge
Last synced: 11 months ago
JSON representation
AI examples for pixi & rattler-build
- Host: GitHub
- URL: https://github.com/prefix-dev/ai-forge
- Owner: prefix-dev
- Created: 2024-02-13T19:49:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-09T06:20:26.000Z (almost 2 years ago)
- Last Synced: 2025-03-28T10:11:39.625Z (12 months ago)
- Language: Jupyter Notebook
- Size: 205 KB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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 ...