Skip to content

Commit

Permalink
benchmark script
Browse files Browse the repository at this point in the history
  • Loading branch information
maturk committed Aug 8, 2024
1 parent d313a62 commit 9e33225
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions examples/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@dataclass
class BenchmarkConfig:
"""Benchmark config"""
"""Baseline benchmark config"""

# trainer to run
trainer: str = "simple_trainer.py"
Expand Down Expand Up @@ -39,7 +39,7 @@ class BenchmarkConfig:
model_configs: dict = field(default_factory=dict)


# Configurations to run
# Configurations of different GSPLAT options
baseline_config = BenchmarkConfig()
absgrad_config = BenchmarkConfig(
result_dir="results/absgrad",
Expand All @@ -53,11 +53,12 @@ class BenchmarkConfig:
result_dir="results/mcmc",
)

# Configs to run
configs_to_run = [
baseline_config,
# mcmc_config,
# absgrad_config,
# antialiased_config,
mcmc_config,
absgrad_config,
antialiased_config,
]


Expand Down

0 comments on commit 9e33225

Please sign in to comment.