Resizing the embedding table for fine-tuning is pretty awkward. We'd rather have some way of making sure that novel words can get a unique representation, even from a fixed-size embedding table. The hashing trick achieves this.
LLMS
-
Embedding Table Strategy: Frequent Words and Shared Vectors
By
–
Let's say we have 10k rows in the embedding table. In a standard embedding table, you give each of the 9999 most frequent words their own vector, and have all the others share the last vector.
-
Improving Vector Representation for Unknown Words in NLP
By
–
This is kind of weird, if you think about it. The unknown words together will be more frequent than the 9998th most frequent term. So the fidelity of representation isn't being distributed well. How can we give the unknowns more vectors?
-
Word representations learning for smaller datasets and per-token decisions
By
–
For language modelling and translation, word pieces are the standard way to address this. But for smaller datasets, especially where the decisions need to be made on a per-token basis, it's very helpful to learn representations for words, rather than characters or word pieces.
-
Unbounded Vocabularies and Fixed-Size Embedding Tables Explained
By
–
The basic motivation is that vocabularies are unbounded, but embedding tables can only be a fixed size. If you know your training data matches up to your test data well, this isn't such a big deal for most applications. If it's rare at training time, it'll be rare at test time.
-
ChatGPT: Millions of Linguists Working on Language Model
By
–
Imagine millions of linguists working for decades on an extremely complex model of language based on all the text ever written. That’s essentially what ChatGPT is.
-

Petals Creates Free Distributed Network for Running Text-Generating AI
By
–
Cool article from @Kyle_L_Wiggers @TechCrunch about Petals by @BigscienceW https://
techcrunch.com/2022/12/20/pet
als-is-creating-a-free-distributed-network-for-running-text-generating-ai
… -
Stanford’s PubMedGPT Medical Diagnostic Performance Evaluation
By
–
I tried @stanford
's new PubMedGPT with a medical case study to diagnose, but it doesn't rly work well yet Without being trained on medical data, ChatGPT got pretty far: suggesting a chest x-ray or CT scan, and possibly a bronchoscopy https://
ncbi.nlm.nih.gov/books/NBK50002
4/
… -

BLOOM+1 Performance on Multilingual Prompting Benchmarks
By
–
I wonder how well BLOOM+1 would do on the multilingual prompting benchmarks proposed here: