├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── config ├── config.yaml ├── development.yaml └── production.yaml ├── data ├── processed │ └── succes.json └── raw │ ├── ai_training_data.csv │ ├── test_data.npy │ ├── test_labels.npy │ └── transactions.csv ├── docs └── papers.md ├── examples ├── Human_Bot │ ├── bot_identifier.py │ ├── pre_model.py │ └── wallet_transactions.csv └── Price_Prediction │ ├── README.md │ ├── btc_price_prediction_no_sentiment.py │ ├── eth_price_prediction_no_sentiment.py │ └── requirements.txt ├── models ├── data_models │ ├── __init__.py │ ├── contract.py │ ├── requirements.txt │ ├── transaction.py │ └── user.py ├── ml_models │ ├── __init__.py │ ├── evaluate.py │ ├── model.py │ ├── predict.py │ ├── requirements.txt │ └── train.py ├── saved_models │ ├── dev_model.h5 │ └── dev_prediction.pth └── utils │ ├── data_preprocessing.py │ └── postprocessing.py ├── scripts ├── deploy.js ├── install_dependencies.sh ├── run_server.sh └── setup_environment.sh ├── smart_contracts ├── AccessControl.sol ├── DataIntegrity.sol ├── GasFeePredictor.sol ├── GenesisAiFeePredictor.sol └── ModelManagement.sol ├── tests └── unit_tests │ └── test_data_models.py └── tools ├── data_preprocessing.py ├── evaluation_metrics.py ├── kbai ├── docs │ └── README.md ├── requirements.txt ├── setup.py └── src │ ├── main.py │ └── network │ ├── peer.py │ ├── protocol.py │ └── server.py └── training_utils.py /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/README.md -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/config/config.yaml -------------------------------------------------------------------------------- /config/development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/config/development.yaml -------------------------------------------------------------------------------- /config/production.yaml: -------------------------------------------------------------------------------- 1 | # production.yaml TBD 2 | -------------------------------------------------------------------------------- /data/processed/succes.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /data/raw/ai_training_data.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/raw/test_data.npy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/raw/test_labels.npy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/raw/transactions.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/papers.md: -------------------------------------------------------------------------------- 1 | ### Evire AI Framework ### 2 | 3 | Coming soon -------------------------------------------------------------------------------- /examples/Human_Bot/bot_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/examples/Human_Bot/bot_identifier.py -------------------------------------------------------------------------------- /examples/Human_Bot/pre_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/examples/Human_Bot/pre_model.py -------------------------------------------------------------------------------- /examples/Human_Bot/wallet_transactions.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Price_Prediction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/examples/Price_Prediction/README.md -------------------------------------------------------------------------------- /examples/Price_Prediction/btc_price_prediction_no_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/examples/Price_Prediction/btc_price_prediction_no_sentiment.py -------------------------------------------------------------------------------- /examples/Price_Prediction/eth_price_prediction_no_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/examples/Price_Prediction/eth_price_prediction_no_sentiment.py -------------------------------------------------------------------------------- /examples/Price_Prediction/requirements.txt: -------------------------------------------------------------------------------- 1 | yfinance 2 | pandas 3 | numpy 4 | scikit-learn 5 | tensorflow 6 | keras -------------------------------------------------------------------------------- /models/data_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/data_models/__init__.py -------------------------------------------------------------------------------- /models/data_models/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/data_models/contract.py -------------------------------------------------------------------------------- /models/data_models/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/data_models/requirements.txt -------------------------------------------------------------------------------- /models/data_models/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/data_models/transaction.py -------------------------------------------------------------------------------- /models/data_models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/data_models/user.py -------------------------------------------------------------------------------- /models/ml_models/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py for ml_models 2 | -------------------------------------------------------------------------------- /models/ml_models/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/ml_models/evaluate.py -------------------------------------------------------------------------------- /models/ml_models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/ml_models/model.py -------------------------------------------------------------------------------- /models/ml_models/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/ml_models/predict.py -------------------------------------------------------------------------------- /models/ml_models/requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow -------------------------------------------------------------------------------- /models/ml_models/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/ml_models/train.py -------------------------------------------------------------------------------- /models/saved_models/dev_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/saved_models/dev_model.h5 -------------------------------------------------------------------------------- /models/saved_models/dev_prediction.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/saved_models/dev_prediction.pth -------------------------------------------------------------------------------- /models/utils/data_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/utils/data_preprocessing.py -------------------------------------------------------------------------------- /models/utils/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/models/utils/postprocessing.py -------------------------------------------------------------------------------- /scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/scripts/deploy.js -------------------------------------------------------------------------------- /scripts/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/scripts/install_dependencies.sh -------------------------------------------------------------------------------- /scripts/run_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/scripts/run_server.sh -------------------------------------------------------------------------------- /scripts/setup_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/scripts/setup_environment.sh -------------------------------------------------------------------------------- /smart_contracts/AccessControl.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/smart_contracts/AccessControl.sol -------------------------------------------------------------------------------- /smart_contracts/DataIntegrity.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/smart_contracts/DataIntegrity.sol -------------------------------------------------------------------------------- /smart_contracts/GasFeePredictor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/smart_contracts/GasFeePredictor.sol -------------------------------------------------------------------------------- /smart_contracts/GenesisAiFeePredictor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/smart_contracts/GenesisAiFeePredictor.sol -------------------------------------------------------------------------------- /smart_contracts/ModelManagement.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/smart_contracts/ModelManagement.sol -------------------------------------------------------------------------------- /tests/unit_tests/test_data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/tests/unit_tests/test_data_models.py -------------------------------------------------------------------------------- /tools/data_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/tools/data_preprocessing.py -------------------------------------------------------------------------------- /tools/evaluation_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/tools/evaluation_metrics.py -------------------------------------------------------------------------------- /tools/kbai/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/tools/kbai/docs/README.md -------------------------------------------------------------------------------- /tools/kbai/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/kbai/setup.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/kbai/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/tools/kbai/src/main.py -------------------------------------------------------------------------------- /tools/kbai/src/network/peer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/tools/kbai/src/network/peer.py -------------------------------------------------------------------------------- /tools/kbai/src/network/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/tools/kbai/src/network/protocol.py -------------------------------------------------------------------------------- /tools/kbai/src/network/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evireFW/Evire-AI-Framework/HEAD/tools/kbai/src/network/server.py -------------------------------------------------------------------------------- /tools/training_utils.py: -------------------------------------------------------------------------------- 1 | ECHO is off. 2 | --------------------------------------------------------------------------------