Views
No views yet
Note: This is the v2 version with improved conversion optimizations compared to the original venus conversion.
| Property | Value |
|---|---|
| Original Model | Qwen/Qwen2.5-0.5B |
| Original Creator | Qwen Team (Alibaba) |
| Converted By | EdgeFlow |
| Architecture | Qwen2ForCausalLM |
| Parameters | 0.5B (494M) |
| Context Length | 32,768 tokens |
| License | Apache 2.0 |
| Format | Venus Binary (.venus) |
| Quantization | Q8_0 |
| Version | v2 (improved) |
1# Install the runtime
2pip install edgeflow
3
4# Run instantly (auto-downloads from this repo)
5edgeflow run edgeflow-ai/qwen2.5-0.5b-v2-venus --prompt "Hello world"1from edgeflow import VenusModel
2
3# Load the model
4model = VenusModel.from_pretrained("edgeflow-ai/qwen2.5-0.5b-v2-venus")
5
6# Generate text
7response = model.generate("Explain quantum computing in simple terms")
8print(response)qwen2.5-0.5b-v2-venus/
├── model.venus # The optimized Venus binary model (v2)
├── tokenizer.json # Tokenizer configuration
├── tokenizer_config.json
├── vocab.json
├── merges.txt
├── special_tokens_map.json
├── added_tokens.json
├── chat_template.jinja
└── README.md1@misc{qwen2.5,
2 title = {Qwen2.5: A Party of Foundation Models},
3 url = {https://qwenlm.github.io/blog/qwen2.5/},
4 author = {Qwen Team},
5 month = {September},
6 year = {2024}
7}