You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**I hope this message finds you well. I truly appreciate your time and expertise, and I want to thank you in advance for considering my question. I’ve tried my best to articulate my thoughts clearly and comprehensively, but please let me know if there’s anything I could clarify further or improve in my explanation. I deeply value your insights and guidance.
Thank you so much for your time and help!
**1、Our dataset is divided according to the division on the MOSEISDK, or according to the division consistent with the CelebvHq preprocessing. ** CelebvHq preprocessing
def gen_split(root: str):
videos = list(filter(lambda x: x.endswith('.mp4'), os.listdir(os.path.join(root, 'cropped'))))
total_num = len(videos)
with open(os.path.join(root, "train.txt"), "w") as f:
for i in range(int(total_num * 0.8)):
f.write(videos[i][:-4] + "\n")
with open(os.path.join(root, "val.txt"), "w") as f:
for i in range(int(total_num * 0.8), int(total_num * 0.9)):
f.write(videos[i][:-4] + "\n")
with open(os.path.join(root, "test.txt"), "w") as f:
for i in range(int(total_num * 0.9), total_num):
f.write(videos[i][:-4] + "\n")
2、In the emotion task, we still train according to multilabels, do not need to modify the evaluation code, only need to modify num _ classes = 6. and sentiment .... this is right?
**I hope this message finds you well. I truly appreciate your time and expertise, and I want to thank you in advance for considering my question. I’ve tried my best to articulate my thoughts clearly and comprehensively, but please let me know if there’s anything I could clarify further or improve in my explanation. I deeply value your insights and guidance.
Thank you so much for your time and help!
**1、Our dataset is divided according to the division on the MOSEISDK, or according to the division consistent with the CelebvHq preprocessing. **
CelebvHq preprocessing
CMU-MOSEI Official SDK
2、In the emotion task, we still train according to multilabels, do not need to modify the evaluation code, only need to modify num _ classes = 6. and sentiment .... this is right?
In the sentiment task, for this task, he is a multi-category classification task multiclass. Is there a problem in writing the code as I do
The text was updated successfully, but these errors were encountered: