From cafcf8fe4be5a380a9b69f4151f2c3a12f3e3477 Mon Sep 17 00:00:00 2001 From: Zeyuan Hu <57764895+zyhu-hu@users.noreply.github.com> Date: Tue, 23 Jul 2024 14:02:05 -0400 Subject: [PATCH] remove a .md file mistakenly saved in ./website --- website/ARCHITECTURE.md | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 website/ARCHITECTURE.md diff --git a/website/ARCHITECTURE.md b/website/ARCHITECTURE.md deleted file mode 100644 index b67afac..0000000 --- a/website/ARCHITECTURE.md +++ /dev/null @@ -1,40 +0,0 @@ -## Project structure - -``` -├── .github <- Github Actions workflows -│ -├── baseline_models <- Pretrained baseline models, as well as python scripts and dependencies -| for re-training the models -│ ├── CNN <- Convolutional Neural Network -│ ├── ED <- Encoder Decoder -│ ├── HSR <- Heteroskedastic Regression -│ ├── MLP <- Multilayer Perceptron -│ ├── RPN <- Randomized Prior Network -│ └── cVAE <- Conditional Variational Autoencoder -│ -├── climsim_utils <- Installable python package for data preprocessing and model evaluation -| -├── dataset_statistics <- Precomputed statistics of input and output variables in dataset -│ -├── demo_notebooks <- Jupyter notebooks with examples of how to use the dataset for ML -│ -├── evaluation <- Jupyter notebooks for evaluating ML models -│ -├── grid_info <- Grid information for low-resolution dataset -│ -├── preprocessing <- Jupyter notebooks for preprocessing -│ ├── normalizations <- Precomputed normalization factors for input and output data -│ -├── tests <- Tests of any kind -│ -├── website <- Documentation -| -├── .gitignore <- List of files ignored by git -| -|── LICENSE <- License -| -├── setup.py <- File for installing climsim_utils as a package -| -└── README.md -``` -