Tasfiya025 commited on
Commit
055b6df
·
verified ·
1 Parent(s): 53413cc

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +22 -0
config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ```json
2
+ {
3
+ "_name_or_path": "lstm-sequence-model",
4
+ "architectures": [
5
+ "LSTMForTimeSeriesForecasting"
6
+ ],
7
+ "hidden_size": 256,
8
+ "num_layers": 3,
9
+ "dropout": 0.2,
10
+ "input_features": 7,
11
+ "output_features": 1,
12
+ "model_type": "lstm_ts",
13
+ "sequence_length": 60,
14
+ "prediction_horizon": 7,
15
+ "time_steps_per_epoch": 1000,
16
+ "loss_function": "MSELoss",
17
+ "optimizer": "Adam",
18
+ "learning_rate": 0.001,
19
+ "normalization_method": "MinMaxScaler",
20
+ "crypto_ticker": "BTC/USD",
21
+ "feature_names": ["Open", "High", "Low", "Close", "Volume", "Moving_Avg_14", "RSI_14"]
22
+ }