ylhsieh

Results 2 issues of ylhsieh

Code snippet ``` # pretrained_vectors is a numpy ndarray of size 10000 x 300 init_pretrained = Array(pretrained_vectors) layers = [ # No error # LookupTable(vocab_size=10000, embedding_dim=300, init=GlorotUniform()), # Error LookupTable(vocab_size=10000,...

bug
ready

Hi, I have a model from huggingface hub that is already in AWQ format, i.e., the model consists of `WQLinear_GEMM` modules. It appears that using `llama_exporter.py` is not suitable for...