Doc: updated README.md to reflect execution order

This commit is contained in:
Richard Wong 2024-10-31 16:51:47 +09:00
parent 18e4a5f7df
commit 0228c5c0fd
2 changed files with 10 additions and 0 deletions

View File

@ -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

3
evaluation/README.md Normal file
View File

@ -0,0 +1,3 @@
Code is from GRS paper.
Code will not be used.