-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy patheval.yaml
33 lines (25 loc) · 904 Bytes
/
eval.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# @package _global_
defaults:
- _self_
- datamodule: semantic/s3dis.yaml
- model: semantic/spt-2.yaml
- logger: null
- trainer: default.yaml
- paths: default.yaml
- extras: default.yaml
- hydra: default.yaml
# experiment configs allow for version control of specific hyperparameters
# e.g. best hyperparameters for given model and datamodule
- experiment: null
# optional local config for machine/user specific settings
# it's optional since it doesn't need to exist and is excluded from version control
- optional local: default.yaml
task_name: "eval"
tags: ["dev"]
# compile model for faster training with pytorch >=2.1.0
compile: False
# passing checkpoint path is necessary for evaluation
ckpt_path: ???
# float32 precision operations (torch>=2.0)
# see https://pytorch.org/docs/2.0/generated/torch.set_float32_matmul_precision.html
float32_matmul_precision: high