Update the structure of "README.md"

This commit is contained in:
Chris Wong 2023-05-30 01:47:29 +08:00
parent b282502af2
commit b064dac997

122
README.md
View File

@ -9,64 +9,64 @@ This project is an automatic trading system based on a Transformer and Reinforce
## Structure ## Structure
my_project/ my_project/<br />
<br />
├── data/ ├── data/<br />
│ ├── raw/ # Raw data goes here │ ├── raw/ # Raw data goes here<br />
│ └── processed/ # Processed data goes here │ └── processed/ # Processed data goes here<br />
<br />
├── notebooks/ # Jupyter notebooks for exploratory analysis and prototyping ├── notebooks/ # Jupyter notebooks for exploratory analysis and prototyping<br />
│ ├── data_exploration.ipynb # Notebook for exploring the data │ ├── data_exploration.ipynb # Notebook for exploring the data<br />
│ ├── data_preprocessing.ipynb # Notebook for preprocessing the data │ ├── data_preprocessing.ipynb # Notebook for preprocessing the data<br />
│ ├── model_prototyping.ipynb # Notebook for prototyping models │ ├── model_prototyping.ipynb # Notebook for prototyping models<br />
│ ├── model_training.ipynb # Notebook for training models │ ├── model_training.ipynb # Notebook for training models<br />
│ ├── model_evaluation.ipynb # Notebook for evaluating models │ ├── model_evaluation.ipynb # Notebook for evaluating models<br />
│ └── hyperparameter_tuning.ipynb # Notebook for tuning hyperparameters │ └── hyperparameter_tuning.ipynb # Notebook for tuning hyperparameters<br />
<br />
├── src/ ├── src/<br />
│ ├── agents/ # Agents module for HuggingFace's Transformers │ ├── agents/ # Agents module for HuggingFace's Transformers<br />
│ │ ├── init.py │ │ ├── init.py<br />
│ │ └── agent_example.py # An example of a Transformer Agent │ │ └── agent_example.py # An example of a Transformer Agent<br />
│ │ │ │<br />
│ ├── data/ # Data handling module │ ├── data/ # Data handling module<br />
│ │ ├── init.py │ │ ├── init.py<br />
│ │ ├── data_collection.py # Data collection scripts │ │ ├── data_collection.py # Data collection scripts<br />
│ │ └── data_preprocessing.py # Data preprocessing scripts │ │ └── data_preprocessing.py # Data preprocessing scripts<br />
│ │ │ │<br />
│ ├── models/ # Models module │ ├── models/ # Models module<br />
│ │ ├── init.py │ │ ├── init.py<br />
│ │ ├── transformer_model.py # Transformer model script │ │ ├── transformer_model.py # Transformer model script<br />
│ │ ├── rl_model.py # RL model script │ │ ├── rl_model.py # RL model script<br />
│ │ └── trading_model.py # Trading model script │ │ └── trading_model.py # Trading model script<br />
│ │ │ │<br />
│ ├── training/ # Training module │ ├── training/ # Training module<br />
│ │ ├── init.py │ │ ├── init.py<br />
│ │ └── train.py # Training scripts │ │ └── train.py # Training scripts<br />
│ │ │ │<br />
│ ├── evaluation/ # Evaluation module │ ├── evaluation/ # Evaluation module<br />
│ │ ├── init.py │ │ ├── init.py<br />
│ │ └── evaluate.py # Evaluation scripts │ │ └── evaluate.py # Evaluation scripts<br />
│ │ │ │<br />
│ ├── utils/ # Utility module │ ├── utils/ # Utility module<br />
│ │ ├── init.py │ │ ├── init.py<br />
│ │ ├── utils.py # Utility scripts (including seeding function) │ │ ├── utils.py # Utility scripts (including seeding function)<br />
│ │ └── metrics.py # Metrics computation scripts │ │ └── metrics.py # Metrics computation scripts<br />
│ │ │ │<br />
│ └── main.py # Main script to run the model │ └── main.py # Main script to run the model<br />
<br />
├── config/ # Configuration files ├── config/ # Configuration files<br />
│ ├── transformer.json │ ├── transformer.json<br />
│ ├── rl.json │ ├── rl.json<br />
│ └── training.json │ └── training.json<br />
<br />
├── tests/ # Test module ├── tests/ # Test module<br />
│ ├── init.py │ ├── init.py<br />
│ ├── test_data.py # Tests for data collection and preprocessing │ ├── test_data.py # Tests for data collection and preprocessing<br />
│ ├── test_models.py # Tests for model creation │ ├── test_models.py # Tests for model creation<br />
│ ├── test_training.py # Tests for model training │ ├── test_training.py # Tests for model training<br />
│ ├── test_evaluation.py # Tests for model evaluation │ ├── test_evaluation.py # Tests for model evaluation<br />
│ └── test_utils.py # Tests for utility functions │ └── test_utils.py # Tests for utility functions<br />
<br />
├── .gitignore # Specifies which files should be ignored by Git ├── .gitignore # Specifies which files should be ignored by Git<br />
├── README.md # Project description and instructions ├── README.md # Project description and instructions<br />
└── requirements.txt # List of Python dependencies └── requirements.txt # List of Python dependencies<br />