From 0228c5c0fde99ad6f5e23a3327e4a0632f5dc04d Mon Sep 17 00:00:00 2001 From: Richard Wong Date: Thu, 31 Oct 2024 16:51:47 +0900 Subject: [PATCH] Doc: updated README.md to reflect execution order --- README.md | 7 +++++++ evaluation/README.md | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 evaluation/README.md diff --git a/README.md b/README.md index 424b92c..38a8753 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,10 @@ If you use vscode, just use the ipython functionality from `.py` files. In order to generate `.ipynb` file from `.py` file, you can do the following: `jupytext --to notebook your_script.py` + +## Order of Execution + +- `data_import`: Import data from database +- `data_preprocess`: Apply pre-process method +- `train`: Train mapping model and apply model on test data +- `post_process`: Apply post-processing method diff --git a/evaluation/README.md b/evaluation/README.md new file mode 100644 index 0000000..f0506ab --- /dev/null +++ b/evaluation/README.md @@ -0,0 +1,3 @@ +Code is from GRS paper. + +Code will not be used. \ No newline at end of file