1234567891011121314151617181920212223242526 |
- {
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Train Doc Model",
- "type": "python",
- "request": "launch",
- "program": "${workspaceFolder}/train_model.py",
- "args": [
- "--data-dirs", "dataset/selfCollectedData_DocCyclic", "dataset/smartdocData_DocTrainC",
- "--validation-dirs", "dataset/smartDocData_DocTestC",
- "--name", "DocModel",
- "--lr", "0.5",
- "--batch-size", "16",
- "--schedule", "20", "30", "35",
- "--model-type", "resnet",
- "--loader", "ram",
- ],
- "console": "integratedTerminal",
- "justMyCode": true
- }
- ]
- }
|