Updated README.md

This commit is contained in:
Chris Wong 2023-06-03 01:19:31 +08:00
parent b064dac997
commit ddee6d12c5

128
README.md
View File

@ -1,72 +1,74 @@
# AutoTradingSystem
This project is an automatic trading system based on a Transformer and Reinforcement Learning hybrid model. It is built using HuggingFace's Transformers library and ChatGPT-4.
Trial project for deep learning trading model with ChatGPT-4
This project is an automatic trading system based on a Transformer and Reinforcement Learning hybrid model.
## Setup
1. Install the required packages: `pip install -r requirements.txt`
1. Install the required packages: `pip install -r requirements.txt`
2. Run the main script: `python src/main.py`
## Structure
my_project/<br />
<br />
├── data/<br />
├── raw/ # Raw data goes here<br />
└── processed/ # Processed data goes here<br />
<br />
├── notebooks/ # Jupyter notebooks for exploratory analysis and prototyping<br />
│ ├── data_exploration.ipynb # Notebook for exploring the data<br />
│ ├── data_preprocessing.ipynb # Notebook for preprocessing the data<br />
│ ├── model_prototyping.ipynb # Notebook for prototyping models<br />
│ ├── model_training.ipynb # Notebook for training models<br />
├── model_evaluation.ipynb # Notebook for evaluating models<br />
└── hyperparameter_tuning.ipynb # Notebook for tuning hyperparameters<br />
<br />
├── src/<br />
│ ├── agents/ # Agents module for HuggingFace's Transformers<br />
│ ├── init.py<br />
│ └── agent_example.py # An example of a Transformer Agent<br />
<br />
├── data/ # Data handling module<br />
│ ├── init.py<br />
│ │ ├── data_collection.py # Data collection scripts<br />
│ │ └── data_preprocessing.py # Data preprocessing scripts<br />
<br />
├── models/ # Models module<br />
│ ├── init.py<br />
│ │ ├── transformer_model.py # Transformer model script<br />
│ ├── rl_model.py # RL model script<br />
│ └── trading_model.py # Trading model script<br />
<br />
├── training/ # Training module<br />
│ ├── init.py<br />
│ └── train.py # Training scripts<br />
<br />
├── evaluation/ # Evaluation module<br />
│ ├── init.py<br />
│ └── evaluate.py # Evaluation scripts<br />
<br />
├── utils/ # Utility module<br />
│ ├── init.py<br />
│ ├── utils.py # Utility scripts (including seeding function)<br />
│ └── metrics.py # Metrics computation scripts<br />
<br />
└── main.py # Main script to run the model<br />
<br />
├── config/ # Configuration files<br />
├── transformer.json<br />
├── rl.json<br />
└── training.json<br />
<br />
├── tests/ # Test module<br />
├── init.py<br />
├── test_data.py # Tests for data collection and preprocessing<br />
├── test_models.py # Tests for model creation<br />
├── test_training.py # Tests for model training<br />
├── test_evaluation.py # Tests for model evaluation<br />
└── test_utils.py # Tests for utility functions<br />
<br />
├── .gitignore # Specifies which files should be ignored by Git<br />
├── README.md # Project description and instructions<br />
└── requirements.txt # List of Python dependencies<br />
my_project/
├── data/
├── raw/ # Raw data goes here
└── processed/ # Processed data goes here
├── notebooks/ # Jupyter notebooks for exploratory analysis and prototyping
├── data_exploration.ipynb
├── data_preprocessing.ipynb
├── model_prototyping.ipynb
├── model_training.ipynb
├── hyperparameter_tuning.ipynb
└── model_evaluation.ipynb
├── src/
├── agents/ # Agents module for HuggingFace's Transformers
│ ├── \_\_init\_\_.py
│ └── agent_example.py # An example of a Transformer Agent
├── data/ # Data handling module
│ ├── \_\_init\_\_.py
├── data_collection.py # Data collection scripts
└── data_preprocessing.py # Data preprocessing scripts
├── models/ # Models module
│ ├── \_\_init\_\_.py
├── transformer_model.py # Transformer model script
│ ├── rl_model.py # RL model script
│ └── trading_model.py # Trading model script
├── training/ # Training module
│ ├── \_\_init\_\_.py
│ └── train.py # Training scripts
├── evaluation/ # Evaluation module
│ ├── \_\_init\_\_.py
│ └── evaluate.py # Evaluation scripts
├── utils/ # Utility module
│ ├── \_\_init\_\_.py
│ ├── utils.py # Utility scripts (including seeding function)
│ └── metrics.py # Metrics computation scripts
└── main.py # Main script to run the model
├── config/ # Configuration files
├── transformer.json
├── rl.json
└── training.json
├── tests/ # Test module
├── \_\_init\_\_.py
├── test_data.py # Tests for data collection and preprocessing
├── test_models.py # Tests for model creation
├── test_training.py # Tests for model training
├── test_evaluation.py # Tests for model evaluation
└── test_utils.py # Tests for utility functions
├── .gitignore # Specifies which files should be ignored by Git
├── README.md # Project description and instructions
└── requirements.txt # List of Python dependencies