Comfy-Org / Comfy-Org/ComfyUI

[Typo] Possible error in model_type from LTXV base model

Open
#6,728 0 comments 0 reactions 0 assignees View on GitHub
Potential Bug
Dominant language
Python
Stars
133k
Forks
15.7k
Avg merge
1d 10h
Merged PRs (30d)
153

Description

### Expected Behavior

Maybe I'm wrong but the `model_type` from from the LTXV class init (`model_base.py`) is not `ModelType.FLUX` but `ModelType.FLOW` ?
```
class LTXV(BaseModel):
def __init__(self, model_config, model_type=ModelType.FLOW, device=None):
super().__init__(model_config, model_type, device=device, unet_model=comfy.ldm.lightricks.model.LTXVModel) #TODO
```

### Actual Behavior

The current implementation is:
```
class LTXV(BaseModel):
def __init__(self, model_config, model_type=ModelType.FLUX, device=None):
super().__init__(model_config, model_type, device=device, unet_model=comfy.ldm.lightricks.model.LTXVModel) #TODO
```

### Steps to Reproduce

Nothing

### Debug Logs

```powershell
Nothing
```

### Other

_No response_

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.