rltrader icon indicating copy to clipboard operation
rltrader copied to clipboard

파이썬과 케라스를 이용한 딥러닝/강화학습 주식투자 - 퀀트 투자, 알고리즘 트레이딩을 위한 최첨단 해법 입문 (개정판)

Results 99 rltrader issues
Sort by recently updated
recently updated
newest added

안녕하세요, 강화학습 모듈을 기초부터 이해하기 위해 직접 v1부터 파헤치고 있는 중인데요, 아래와 같이 모델을 돌렸을경우에 update까진 문제 없이 출력이 되는데 마지막 predict의 결과가 모든 날짜에 대해 action과 confidence가 0과 nan...

TensorFlow 2에서는 Graph를 생성하지 않고 코드를 [즉시 실행(Eager Execution)](https://www.tensorflow.org/guide/eager) 합니다. 이로 인해 Graph, Session 등을 신경쓰지 않아도 되서 코드를 쉽게 작성할 수 있습니다. > 사실 케라스를 사용하면 큰 차이가 없습니다만......

enhancement

했는데 학습결과와 다른 결과가 나옵니다 텐서플로우 버전에서는 안그런데 버그 아닐까요?

question

Bumps [tensorflow-gpu](https://github.com/tensorflow/tensorflow) from 1.15 to 2.7.2. Release notes Sourced from tensorflow-gpu's releases. TensorFlow 2.7.2 Release 2.7.2 This releases introduces several vulnerability fixes: Fixes a code injection in saved_model_cli (CVE-2022-29216) Fixes...

dependencies

Bumps [tensorflow](https://github.com/tensorflow/tensorflow) from 2.7.0 to 2.7.2. Release notes Sourced from tensorflow's releases. TensorFlow 2.7.2 Release 2.7.2 This releases introduces several vulnerability fixes: Fixes a code injection in saved_model_cli (CVE-2022-29216) Fixes...

dependencies

안녕하세요 딥러닝/강화학습 주식투자 책을 통해 공부하고 있는 학생입니다. main.py를 실행시킬 때 여러가지 mode들이 존재하는데 여기서 update는 모델이 학습한것을 저장시키는 명령어인가요? update mode에 관한 설명이 없어 여기에 질문합니다 !

question

업데이트해주신 최신 source code로 실행 시 버전과 환경이 일치하지 않는 것 같아 문의 드립니다. (Error message: No module named 'tensorflow_core.estimator') 현재 source code의 전체적인 실행 환경 package 및 version을 확인할...

question
v2

TensorFlow 2.0을 써보니 `tensorflow-gpu`를 써서 GPU 활성화까지 되어도 너무 느림. RLTrader 1 epoch에 1분이 넘게 걸림. GPU 사용량을 보면 3%정도밖에 안쓰고 있어서 뭔가 이상함. TensorFlow 1.15로 다시 설치해서 돌려보니 10배는...

known issue

안녕하세요? 6장 주식데이터 획득 편에서 크레온으로 차트데이터를 획득하는 방법을 설명해 주셨는데요, Creon 클래스 사용법에서 return받은 데이터를 프린트 하는 것으로 마무리가 되었있더라구요. 학습기에서 사용할 수 있도록 csv파일로 저장하는 방법을 알려주시면 감사하겠습니다.

question
v2

현재 코드에서 agent 매수 및 매도 행동 함수에서 ``` self.avg_buy_price = (self.avg_buy_price * self.num_stocks + curr_price) / (self.num_stocks + trading_unit) ``` 이라고 되어있는데 ``` self.avg_buy_price = (self.avg_buy_price * self.num_stocks +...

bug
v3