cocktailpeanut / fluxgym

Dead simple FLUX LoRA training UI with LOW VRAM support
1.21k stars 100 forks source link

ae.safetensors vs ae.sft #47

Open gohan2091 opened 1 month ago

gohan2091 commented 1 month ago

Fluxgym asks for ae.sft but I have only ae.safetensors. Do I have to keep manually modifying the text in the GUI everytime renaming "sft" to "safetensors"?

JohnsonXi commented 1 month ago

sft and safetensors have no difference. You can change model name as sft or change model path as "path/to/ae.safetensors" in code.

gohan2091 commented 1 month ago

sft and safetensors have no difference. You can change model name as sft or change model path as "path/to/ae.safetensors" in code.

I already mentioned that I know I can change the code, but when I then make a change to a setting ,the code reverts back to sft file so I have to constantly keep renaming it if I make a change of setting...

sansbruhgaming commented 1 month ago

I already mentioned that I know I can change the code

You're not talking about the code, you're talking about the GUI. In the "app.py" file on line 204, you can change it from .sft to .safetensors.

gohan2091 commented 1 month ago

I already mentioned that I know I can change the code

You're not talking about the code, you're talking about the GUI. In the "app.py" file on line 204, you can change it from .sft to .safetensors.

ok that's good to know. Thank you!