You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: animatediff/nodes_scheduling.py
+33-2Lines changed: 33 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
fromtypingimportUnion
2
2
3
3
from .documentationimportregister_description, short_desc, coll, DocHelper
4
-
from .schedulingimport (evaluate_prompt_schedule, evaluate_value_schedule, TensorInterp, PromptOptions,
4
+
from .schedulingimport (evaluate_prompt_schedule, evaluate_value_schedule, extract_cond_from_schedule, TensorInterp, PromptOptions,
5
5
verify_key_value)
6
6
from .utils_modelimportBIGMAX
7
7
from .loggerimportlogger
@@ -24,6 +24,10 @@
24
24
desc_value_key= {'value_key': 'Key to use for value schedule in Prompt Scheduling node. Can only contain a-z, A-Z, 0-9, and _ characters. In Prompt Scheduling, keys can be referred to as `some_key`, where the key is surrounded by ` characters.'}
25
25
desc_prev_replace= {'prev_replace': 'OPTIONAL, other values_replace can be chained.'}
26
26
27
+
desc_input_conditioning= {'conditioning': 'Encoded prompts. The output of a Prompt Scheduling node.'}
28
+
desc_index= {'index': 'The index to extract. Must be within the range [0,N] where N is the length of scheduled prompts.'}
29
+
desc_output_conditioning_single= {'CONDITIONING': 'The single step conditioning from the schedule.'}
0 commit comments