-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Predict learning trajectories conditioned on model embeddings | ||
|
||
labels: experimental, contrastive_learning, llm, code_gen, public_good, open_source, open_ai | ||
|
||
* ContrastiveLoss(TEXT(model_config), TEXT(model_code)) -> ModelEmbedding space | ||
* wandb dataset: conditioning on ModelEmbedding and some text representation of the early training history, predict the training history out to some horizon into the future | ||
|
||
pilot study: | ||
|
||
* some trivial model family paired with a problem we can train quickly and easily, like MNIST | ||
* generate configs representing a hyperparameter sweep | ||
* wait... wandb has a sweep feature built in, right? let's just use that. | ||
* generate some dense region of hyperparameter space to train on | ||
* goal: does this strategy at least work for a trivial problem? | ||
* if yes, use some more sophisticated models and see what happens | ||
* use (LoRA? on) a 7B codegen base model to parameterize the contrastively-learned ModelEmbedding space |