StockPredict / config.py
Aliazimi00's picture
Update config.py
313f6e5 verified
Raw
History Blame Contribute Delete
389 Bytes
DEFAULT_TICKERS = ["BTC-USD", "ETH-USD", "AAPL", "MSFT", "TSLA", "GOOG", "META", "AMZN", "GC=F", "EURUSD=X" , "GBPUSD=X" , "USDCAD=X" , "DOGE-USD"]
AVAILABLE_MODELS = ["LSTM", "GRU", "CNN", "MLP", "BiLSTM", "Hybrid", "RNN", "CNN-GRU"]
DEFAULT_PARAMS = {
"epochs": 100,
"hidden_units": 64,
"layers": 2,
"learning_rate": 0.001,
"window_size": 30,
"test_split": 0.2
}