fix: raise segment_seconds max from 4s to 30s
Hardcoded max of 4.0 prevented using full 8s clips. Raised to 30s. Also bumped default from 1.0 to 2.0 as a more sensible starting point. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -307,7 +307,7 @@ class SelvaBigvganTrainer:
|
|||||||
}),
|
}),
|
||||||
"batch_size": ("INT", {"default": 4, "min": 1, "max": 32}),
|
"batch_size": ("INT", {"default": 4, "min": 1, "max": 32}),
|
||||||
"segment_seconds": ("FLOAT", {
|
"segment_seconds": ("FLOAT", {
|
||||||
"default": 1.0, "min": 0.25, "max": 4.0, "step": 0.25,
|
"default": 2.0, "min": 0.25, "max": 30.0, "step": 0.25,
|
||||||
"tooltip": "Audio segment length per training sample in seconds.",
|
"tooltip": "Audio segment length per training sample in seconds.",
|
||||||
}),
|
}),
|
||||||
"lambda_l2sp": ("FLOAT", {
|
"lambda_l2sp": ("FLOAT", {
|
||||||
|
|||||||
Reference in New Issue
Block a user