Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2026-09-14 12:11:52 +02:00
parent cb7bc0faca
commit 516b9f4a45
4 changed files with 9 additions and 15 deletions
-6
View File
@@ -2,9 +2,7 @@
## Short-term
- MiniMax: Create pre-quants for MiniMax-H3-Turbo, MiniMax-H3-Pruned-Turbo
- Control tab verify overrides handling, @vladmandic
- LTX: Create pre-quant for LTX-2.5
- LTX: Implement LTX2DFRPipeline
- ROCm: v10
- Video: unify execution path for ui and api
@@ -13,7 +11,6 @@
## Issues
- [Inpaint](https://discord.com/channels/1101998836328697867/1130536562422186044/1506850651035144322), @vladmandic
- [OpenVINO](https://github.com/vladmandic/sdnext/issues/4939), @vladmandic
## Features
@@ -29,9 +26,6 @@
### Roadmap
- Automated testing and integrate models repo
- [MiniMax VDN](https://huggingface.co/OpenVDN/vdn-minimax-h3)
- [MiniMax VSA](https://huggingface.co/FastVideo/FastVideo-FastH3-4-step-Preview-v1-VSA-DataFree)
- [MiniMax Nunchaku-Lite](https://huggingface.co/rootonchair/MiniMax-H3-nunchaku-lite-int4)
- Video upscaling: LTX-Upscaler
- Video upscaling: [MiniMax-Upscaler](https://huggingface.co/LBH-123-AI/Minimax_h3_latent_Upscaler)
- Video capabilities to processing tab, add RIFE, upscaling (once available)
+3 -3
View File
@@ -22,11 +22,11 @@ class SdVersion(enum.Enum):
class NetworkOnDisk:
def __init__(self, name, filename):
def __init__(self, name: str, filename: str):
self.shorthash = None
self.hash = None
self.name = name
self.filename = filename
self.name: str = name
self.filename: str = filename
if filename.startswith(shared.cmd_opts.lora_dir):
# strip("/") missed Windows's leading backslash after the slice; normalize separators
# so the registry key is one canonical form on every OS.
+5 -5
View File
@@ -27,11 +27,11 @@ warn_once = False
class CheckpointInfo:
def __init__(self, filename: str, name: str | None = None, sha: str | None = None, subfolder: str | None = None, model_type: str = 'checkpoint', folder: str | None = None):
self.name = name
self.hash = sha
self.filename = filename if filename is not None else 'none'
self.type = ''
self.subfolder = subfolder
self.filename: str = filename if filename is not None else 'none'
self.name: str = name if name is not None else ''
self.hash: str | None = sha
self.type: str = ''
self.subfolder: str | None = subfolder
relname = self.filename
app_path = os.path.abspath(paths.script_path)