YangGaoBin
YangGaoBin
`class Solution { public: int ans = 0; void dfs(vector &nums, int target, int curSum, int Idx, int len) { if (Idx == len) { if (curSum == target) ans++;...
Hi, sorry to bother you. Why are the two special [CLS]tokens in DeiT said to be average as a single [CLS] token in the paper, but in the code I...
Hi, I am wondering if `dim` should be 0 at https://github.com/YuanGongND/ssast/blob/a1a3eecb94731e226308a6812f2fbf268d789caf/src/models/ast_models.py#L98-L99 https://github.com/YuanGongND/ssast/blob/a1a3eecb94731e226308a6812f2fbf268d789caf/src/models/ast_models.py#L350-L352 total[j, i] is the inner product of xj and ci^T, so softmax the -1 dim on `total` is...
Sorry to bother you, but I am the newer, I want to know how to calculate the EER or DER as the author presented in the paper. I seem not...
I only downloaded the tfrecord file on the audioset official website, and there is no audio file, or do I need to pay to download it?
sorry to bother you, I only downloaded the tfrecord file on the audioset official website, can i use it to do experiment? If it can't, how can I download the...
In test phase, why the command `python3 run_downstream.py -m evaluate -e result/downstream/ExpName/best-states-dev.ckpt` and `./downstream/diarization/score.sh result/downstream/ExpName downstream/diarization/data/test` get diff result ? what should I report in the paper? I report `./downstream/diarization/score.sh...
关于训练
您好大大,在一轮训练没有结束时,意外中断后如何重新训练呢? 我看过您断点续传的教程,但是您那已经生成了h5文件。当一轮训练没结束是好像没有h5文件的,请问这种情况可以继续训练吗?
```` import os from hashlib import md5 from multiprocessing.pool import Pool import requests from urllib.parse import urlencode GROUP_STRAT = 1 GROUP_END = 10 URL = 'https://www.toutiao.com/api/search/content/?' def get_page(offset): headers =...