We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3241205 commit 91eb9deCopy full SHA for 91eb9de
src/llmcompressor/entrypoints/oneshot.py
@@ -125,7 +125,7 @@ def __init__(
125
self.output_dir = output_dir
126
127
# initialize the model and processor
128
- pre_process(model_args)
+ pre_process(model_args, dataset_args)
129
130
# Set instance attributes
131
self.model = self.model_args.model
src/llmcompressor/entrypoints/utils.py
@@ -16,10 +16,10 @@
16
from transformers.utils.quantization_config import CompressedTensorsConfig
17
18
from llmcompressor.args import (
19
+ DatasetArguments,
20
ModelArguments,
21
RecipeArguments,
22
TrainingArguments,
- DatasetArguments,
23
)
24
from llmcompressor.core import reset_session
25
from llmcompressor.pytorch.model_load.helpers import parse_dtype
0 commit comments