File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[project ]
22name = " llm-dna"
3- version = " 0.2.2 "
3+ version = " 0.2.3 "
44description = " Extract LLM DNA vectors — low-dimensional representations that capture functional behavior and model evolution."
55authors = [{ name = " LLM-DNA Project" }]
66license = { file = " LICENSE" }
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ class DNAExtractionConfig:
3030 probe_set : str = "rand"
3131 max_samples : int = 100
3232 data_root : str = "./data"
33- extractor_type : str = "embedding" # Only "embedding" is supported since v0.3.0
33+ extractor_type : str = "embedding" # Only "embedding" is supported since v0.2.3
3434 dna_dim : int = 128
3535 reduction_method : str = "random_projection"
3636 embedding_merge : str = "concat"
@@ -553,7 +553,7 @@ def calc_dna(config: DNAExtractionConfig) -> DNAExtractionResult:
553553 if config .extractor_type != "embedding" :
554554 raise ValueError (
555555 f"Unsupported extractor_type '{ config .extractor_type } ' for calc_dna. "
556- "Only 'embedding' is supported. Hidden-state extraction was removed in v0.3.0 ; "
556+ "Only 'embedding' is supported. Hidden-state extraction was removed in v0.2.3 ; "
557557 "all models now use the unified text-response embedding pipeline."
558558 )
559559
You can’t perform that action at this time.
0 commit comments