mirror of
https://github.com/exo-explore/exo.git
synced 2026-01-21 20:39:59 -05:00
Use 10% sync steps
This commit is contained in:
@@ -38,7 +38,7 @@ class ImageModelConfig(BaseModel):
|
||||
|
||||
# Inference parameters
|
||||
default_steps: dict[str, int] # {"low": X, "medium": Y, "high": Z}
|
||||
num_sync_steps_factor: float # Fraction of medium steps for sync phase
|
||||
num_sync_steps_factor: float # Fraction of steps for sync phase
|
||||
|
||||
# Feature flags
|
||||
uses_attention_mask: bool # True for Fibo
|
||||
|
||||
@@ -43,6 +43,6 @@ FLUX_DEV_CONFIG = ImageModelConfig(
|
||||
patch_size=2,
|
||||
vae_scale_factor=8,
|
||||
default_steps={"low": 10, "medium": 25, "high": 50},
|
||||
num_sync_steps_factor=0.125, # ~3 sync steps for medium (25 steps)
|
||||
num_sync_steps_factor=0.1, # ~3 sync steps for medium (25 steps)
|
||||
uses_attention_mask=False,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user