JWargrave
JWargrave
Hi, there. I am new to `CLIP` and I've found that it really improves my development productivity. Thanks for your great work. But I have some problems when using `CLIP`...
Hi, there. Thank you for the great work! According to [fashion200k repo](https://github.com/xthan/fashion-200k#dataset), there are two versions of Fashion200k pictures, namely cropped detected images and original images, which one do you...
I want to fine-tune IP-adapter model with xformers, but I did not find the implementation of the xformers version corresponding to IPAdapterAttnProcessor2_0. I want to implement attention processor in xformers,...
configs/opensora-v1-2/train/stage1.py里的[这行](https://github.com/hpcaitech/Open-Sora/blob/bf4d6673af9407650b2ce6250debc2453b82c572/configs/opensora-v1-2/train/stage1.py#L29),为什么keep_prob有两个值,例如`102: ((1.0, 0.33), 27)`,这是什么意思?
I train open-sora on my own dataset, the `bucket_config` is as follows: ```python bucket_config = { "1080p":{12:(1.0,1)}, } ``` 49 steps have successfully trained, then the following error occurs: ```...
training configs are as follows: ```python # Dataset settings dataset = dict( type="VariableVideoTextDataset", transform_name="resize_crop", ) bucket_config = { "480p": {51: (1.0, 5), 102: (1.0, 3), 204: (1.0, 1)}, "720p": {17:(1.0,...
What is [module.attn_weight](https://github.com/guoqincode/Open-AnimateAnyone/blob/02d45006ff81b30093c9ede9f4097fe36074fa42/models/ReferenceNet_attention.py#L233) for? I don't see `attn_weight` being used anywhere else.
What is [module.attn_weight](https://github.com/MooreThreads/Moore-AnimateAnyone/blob/a914ef38aae3733c2f02f29853dd0593372e0cc9/src/models/mutual_self_attention.py#L302) for? I don't see `attn_weight` being used anywhere else.
改变`bucket_config`配置,有可能会导致一些莫名其妙的错误。 我用以下配置在我自己的视频数据集(大概7w多个视频)上训练,训了很久都很正常,没有报错。 ```python bucket_config = { "480p": {51: (1.0, 4), 102: (1.0, 2), 204: (1.0, 1)}, "720p": {17:(1.0, 2), 34:(1.0, 1)}, "1024": {17:(1.0, 2), 34:(1.0, 1)}, } ``` 但是如果我把配置改成如下,训了大约2个epoch后就会异常退出,且没有任何有效的错误信息: ```python...
### System Info / 系統信息 pip list结果如下(都已满足`requirements.txt`和`sat/requirements.txt`): ``` Package Version ------------------------ ----------- accelerate 1.1.1 aiofiles 23.2.1 aiohappyeyeballs 2.4.3 aiohttp 3.10.10 aiosignal 1.3.1 annotated-types 0.7.0 antlr4-python3-runtime 4.9.3 anyio 4.6.2.post1 attrs 24.2.0...