Description
想,都是问题。做,才是答案。
pip install wandb
wandb login
输入api-keyProject
每个Project下会包含很多Run,每个Run对应代码中的一个wandb.init()。通常,每次训练可以使用一个run,保存使用的数据集可以使用另一个run,训练出一个比较好的模型后,也可以用一个run保存。一次只能同时存在一个run,如果在代码中又打开一个新的run,则旧的会先停止。
import wandb
wandb.init(project='project_name', group='group_name',
job_type='job_type', config=dict(xxx))
wandb.log({'accuracy': train_acc, 'loss': train_loss})
超参数搜索。
sweep_config = {
'method': 'random',
'metric': {'goal': 'minimize', 'name': 'loss'},
'parameters':
{
'batch_size': {'distribution': 'q_log_uniform_values', 'max': 256, 'min': 32, 'q': 8},
'dropout': {'values': [0.3, 0.4, 0.5]},
'epochs': {'value': 1},
'fc_layer_size': {'values': [128, 256, 512]},
'learning_rate': {'distribution': 'uniform', 'max': 0.1, 'min': 0},
'optimizer': {'values': ['adam', 'sgd']}
}
}
sweep_id = wandb.sweep(sweep_config, project='project_name')
wandb.agent(sweep_id, function=train, count=8)
This app can be installed on your PC or mobile device. This will allow this web app to look and behave like any other installed app. You will find it in your app lists and be able to pin it to your home screen, start menus or task bars. This installed web app will also be able to safely interact with other apps and your operating system.
想,都是问题。做,才是答案。