Double precision in deep learning

7 views (last 30 days)
bah
bah on 28 Nov 2022
Answered: Joss Knight on 18 Dec 2022
Hello guys,
i want to train my LSTM using double precision but the deep learning toolbox only allows single precision. Can i change that to double precision or how do i train my neural network using double precision ?
Thanks.
  4 Comments
bah
bah on 29 Nov 2022
Thanks a lot for the information.

Sign in to comment.

Answers (1)

Joss Knight
Joss Knight on 18 Dec 2022
This is possible with a dlnetwork but it is (currently) more of a workaround than anything else. Once your dlnetwork is ready to go, convert it to double precision:
net = dlupdate(@double, net);
net.State = dlupdate(@double, net.State);
Then make sure your input data to the network is always in double precision. Everything should then remain in double as you train and use the network.
Let me know if this doesn't work for you.

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by