File size: 1,542 Bytes
180e2be
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
license: apache-2.0
tags:
  - conda-env
  - reproducibility
  - avsqwen
  - qwen2.5-omni
pretty_name: AVSQwen Conda Environments
---

# AVSQwen Packed Conda Environments

Pre-packed conda environments for reproducing [AVSQwen](https://github.com/<your-org>/AVSQwen)
training & inference. Extract and activate; **no `pip install` needed**.

| File | Size | Purpose |
|---|---|---|
| `avsqwen_swift.tar.gz` | 4.11 GB | Main env: ms-swift + vllm + GRPO training + inference |
| `cod.zip` | 8.42 GB | Auxiliary env: COD / dataset preprocessing |

## Usage

```bash
# Download (or: `huggingface-cli download ...`)
huggingface-cli download Vegetabot/AVSQwen-Envs --repo-type dataset --local-dir envs/

# 1. avsqwen_swift (main env: ms-swift + vllm + GRPO training + inference)
mkdir -p ~/envs/avsqwen_swift
tar -xzf envs/avsqwen_swift.tar.gz -C ~/envs/avsqwen_swift
source ~/envs/avsqwen_swift/bin/activate
conda-unpack || true        # fix shebangs if the archive was built via conda-pack

# 2. cod (auxiliary env for COD / dataset preprocessing)
mkdir -p ~/envs/cod
unzip envs/cod.zip -d ~/envs/cod
source ~/envs/cod/bin/activate
conda-unpack || true
```

> These archives target **linux-x86_64 + CUDA 12.x**. If your system differs,
> rebuild from the `pip` / `conda` specs in the AVSQwen repo instead.

## Integrity

SHA-256 checksums (also stored in `SHA256SUMS.txt`):

```
34fc367009ff8291f99cceb79181ca3cd52b2fae9f15947153efb6669edfe320  avsqwen_swift.tar.gz
ae62fe9801981716404d5e310b98b17a802fe4e29ff5f8373b810d50a6d662a8  cod.zip
```