Closed LittleFlyingSheep closed 6 months ago
Hi~I find that in the 49 line of data/infer_clap.py, the parameter of the CLAP_module() has a wrong name.
data/infer_clap.py
CLAP_module()
The original verision:
model = CLAP_Module(enable_fusion=args.enable_fusion, aencoder=args.audio_encoder)
In this version, the parameter "aencoder" should be "amodel" according to the library of "laion_clap". Thus, the revised version should be:
model = CLAP_Module(enable_fusion=args.enable_fusion, amodel=args.audio_encoder)
I hope this suggestion can make this project better.
Thank you for your finding! It is a typo for this version, we will correct it.
Hi~I find that in the 49 line of
data/infer_clap.py
, the parameter of theCLAP_module()
has a wrong name.The original verision:
In this version, the parameter "aencoder" should be "amodel" according to the library of "laion_clap". Thus, the revised version should be:
I hope this suggestion can make this project better.