-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于训练syncnet 这块 我结合了deepseek 直接用512的图片训练 #92
Comments
你训练出来可用的模型了吗 |
所以 别切换vae可能 显存爆炸
修改
resolution: 256 修改成512 然后数据处理去 resize 脸到512 。 ... 我回头测试下 |
endofD
changed the title
关于训练syncnet 这块 我结合了deepseek 步骤感觉ok
关于训练syncnet 这块 我结合了deepseek 直接用512的图片训练
Jan 19, 2025
data_processing_pipeline.sh 里面直接 能修改 分辨率 提取
--resolution 256 \ 修改成512 |
回头测试下 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
直接用512的图片训练
scripts/train_syncnet.py: 脚本用的是 configs/syncnet/syncnet_16_pixel.yaml
visual_encoder: # input (48, 128, 256)
in_channels: 48
block_out_channels: [64, 128, 256, 256, 512, 1024, 2048, 2048]
downsample_factors: [[1, 2], 2, 2, 2, 2, 2, 2, 2]
attn_blocks: [0, 0, 0, 0, 0, 0, 0, 0]
dropout: 0.0
修改
visual_encoder: # input (48, 128, 512)
in_channels: 48
block_out_channels: [64, 128, 256, 256, 512, 1024, 2048, 2048,2048]
downsample_factors: [[1, 2], 2, 2, 2, 2, 2, 2, 2, 2]
attn_blocks: [0, 0, 0, 0, 0, 0, 0, 0,0]
dropout: 0.0
resolution: 256 修改成512
然后数据处理去 resize 脸到512 。
The text was updated successfully, but these errors were encountered: