-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4af829e
commit 2f19d5a
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Model Training | ||
CNN 모델 학습을 위한 코드입니다. | ||
|
||
## How to train CNN | ||
1. yfinance를 사용한 stock_csv 생성 | ||
``` | ||
python data_generate/get_stock_data.py | ||
``` | ||
2. (Optional) pickle data 생성 | ||
``` | ||
python data_generate/csv_to_pickle.py | ||
``` | ||
3. config.json에서 csv_dir, pickle_dir 경로 및 하이퍼파라미터 지정 | ||
4. python train.py -c config.json |