├── .gitignore ├── README.md ├── allora-node ├── Dockerfile ├── Dockerfile_train_models ├── Dockerfile_updater ├── app.py ├── app_config.py ├── app_utils.py ├── config.json ├── docker-compose-reputer.yaml ├── docker-compose.yaml ├── gunicorn_conf.py ├── init.config.sh ├── init_data.py ├── models │ ├── arbusd_scaler_10m.pkl │ ├── arbusd_scaler_20m.pkl │ ├── bnbusd_model_10m.keras │ ├── bnbusd_model_20m.keras │ ├── bnbusd_scaler_10m.pkl │ ├── bnbusd_scaler_20m.pkl │ ├── btcusd_model_10m.keras │ ├── btcusd_model_20m.keras │ ├── btcusd_scaler_10m.pkl │ ├── btcusd_scaler_20m.pkl │ ├── ethusd_model_10m.keras │ ├── ethusd_model_1440m.keras │ ├── ethusd_model_20m.keras │ ├── ethusd_scaler_10m.pkl │ ├── ethusd_scaler_1440m.pkl │ ├── ethusd_scaler_20m.pkl │ ├── solusd_model_10m.keras │ ├── solusd_model_20m.keras │ ├── solusd_scaler_10m.pkl │ └── solusd_scaler_20m.pkl ├── requirements.txt ├── scripts │ ├── coverage.sh │ ├── init.sh │ ├── l1_node.sh │ └── restore_snapshot.sh ├── start-train-model.sh ├── train_models.py ├── update_app.py └── updater-requirements.txt └── init.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/README.md -------------------------------------------------------------------------------- /allora-node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/Dockerfile -------------------------------------------------------------------------------- /allora-node/Dockerfile_train_models: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/Dockerfile_train_models -------------------------------------------------------------------------------- /allora-node/Dockerfile_updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/Dockerfile_updater -------------------------------------------------------------------------------- /allora-node/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/app.py -------------------------------------------------------------------------------- /allora-node/app_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/app_config.py -------------------------------------------------------------------------------- /allora-node/app_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/app_utils.py -------------------------------------------------------------------------------- /allora-node/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/config.json -------------------------------------------------------------------------------- /allora-node/docker-compose-reputer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/docker-compose-reputer.yaml -------------------------------------------------------------------------------- /allora-node/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/docker-compose.yaml -------------------------------------------------------------------------------- /allora-node/gunicorn_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/gunicorn_conf.py -------------------------------------------------------------------------------- /allora-node/init.config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/init.config.sh -------------------------------------------------------------------------------- /allora-node/init_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/init_data.py -------------------------------------------------------------------------------- /allora-node/models/arbusd_scaler_10m.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/arbusd_scaler_10m.pkl -------------------------------------------------------------------------------- /allora-node/models/arbusd_scaler_20m.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/arbusd_scaler_20m.pkl -------------------------------------------------------------------------------- /allora-node/models/bnbusd_model_10m.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/bnbusd_model_10m.keras -------------------------------------------------------------------------------- /allora-node/models/bnbusd_model_20m.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/bnbusd_model_20m.keras -------------------------------------------------------------------------------- /allora-node/models/bnbusd_scaler_10m.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/bnbusd_scaler_10m.pkl -------------------------------------------------------------------------------- /allora-node/models/bnbusd_scaler_20m.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/bnbusd_scaler_20m.pkl -------------------------------------------------------------------------------- /allora-node/models/btcusd_model_10m.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/btcusd_model_10m.keras -------------------------------------------------------------------------------- /allora-node/models/btcusd_model_20m.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/btcusd_model_20m.keras -------------------------------------------------------------------------------- /allora-node/models/btcusd_scaler_10m.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/btcusd_scaler_10m.pkl -------------------------------------------------------------------------------- /allora-node/models/btcusd_scaler_20m.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/btcusd_scaler_20m.pkl -------------------------------------------------------------------------------- /allora-node/models/ethusd_model_10m.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/ethusd_model_10m.keras -------------------------------------------------------------------------------- /allora-node/models/ethusd_model_1440m.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/ethusd_model_1440m.keras -------------------------------------------------------------------------------- /allora-node/models/ethusd_model_20m.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/ethusd_model_20m.keras -------------------------------------------------------------------------------- /allora-node/models/ethusd_scaler_10m.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/ethusd_scaler_10m.pkl -------------------------------------------------------------------------------- /allora-node/models/ethusd_scaler_1440m.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/ethusd_scaler_1440m.pkl -------------------------------------------------------------------------------- /allora-node/models/ethusd_scaler_20m.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/ethusd_scaler_20m.pkl -------------------------------------------------------------------------------- /allora-node/models/solusd_model_10m.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/solusd_model_10m.keras -------------------------------------------------------------------------------- /allora-node/models/solusd_model_20m.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/solusd_model_20m.keras -------------------------------------------------------------------------------- /allora-node/models/solusd_scaler_10m.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/solusd_scaler_10m.pkl -------------------------------------------------------------------------------- /allora-node/models/solusd_scaler_20m.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/models/solusd_scaler_20m.pkl -------------------------------------------------------------------------------- /allora-node/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/requirements.txt -------------------------------------------------------------------------------- /allora-node/scripts/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/scripts/coverage.sh -------------------------------------------------------------------------------- /allora-node/scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/scripts/init.sh -------------------------------------------------------------------------------- /allora-node/scripts/l1_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/scripts/l1_node.sh -------------------------------------------------------------------------------- /allora-node/scripts/restore_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/scripts/restore_snapshot.sh -------------------------------------------------------------------------------- /allora-node/start-train-model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/start-train-model.sh -------------------------------------------------------------------------------- /allora-node/train_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/train_models.py -------------------------------------------------------------------------------- /allora-node/update_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/update_app.py -------------------------------------------------------------------------------- /allora-node/updater-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/allora-node/updater-requirements.txt -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xtnpxsgt/allora-worker/HEAD/init.sh --------------------------------------------------------------------------------