This commit is contained in:
Daniel Han 2025-03-04 13:26:47 -08:00
commit 6208d99833
2 changed files with 2 additions and 2 deletions

View file

@ -138,7 +138,7 @@ def get_lora_parameters_bias(proj):
# if not hasattr(proj, "disable_adapters") or proj.disable_adapters or proj.merged:
if getattr(proj, "disable_adapters", True) or proj.merged:
return W, getattr(W, "quant_state", None), None, None, None, bias
return W, getattr(W, "quant_state", None), None, None, None, base_layer.bias
pass
adapter = getattr(proj, "active_adapters", None)

View file

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "2025.3.2"
__version__ = "2025.3.3"
__all__ = [
"SUPPORTS_BFLOAT16",