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;








0















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)









share|improve this question






















  • 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

















0















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)









share|improve this question






















  • 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













0












0








0








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)









share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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

















  • 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












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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page