Upload packed conda environments: README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- conda-env
|
| 5 |
+
- reproducibility
|
| 6 |
+
- avsqwen
|
| 7 |
+
- qwen2.5-omni
|
| 8 |
+
pretty_name: AVSQwen Conda Environments
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# AVSQwen Packed Conda Environments
|
| 12 |
+
|
| 13 |
+
Pre-packed conda environments for reproducing [AVSQwen](https://github.com/<your-org>/AVSQwen)
|
| 14 |
+
training & inference. Extract and activate; **no `pip install` needed**.
|
| 15 |
+
|
| 16 |
+
| File | Size | Purpose |
|
| 17 |
+
|---|---|---|
|
| 18 |
+
| `avsqwen_swift.tar.gz` | 4.11 GB | Main env: ms-swift + vllm + GRPO training + inference |
|
| 19 |
+
| `cod.zip` | 8.42 GB | Auxiliary env: COD / dataset preprocessing |
|
| 20 |
+
|
| 21 |
+
## Usage
|
| 22 |
+
|
| 23 |
+
```bash
|
| 24 |
+
# Download (or: `huggingface-cli download ...`)
|
| 25 |
+
huggingface-cli download Vegetabot/AVSQwen-Envs --repo-type dataset --local-dir envs/
|
| 26 |
+
|
| 27 |
+
# 1. avsqwen_swift (main env: ms-swift + vllm + GRPO training + inference)
|
| 28 |
+
mkdir -p ~/envs/avsqwen_swift
|
| 29 |
+
tar -xzf envs/avsqwen_swift.tar.gz -C ~/envs/avsqwen_swift
|
| 30 |
+
source ~/envs/avsqwen_swift/bin/activate
|
| 31 |
+
conda-unpack || true # fix shebangs if the archive was built via conda-pack
|
| 32 |
+
|
| 33 |
+
# 2. cod (auxiliary env for COD / dataset preprocessing)
|
| 34 |
+
mkdir -p ~/envs/cod
|
| 35 |
+
unzip envs/cod.zip -d ~/envs/cod
|
| 36 |
+
source ~/envs/cod/bin/activate
|
| 37 |
+
conda-unpack || true
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
> These archives target **linux-x86_64 + CUDA 12.x**. If your system differs,
|
| 41 |
+
> rebuild from the `pip` / `conda` specs in the AVSQwen repo instead.
|
| 42 |
+
|
| 43 |
+
## Integrity
|
| 44 |
+
|
| 45 |
+
SHA-256 checksums (also stored in `SHA256SUMS.txt`):
|
| 46 |
+
|
| 47 |
+
```
|
| 48 |
+
34fc367009ff8291f99cceb79181ca3cd52b2fae9f15947153efb6669edfe320 avsqwen_swift.tar.gz
|
| 49 |
+
ae62fe9801981716404d5e310b98b17a802fe4e29ff5f8373b810d50a6d662a8 cod.zip
|
| 50 |
+
```
|