wandb.run.log_code上传整个项目代码
wandb一般只能保存训练代码文件
用了这个函数并且指定文件格式,就能保存指定文件当git来用了
import wandbwandb.init(project="latent-diffusion")
wandb.run.log_code(".", include_fn=lambda path: path.endswith('.py')or path.endswith('.yaml')or path.endswith('.sh')or path.endswith('.txt'))
参考
https://docs.wandb.ai/guides/app/features/panels/code