feat: Change refinerStart default to 0.8

This is the recommended value according to the paper.
This commit is contained in:
blessedcoolant 2023-08-15 11:14:36 +12:00 committed by psychedelicious
parent 6eaaa75a5d
commit d3d8b71c67
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ const ParamSDXLRefinerStart = () => {
);
const handleReset = useCallback(
() => dispatch(setRefinerStart(0.7)),
() => dispatch(setRefinerStart(0.8)),
[dispatch]
);

View File

@ -33,7 +33,7 @@ const sdxlInitialState: SDXLInitialState = {
refinerScheduler: 'euler',
refinerPositiveAestheticScore: 6,
refinerNegativeAestheticScore: 2.5,
refinerStart: 0.7,
refinerStart: 0.8,
};
const sdxlSlice = createSlice({