CMU-MultimodalSDK icon indicating copy to clipboard operation
CMU-MultimodalSDK copied to clipboard

There may be a bug in windows

Open 1209674748 opened this issue 2 years ago • 0 comments

platform:windows10 For example: In file:"download_ops.py" : readURL("http://immortal.multicomp.cs.cmu.edu/CMUMOSEI/acoustic/CMU_MOSEI_COVAREP.csd","./hi.csd") the separator is '/' . however, "def __initialize_from_csd(self,resource,destination,validate)" in the file of "computational_sequence.py" destination=os.path.join(destination,resource.split(os.sep)[-1]). resource.split(os.sep)[-1] == resource.split('')[-1] == "http://immortal.multicomp.cs.cmu.edu/CMUMOSEI/acoustic/CMU_MOSEI_COVAREP.csd".split('')[-1] != "CMU_MOSEI_COVAREP.csd". If you would to use mmsdk in window, you may should change "os.sep" to "'/'" in window. The above problems occurred in my platform, maybe you may also encounter, I hope it will help you.

1209674748 avatar Oct 22 '21 09:10 1209674748