Giter VIP home page Giter VIP logo

Comments (5)

philipperemy avatar philipperemy commented on June 4, 2024

@JonathanHuangC Good question. It comes from this repo. I've transferred your question.

laiguokun/multivariate-time-series-data#7

from keras-tcn.

JonathanHuangC avatar JonathanHuangC commented on June 4, 2024

@philipperemy
Is there any example of using TCN to extract features?
For example, compressing the exchange rate of [1000 * 8] into [1 * 8], where 1000 represents the day and 8 is the feature of the data.
Thank you very much for your reply.

from keras-tcn.

philipperemy avatar philipperemy commented on June 4, 2024

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.

from keras-tcn.

JonathanHuangC avatar JonathanHuangC commented on June 4, 2024

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 model

model = Sequential()

Encoder step

model.add(LSTM(15, input_shape=(X_train.shape[1], X_train.shape[2]), activation='relu'))
model.add(RepeatVector(X_train.shape[1]))

Decoder step

model.add(LSTM(15, activation='relu', return_sequences=True))
model.add(TimeDistributed(Dense(X_train.shape[2])))

model.compile(optimizer='adam', loss='mse')

history = model.fit(X_train, X_train, epochs=_epochs, batch_size = _batch_size,
validation_split=_validation_split, callbacks=callback)

TCN autoencoder

define model

model = Sequential()

Encoder step

model.add(TCN(15, input_shape=(X_train.shape[1], X_train.shape[2]), activation='relu'))
model.add(RepeatVector(X_train.shape[1]))

Decoder step

model.add(TCN(15, activation='relu', return_sequences=True))
model.add(TimeDistributed(Dense(X_train.shape[2])))

model.compile(optimizer='adam', loss='mse')

history = model.fit(X_train, X_train, epochs=_epochs, batch_size = _batch_size,
validation_split=_validation_split, callbacks=callback)

from keras-tcn.

philipperemy avatar philipperemy commented on June 4, 2024

yeah it's as easy as swapping the class.

from keras-tcn.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.