From 8699cbd3da21e3dd3bf7b9089cfe172019f8c87f Mon Sep 17 00:00:00 2001 From: Leo Lonzarich Date: Sat, 7 Dec 2024 23:50:54 -0500 Subject: [PATCH] Update detail.md update naming to repo structure --- docs/dmg/detail.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/dmg/detail.md b/docs/dmg/detail.md index 8c2b3cf..50741b5 100644 --- a/docs/dmg/detail.md +++ b/docs/dmg/detail.md @@ -64,18 +64,18 @@ According to this schema, we define these core classes, from bottom up: ## 𝛿MG Repository Structure: . ├── deltaModel/ - │ ├── __main__.py # Main entry point - │ ├── conf/ # Configuration files + │ ├── __main__.py # Run the framework; model experiments + │ ├── conf/ # Configuration repository │ │ ├── config.py │ │ ├── config.yaml # Main configuration file │ │ ├── hydra/ - │ │ └── observations/ # Observation data config + │ │ └── observations/ # Data configuration files │ ├── core/ │ │ ├── calc/ # Calculation utilities - │ │ ├── data/ # Data processing + │ │ ├── data/ # Data Loaders and Samplers │ │ └── utils/ # Helper functions │ ├── models/ - │ │ ├── differentiable_model.py # Differentiable model definition DeltaModel + │ │ ├── differentiable_model.py # Differentiable model (dPL modality) │ │ ├── model_handler.py # High-level model manager │ │ ├── loss_functions/ # Custom loss functions │ │ └── neural_networks/ # Neural network architectures