Pinned Loading
-
DataStructuresForPython
DataStructuresForPython PublicNeatly written data structures in Python! With Tests! Feel feel to use this as-is, or as a base for your own implementation
Python 2
-
neuralmagic/sparseml
neuralmagic/sparseml PublicLibraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models
-
vllm-project/vllm
vllm-project/vllm PublicA high-throughput and memory-efficient inference and serving engine for LLMs
-
vllm-project/llm-compressor
vllm-project/llm-compressor PublicTransformers-compatible library for applying various compression algorithms to LLMs for optimized deployment with vLLM
-
neuralmagic/compressed-tensors
neuralmagic/compressed-tensors PublicA safetensors extension to efficiently store sparse quantized tensors on disk
503 contributions in the last year
Day of Week | March Mar | April Apr | May May | June Jun | July Jul | August Aug | September Sep | October Oct | November Nov | December Dec | January Jan | February Feb | March Mar | ||||||||||||||||||||||||||||||||||||||||
Sunday Sun | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Monday Mon | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Tuesday Tue | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Wednesday Wed | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Thursday Thu | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Friday Fri | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Saturday Sat |
Activity overview
Contribution activity
March 2025
Created 1 commit in 1 repository
Opened 4 pull requests in 3 repositories
neuralmagic/compressed-tensors
1
open
1
merged
-
Some fixes for AWQ
This contribution was made on Mar 7
-
Update: CompressedLinear to decompress once
This contribution was made on Mar 4
neuralmagic/axolotl
1
open
-
Init
This contribution was made on Mar 4
axolotl-ai-cloud/axolotl
1
closed
-
SFT integration
This contribution was made on Mar 4
Reviewed 4 pull requests in 2 repositories
neuralmagic/compressed-tensors
2 pull requests
-
Some fixes for AWQ
This contribution was made on Mar 7
-
Update: CompressedLinear to decompress once
This contribution was made on Mar 5
vllm-project/llm-compressor
2 pull requests
-
fixing reproducibility of lmeval tests
This contribution was made on Mar 7
-
Remove MonkeyPatch for GPUs
This contribution was made on Mar 5
Created an issue in neuralmagic/compressed-tensors that received 1 comment
Optimize CompressedLinear
to Decompress Weights Only Once
Description
The CompressedLinear
class currently decompresses its weight tensor on every forward
pass, leading to unnecessary computational overhea…