llmcompressor.modifiers.modifier
Modifier
Bases: ModifierInterface
, HooksMixin
A base class for all modifiers to inherit from. Modifiers are used to modify the training process for a model. Defines base attributes and methods available to all modifiers
Lifecycle: 1. initialize 2. on_event -> * on_start if self.start <= event.current_index * on_end if self.end >= event.current_index 5. finalize
Parameters:
Name | Type | Description | Default |
---|---|---|---|
index | The index of the modifier in the list of modifiers for the model | required | |
group | The group name for the modifier | required | |
start | The start step for the modifier | required | |
end | The end step for the modifier | required | |
update | The update step for the modifier | required |
Source code in src/llmcompressor/modifiers/modifier.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
|
finalized
property
Returns:
Type | Description |
---|---|
bool | True if the modifier has been finalized |
initialized
property
Returns:
Type | Description |
---|---|
bool | True if the modifier has been initialized |
finalize(state, **kwargs)
Finalize the modifier for the given model and state.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
state | State | The current state of the model | required |
kwargs | Additional arguments for finalizing the modifier | {} |
Raises:
Type | Description |
---|---|
RuntimeError | if the modifier has not been initialized |
Source code in src/llmcompressor/modifiers/modifier.py
initialize(state, **kwargs)
Initialize the modifier for the given model and state.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
state | State | The current state of the model | required |
kwargs | Additional arguments for initializing the modifier | {} |
Raises:
Type | Description |
---|---|
RuntimeError | if the modifier has already been finalized |
Source code in src/llmcompressor/modifiers/modifier.py
on_end(state, event, **kwargs)
on_end is called when the modifier ends and must be implemented by the inheriting modifier.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
state | State | The current state of the model | required |
event | Event | The event that triggered the end | required |
kwargs | Additional arguments for ending the modifier | {} |
Source code in src/llmcompressor/modifiers/modifier.py
on_event(state, event, **kwargs)
on_event is called whenever an event is triggered
Parameters:
Name | Type | Description | Default |
---|---|---|---|
state | State | The current state of the model | required |
event | Event | The event that triggered the update | required |
kwargs | Additional arguments for updating the model | {} |
Source code in src/llmcompressor/modifiers/modifier.py
on_finalize(state, **kwargs)
on_finalize is called on modifier finalization and must be implemented by the inheriting modifier.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
state | State | The current state of the model | required |
kwargs | Additional arguments for finalizing the modifier | {} |
Returns:
Type | Description |
---|---|
bool | True if the modifier was finalized successfully, False otherwise |
Source code in src/llmcompressor/modifiers/modifier.py
on_initialize(state, **kwargs)
abstractmethod
on_initialize is called on modifier initialization and must be implemented by the inheriting modifier.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
state | State | The current state of the model | required |
kwargs | Additional arguments for initializing the modifier | {} |
Returns:
Type | Description |
---|---|
bool | True if the modifier was initialized successfully, False otherwise |
Source code in src/llmcompressor/modifiers/modifier.py
on_start(state, event, **kwargs)
on_start is called when the modifier starts and must be implemented by the inheriting modifier.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
state | State | The current state of the model | required |
event | Event | The event that triggered the start | required |
kwargs | Additional arguments for starting the modifier | {} |
Source code in src/llmcompressor/modifiers/modifier.py
on_update(state, event, **kwargs)
on_update is called when the model in question must be updated based on passed in event. Must be implemented by the inheriting modifier.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
state | State | The current state of the model | required |
event | Event | The event that triggered the update | required |
kwargs | Additional arguments for updating the model | {} |
Source code in src/llmcompressor/modifiers/modifier.py
should_end(event)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
event | Event | The event to check if the modifier should end | required |
Returns:
Type | Description |
---|---|
True if the modifier should end based on the given event |
Source code in src/llmcompressor/modifiers/modifier.py
should_start(event)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
event | Event | The event to check if the modifier should start | required |
Returns:
Type | Description |
---|---|
bool | True if the modifier should start based on the given event |
Source code in src/llmcompressor/modifiers/modifier.py
update_event(state, event, **kwargs)
Update modifier based on the given event. In turn calls on_start, on_update, and on_end based on the event and modifier settings. Returns immediately if the modifier is not initialized
Parameters:
Name | Type | Description | Default |
---|---|---|---|
state | State | The current state of sparsification | required |
event | Event | The event to update the modifier with | required |
kwargs | Additional arguments for updating the modifier | {} |
Raises:
Type | Description |
---|---|
RuntimeError | if the modifier has been finalized |