Rename deep_crypto.py to bot.check_installed()
Browse files- bot.check_installed() +1 -0
- deep_crypto.py +0 -18
bot.check_installed()
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
bot.check_installed()
|
deep_crypto.py
DELETED
|
@@ -1,18 +0,0 @@
|
|
| 1 |
-
import argparse
|
| 2 |
-
from predictors.btc_ltsm import BtcLtsm
|
| 3 |
-
|
| 4 |
-
if __name__ == "__main__":
|
| 5 |
-
parser = argparse.ArgumentParser(description='BTC Price Prediction')
|
| 6 |
-
parser.add_argument('--update', action='store_true', help='Update the dataset')
|
| 7 |
-
parser.add_argument('--train', action='store_true', help='Train the model')
|
| 8 |
-
parser.add_argument('--test', action='store_true', help='Test the model')
|
| 9 |
-
args = parser.parse_args()
|
| 10 |
-
|
| 11 |
-
btc_ltsm = BtcLtsm()
|
| 12 |
-
if args.update:
|
| 13 |
-
btc_ltsm.update_dataset()
|
| 14 |
-
if args.train:
|
| 15 |
-
btc_ltsm.train()
|
| 16 |
-
if args.test:
|
| 17 |
-
btc_ltsm.load()
|
| 18 |
-
btc_ltsm.test_model()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|