analyser_hj3415 2.9.16__tar.gz → 2.9.18__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/PKG-INFO +1 -1
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/analyser_hj3415/tsa.py +8 -11
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/pyproject.toml +1 -1
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/.gitignore +0 -0
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/README.md +0 -0
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/analyser_hj3415/__init__.py +0 -0
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/analyser_hj3415/cli.py +0 -0
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/analyser_hj3415/eval.py +0 -0
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/analyser_hj3415/workroom/__init__.py +0 -0
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/analyser_hj3415/workroom/mysklearn.py +0 -0
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/analyser_hj3415/workroom/mysklearn2.py +0 -0
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/analyser_hj3415/workroom/score.py +0 -0
- {analyser_hj3415-2.9.16 → analyser_hj3415-2.9.18}/analyser_hj3415/workroom/trash.py +0 -0
@@ -290,7 +290,7 @@ class MyLSTM:
|
|
290
290
|
@code.setter
|
291
291
|
def code(self, code: str):
|
292
292
|
assert utils.is_6digit(code), f'Invalid value : {code}'
|
293
|
-
tsa_logger.
|
293
|
+
tsa_logger.debug(f'change code : {self.code} -> {code}')
|
294
294
|
|
295
295
|
self._code = code
|
296
296
|
self.name = myredis.Corps(code, 'c101').get_name()
|
@@ -671,17 +671,14 @@ class MyLSTM:
|
|
671
671
|
plt.title('Stock Price Prediction with LSTM Ensemble')
|
672
672
|
plt.show()"""
|
673
673
|
|
674
|
-
def is_up(self)->
|
674
|
+
def is_up(self)-> bool:
|
675
675
|
# 튜플의 [0]은 날짜 [1]은 값 배열
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
return all(flattened_data[i] < flattened_data[i + 1] for i in range(len(flattened_data) - 1))
|
683
|
-
else:
|
684
|
-
return None
|
676
|
+
data = self.get_final_predictions(refresh=False, expire_time_h=24)[1]
|
677
|
+
# 데이터를 1D 배열로 변환
|
678
|
+
flattened_data = data.flatten()
|
679
|
+
tsa_logger.debug(f"flattened_data : {flattened_data}")
|
680
|
+
# 증가 여부 확인
|
681
|
+
return all(flattened_data[i] < flattened_data[i + 1] for i in range(len(flattened_data) - 1))
|
685
682
|
|
686
683
|
@staticmethod
|
687
684
|
def caching_based_on_prophet_ranking(refresh: bool, expire_time_h: int, top=20):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|