-
-
Notifications
You must be signed in to change notification settings - Fork 453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
exchange_rate.txt #252
Comments
@JonathanHuangC Good question. It comes from this repo. I've transferred your question. |
@philipperemy |
You mean some form of auto encoding? You can just search for LSTM features extraction and you swap the LSTM class with the TCN class and it should work. |
You mean some form of auto encoding? -> Yes, it seems to be using TCN to implement the auto encoder. Do you mean that it is enough to change LSTM to TCN? Sorry for there are a lot of questions. Thank you again for your reply. LSTM autoencoder define modelmodel = Sequential() Encoder stepmodel.add(LSTM(15, input_shape=(X_train.shape[1], X_train.shape[2]), activation='relu')) Decoder stepmodel.add(LSTM(15, activation='relu', return_sequences=True)) model.compile(optimizer='adam', loss='mse') history = model.fit(X_train, X_train, epochs=_epochs, batch_size = _batch_size, TCN autoencoder define modelmodel = Sequential() Encoder stepmodel.add(TCN(15, input_shape=(X_train.shape[1], X_train.shape[2]), activation='relu')) Decoder stepmodel.add(TCN(15, activation='relu', return_sequences=True)) model.compile(optimizer='adam', loss='mse') history = model.fit(X_train, X_train, epochs=_epochs, batch_size = _batch_size, |
yeah it's as easy as swapping the class. |
What do the 8 columns in exchange_rate.txt represent?
Where did this data come from?
Thank you for your response.
The text was updated successfully, but these errors were encountered: