VSCode中训练网络模型,在launch.json中配置的args

VSCode中训练网络模型,在launch.json中配置的args_第1张图片

launch.json内容

我调试出来的 "–train_cluster_net"是15,(15是我在代码中改的默认值)。但我在args中配置的是3,

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: DeepDPM",
            "type": "python",
            "request": "launch",
            "program": "/home/thui/projects/DeepDPM-main",
            "console": "integratedTerminal",
            "justMyCode": true,
            "args": [
                "--train_cluster_net", "3",
            ]
        }
    ]
}

第一:注意参数配置的形式 “–train_cluster_net”, “3”,
第二:注意左边的调试“运行”“开启调试”和右边的“运行”和调试不一样。 左边的 才把参数配置进去运行/调试

实例

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: 当前文件",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "args": [
                "--train_cluster_net", "50",
                "--init_k", "3",
                "--epoch", "50",
                "--latent_dim", "10",
                "--seed", "0",
                "--number_of_ae_alternations", "3",
                "--dataset", "MyData2023",
                "--lambda_", "0.005",
                "--lr", "0.002",
                "--alternate",
                "--init_cluster_net_using_centers",
                "--reinit_net_at_alternation",
                "--dir", "/home/thui/projects/DeepDPM-main",
                "--transform_input_data", "None",
                "--log_metrics_at_train", "True"
            ]
        },
    ]
}

你可能感兴趣的:(vscode,python)