Unverified Commit 06ee4db3 authored by Sayak Paul's avatar Sayak Paul Committed by GitHub
Browse files

[Chore] add dummy lora attention processors to prevent failures in other libs (#8777)

add dummy lora attention processors to prevent failures in other libs
parent 84bbd2f4
......@@ -2775,6 +2775,26 @@ class PAGCFGIdentitySelfAttnProcessor2_0:
return hidden_states
class LoRAAttnProcessor:
def __init__(self):
pass
class LoRAAttnProcessor2_0:
def __init__(self):
pass
class LoRAXFormersAttnProcessor:
def __init__(self):
pass
class LoRAAttnAddedKVProcessor:
def __init__(self):
pass
ADDED_KV_ATTENTION_PROCESSORS = (
AttnAddedKVProcessor,
SlicedAttnAddedKVProcessor,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment