Update config.py
Browse files
config.py
CHANGED
@@ -334,9 +334,15 @@ class CompressionConfig:
|
|
334 |
|
335 |
# Dataset configuration
|
336 |
dataset_name: str = "wikitext"
|
337 |
-
dataset_config: str = "wikitext-
|
338 |
dataset_split: str = "test"
|
339 |
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
# Memory and system settings
|
341 |
clear_cache_between_runs: bool = True
|
342 |
use_memory_snapshot: bool = True
|
|
|
334 |
|
335 |
# Dataset configuration
|
336 |
dataset_name: str = "wikitext"
|
337 |
+
dataset_config: str = "wikitext-103-raw-v1"
|
338 |
dataset_split: str = "test"
|
339 |
|
340 |
+
# Model configuration for publication
|
341 |
+
model_name: str = "gpt2"
|
342 |
+
test_sequence_lengths: List[int] = field(default_factory=lambda: [2048, 4096, 8192, 16384])
|
343 |
+
downstream_tasks: List[str] = field(default_factory=lambda: ["perplexity", "gsm8k", "mmlu"])
|
344 |
+
baseline_methods: List[str] = field(default_factory=lambda: ["h2o", "streamingllm", "snapkv"])
|
345 |
+
|
346 |
# Memory and system settings
|
347 |
clear_cache_between_runs: bool = True
|
348 |
use_memory_snapshot: bool = True
|