Coverage Control Library
Loading...
Searching...
No Matches
learning_params.toml
Go to the documentation of this file.
1DataDir = "${CoverageControl_ws}/lpac/" # Absolute location
2
3GPUs = [0, 1]
4NumWorkers = 4
5# Directory to save the model
6# If a model is already present, it will be loaded
7# Similarly, for the optimizer
8[LPACModel]
9Dir = "${CoverageControl_ws}/lpac/models/"
10
11[CNNModel]
12Dir = "${CoverageControl_ws}/lpac/models/" # Absolute location
13Model = "model.pt"
14Optimizer = "optimizer.pt"
15
16[ModelConfig]
17UseCommMaps = true
18
19[GNNBackBone]
20InputDim = 7
21NumHops = 3
22NumLayers = 5
23LatentSize = 256
24OutputDim = 2
25
26[LPACTraining]
27LearningRate = 0.0001
28WeightDecay = 0.001
29BatchSize = 10
30NumEpochs = 15
31
32[CNNBackBone]
33InputDim = 4
34NumLayers = 3
35LatentSize = 32
36KernelSize = 3
37ImageSize = 32
38OutputDim = 7
39
40[CNNTraining]
41LearningRate = 0.0001
42WeightDecay = 0.001
43BatchSize = 10
44NumEpochs = 15
45Momentum = 0.1