ValueError: cannot reshape array of size 9575706 into shape (9575706,137,1)Char-RNN in TensorflowDynamic LSTM model in TensorflowString Input output representation in RNN Variational autoencoderValueError: cannot reshape array of size 30470400 into shape (50,1104,104)Keras LSTM Accuracy too highKeras error Error when checking target: expected activation_1 to have 2 dimensions, but got array with shape (10, 5, 95)Can anybody help me implement hybrid embedding model using keras library as shown in the attached figureVariable Length RNN Models with Long SequencesEmbedding version seq2seq model (Keras)Feeding the input sample by sample (no sequences) in a recurrent neural network
Cross compiling for RPi - error while loading shared libraries
Do I have a twin with permutated remainders?
Why are electrically insulating heatsinks so rare? Is it just cost?
Revoked SSL certificate
Today is the Center
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
Perform and show arithmetic with LuaLaTeX
How do I deal with an unproductive colleague in a small company?
Why can't I see bouncing of a switch on an oscilloscope?
Replacing matching entries in one column of a file by another column from a different file
Paid for article while in US on F-1 visa?
Why doesn't H₄O²⁺ exist?
Unable to deploy metadata from Partner Developer scratch org because of extra fields
What defenses are there against being summoned by the Gate spell?
Can a vampire attack twice with their claws using Multiattack?
A case of the sniffles
If human space travel is limited by the G force vulnerability, is there a way to counter G forces?
Can you really stack all of this on an Opportunity Attack?
Why is Minecraft giving an OpenGL error?
What's the point of deactivating Num Lock on login screens?
Is it possible to run Internet Explorer on OS X El Capitan?
How old can references or sources in a thesis be?
NMaximize is not converging to a solution
Is it unprofessional to ask if a job posting on GlassDoor is real?
ValueError: cannot reshape array of size 9575706 into shape (9575706,137,1)
Char-RNN in TensorflowDynamic LSTM model in TensorflowString Input output representation in RNN Variational autoencoderValueError: cannot reshape array of size 30470400 into shape (50,1104,104)Keras LSTM Accuracy too highKeras error Error when checking target: expected activation_1 to have 2 dimensions, but got array with shape (10, 5, 95)Can anybody help me implement hybrid embedding model using keras library as shown in the attached figureVariable Length RNN Models with Long SequencesEmbedding version seq2seq model (Keras)Feeding the input sample by sample (no sequences) in a recurrent neural network
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am trying to build a generative RNN-LSTM model, based off this repo: https://github.com/flawnson/Molecule_generating_RNN/blob/master/final_model.py
When trying to re-shape input X to be [samples, time steps, features], the input format for the recurrent model, it says i cannot re-shape it.
enter n_chars = len(raw_text)
n_vocab = len(unique_chars)
print ("Total number of characters in the file is: ", n_chars)
# Preparing datasets by matching the dataset lengths (dataX will be the SMILES strings and dataY will be individual characters in the SMILE string)
seq_length = 137
dataX = []
dataY = []
for i in range (0, n_chars - seq_length, 1):
seq_in = raw_text[i:i + seq_length]
seq_out = raw_text[i + seq_length]
dataX.append([char_to_int[char] for char in seq_in])
dataX.append(char_to_int[seq_out])
n_patterns = len(dataX)
X = np.reshape (dataX, (n_patterns, seq_length, 1)
numpy machine-learning keras reshape recurrent-neural-network
add a comment |
I am trying to build a generative RNN-LSTM model, based off this repo: https://github.com/flawnson/Molecule_generating_RNN/blob/master/final_model.py
When trying to re-shape input X to be [samples, time steps, features], the input format for the recurrent model, it says i cannot re-shape it.
enter n_chars = len(raw_text)
n_vocab = len(unique_chars)
print ("Total number of characters in the file is: ", n_chars)
# Preparing datasets by matching the dataset lengths (dataX will be the SMILES strings and dataY will be individual characters in the SMILE string)
seq_length = 137
dataX = []
dataY = []
for i in range (0, n_chars - seq_length, 1):
seq_in = raw_text[i:i + seq_length]
seq_out = raw_text[i + seq_length]
dataX.append([char_to_int[char] for char in seq_in])
dataX.append(char_to_int[seq_out])
n_patterns = len(dataX)
X = np.reshape (dataX, (n_patterns, seq_length, 1)
numpy machine-learning keras reshape recurrent-neural-network
How far did you get? I tried it out, it's running with a fresh installation of keras, tensorflow and numpy, but now it's training the model for maybe 10 hours or some days consuming 25gb of ram...
– mimimi
Mar 9 at 3:52
It finished after 10h without error.
– mimimi
Mar 9 at 14:03
I managed to fix it on a new installation, but I was getting a lot of RAM consumption.
– Seyone Chithrananda
Mar 9 at 15:10
add a comment |
I am trying to build a generative RNN-LSTM model, based off this repo: https://github.com/flawnson/Molecule_generating_RNN/blob/master/final_model.py
When trying to re-shape input X to be [samples, time steps, features], the input format for the recurrent model, it says i cannot re-shape it.
enter n_chars = len(raw_text)
n_vocab = len(unique_chars)
print ("Total number of characters in the file is: ", n_chars)
# Preparing datasets by matching the dataset lengths (dataX will be the SMILES strings and dataY will be individual characters in the SMILE string)
seq_length = 137
dataX = []
dataY = []
for i in range (0, n_chars - seq_length, 1):
seq_in = raw_text[i:i + seq_length]
seq_out = raw_text[i + seq_length]
dataX.append([char_to_int[char] for char in seq_in])
dataX.append(char_to_int[seq_out])
n_patterns = len(dataX)
X = np.reshape (dataX, (n_patterns, seq_length, 1)
numpy machine-learning keras reshape recurrent-neural-network
I am trying to build a generative RNN-LSTM model, based off this repo: https://github.com/flawnson/Molecule_generating_RNN/blob/master/final_model.py
When trying to re-shape input X to be [samples, time steps, features], the input format for the recurrent model, it says i cannot re-shape it.
enter n_chars = len(raw_text)
n_vocab = len(unique_chars)
print ("Total number of characters in the file is: ", n_chars)
# Preparing datasets by matching the dataset lengths (dataX will be the SMILES strings and dataY will be individual characters in the SMILE string)
seq_length = 137
dataX = []
dataY = []
for i in range (0, n_chars - seq_length, 1):
seq_in = raw_text[i:i + seq_length]
seq_out = raw_text[i + seq_length]
dataX.append([char_to_int[char] for char in seq_in])
dataX.append(char_to_int[seq_out])
n_patterns = len(dataX)
X = np.reshape (dataX, (n_patterns, seq_length, 1)
numpy machine-learning keras reshape recurrent-neural-network
numpy machine-learning keras reshape recurrent-neural-network
asked Mar 9 at 0:56
Seyone ChithranandaSeyone Chithrananda
81
81
How far did you get? I tried it out, it's running with a fresh installation of keras, tensorflow and numpy, but now it's training the model for maybe 10 hours or some days consuming 25gb of ram...
– mimimi
Mar 9 at 3:52
It finished after 10h without error.
– mimimi
Mar 9 at 14:03
I managed to fix it on a new installation, but I was getting a lot of RAM consumption.
– Seyone Chithrananda
Mar 9 at 15:10
add a comment |
How far did you get? I tried it out, it's running with a fresh installation of keras, tensorflow and numpy, but now it's training the model for maybe 10 hours or some days consuming 25gb of ram...
– mimimi
Mar 9 at 3:52
It finished after 10h without error.
– mimimi
Mar 9 at 14:03
I managed to fix it on a new installation, but I was getting a lot of RAM consumption.
– Seyone Chithrananda
Mar 9 at 15:10
How far did you get? I tried it out, it's running with a fresh installation of keras, tensorflow and numpy, but now it's training the model for maybe 10 hours or some days consuming 25gb of ram...
– mimimi
Mar 9 at 3:52
How far did you get? I tried it out, it's running with a fresh installation of keras, tensorflow and numpy, but now it's training the model for maybe 10 hours or some days consuming 25gb of ram...
– mimimi
Mar 9 at 3:52
It finished after 10h without error.
– mimimi
Mar 9 at 14:03
It finished after 10h without error.
– mimimi
Mar 9 at 14:03
I managed to fix it on a new installation, but I was getting a lot of RAM consumption.
– Seyone Chithrananda
Mar 9 at 15:10
I managed to fix it on a new installation, but I was getting a lot of RAM consumption.
– Seyone Chithrananda
Mar 9 at 15:10
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072948%2fvalueerror-cannot-reshape-array-of-size-9575706-into-shape-9575706-137-1%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072948%2fvalueerror-cannot-reshape-array-of-size-9575706-into-shape-9575706-137-1%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
How far did you get? I tried it out, it's running with a fresh installation of keras, tensorflow and numpy, but now it's training the model for maybe 10 hours or some days consuming 25gb of ram...
– mimimi
Mar 9 at 3:52
It finished after 10h without error.
– mimimi
Mar 9 at 14:03
I managed to fix it on a new installation, but I was getting a lot of RAM consumption.
– Seyone Chithrananda
Mar 9 at 15:10