-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate CLI to
simple_parsing
, allowing for YAML based configs (#92)
* Initial commit * Formatting * PromptCollator -> PromptDataset * elk elicit seems to work again now * Remove vestigial argparse code * Fix bugs * Added stochastic rounding test * Remove typo * Add pytest.mark.cpu
- Loading branch information
1 parent
5bd59e4
commit 946372d
Showing
17 changed files
with
376 additions
and
542 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
from .extraction import PromptCollator | ||
from .extraction import extract_hiddens, ExtractionConfig, PromptDataset |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from .extraction import extract_hiddens | ||
from .prompt_collator import PromptCollator | ||
from .extraction import ExtractionConfig, extract_hiddens | ||
from .prompt_dataset import PromptDataset, PromptConfig |
Oops, something went wrong.