47 lines
722 B
TOML
47 lines
722 B
TOML
|
|
[run]
|
||
|
|
name = "aggressive_smoke_local"
|
||
|
|
seed = 20260723
|
||
|
|
artifact_dir = "artifacts/runs"
|
||
|
|
|
||
|
|
[data]
|
||
|
|
root = "artifacts/processed_preflight_one"
|
||
|
|
train_cases = 1
|
||
|
|
val_cases = 0
|
||
|
|
test_cases = 0
|
||
|
|
points_per_case = 8192
|
||
|
|
batch_size = 512
|
||
|
|
|
||
|
|
[model]
|
||
|
|
type = "film_fourier_mlp"
|
||
|
|
hidden_width = 256
|
||
|
|
depth = 4
|
||
|
|
activation = "gelu"
|
||
|
|
coordinate_features = ["x", "y", "sdf"]
|
||
|
|
fourier_scales = [1.0, 2.0, 4.0, 8.0]
|
||
|
|
condition_width = 128
|
||
|
|
condition_depth = 2
|
||
|
|
condition_dim = 128
|
||
|
|
|
||
|
|
[optim]
|
||
|
|
lr = 0.0003
|
||
|
|
weight_decay = 0.0001
|
||
|
|
steps = 20
|
||
|
|
log_interval = 10
|
||
|
|
|
||
|
|
[device]
|
||
|
|
type = "cuda"
|
||
|
|
allow_cpu_fallback = false
|
||
|
|
benchmark_kernels = true
|
||
|
|
|
||
|
|
[loss]
|
||
|
|
type = "normalized_mse"
|
||
|
|
|
||
|
|
[precision]
|
||
|
|
dtype = "bf16"
|
||
|
|
|
||
|
|
[checkpoint]
|
||
|
|
interval_seconds = 0
|
||
|
|
|
||
|
|
[stability]
|
||
|
|
max_grad_norm = 1.0
|