Views
No views yet
Qwen/Qwen3-Coder-30B-A3B-Instruct, converted to MLX and quantized for
Apple Silicon.Qwen/Qwen3-Coder-30B-A3B-Instructvsan/tiny-pickle-v3-coder-LoRAvsan/tiny-pickle-v3-coderpip install -U mlx-lmmlx_lm.chat --model mlx-community/Tiny-Pickle-v3-Coder-4bit1mlx_lm.generate \
2 --model mlx-community/Tiny-Pickle-v3-Coder-4bit \
3 --prompt "Write a tested Python implementation of an LRU cache." \
4 --max-tokens 800| Property | Result |
|---|---|
| Hardware | Apple M1 Max |
| Unified memory | 64 GB |
| Model format | MLX 4-bit affine |
| Quantization group size | 64 |
| Prompt length | 118 tokens |
| Prompt processing speed | 119.328 tokens/s |
| Generated length | 748 tokens |
| Generation speed | 63.481 tokens/s |
| Peak unified memory | 17.393 GB |
You are reviewing a Python async web crawler. Implement a complete, production-quality crawler that uses asyncio and aiohttp; limits global concurrency to 20; limits each domain to 2 concurrent requests; respects robots.txt; retries HTTP 429 and 5xx responses with exponential backoff and jitter; avoids duplicate URLs; normalizes relative links; restricts crawling to the starting domain; supports cancellation; records failures without stopping the crawl; and includes pytest tests using mocked HTTP responses. Return one self-contained Python module followed by the tests.