以下代码应循环 3 次。它在 Jupyter notbook 中工作了 3 次,但在 VSC 中只工作了一次。诡异的。
import wandb
N_EPOCHS=10
batch_size=16
from tqdm import tqdm
for eachtime in tqdm(range(3)):
wandb.init(project='test',name='TESTWANDB'+'_'+str(eachtime))
wandb.config = {
"epochs": N_EPOCHS,
"batch_size": batch_size
}