MegEngine / Models

采用MegEngine实现的各种主流深度学习模型
Other
303 stars 99 forks source link

开源之夏:MegEngine 补充跨模态模型的实现——BigSleep #122

Closed Asthestarsfalll closed 2 years ago

Asthestarsfalll commented 2 years ago

参考实现 big-sleep

Asthestarsfalll commented 2 years ago

使用如下测试代码:

dream = Imagine(
    text = "fire in the sky",
    lr = 5e-2,
    save_every = 25,
    save_progress = True,
    image_size=128
)

dream()

图像迭代过程: fire_in_the_sky 整个训练过程花费四小时,后面变化不大,由于最开始生成图像不太好(一只红色的鸟,背景为黑色),最终效果一般,但是可以看到云层的效果。 参考代码效果: 第一张: image 中间过程: image 后面变化不大,最终效果: image

Zhiy-Zhang commented 2 years ago

LGTM