Dirk Groeneveld
Dirk Groeneveld
When pickling a lot of small objects in parallel, I see a lot of contention on `internal.GRL`, especially in `functions.scala:29`.
### 🐛 Describe the bug `BeakerExecutor` checks for a dirty working directory before launching, because it requires that all (most) changes are available on GitHub. But if you make a...
In #315, we slowed down the beaker workspace so as to not overwhelm the Beaker service. Beaker has an issue where it is quickly overwhelmed with metadata requests: https://github.com/allenai/beaker/issues/2238 When...
The whole det_hash functionality should just always look for a member named `VERSION` and use it.
Motivation: Tango's Workspace concept makes it possible to move your workflow from one machine to another, but this breaks down when you reference file on the local file system in...
Motivation: We have the first remote workspace, but we still feel mixed about it. Also, it's not useful for people that don't use WandB. This is a different workspace that...
In code: ```Python import transformers t = transformers.AutoModel.from_pretrained("gpt2") twp = make_prefix_transformer(t, prefix_length=3) ``` In config files: ```Jsonnet { model: { type: "transformers::with_soft_prompt", prompt_length: 3, model: { type: "transformers::AutoModelForCausalLM::from_pretrained", pretrained_model_name_or_path: "gpt2"...