Posts

Showing posts from November 25, 2018

How to increase model's efficiency using CNN

Image
up vote -1 down vote favorite I'm using normalized data ranging [-1,1]. I have to used 1 dimensional convolution. But my model is only showing 74 percent training and test accuracy. I want to increase this accuracy. I have increases the amount of input data and and tried to add 2 convolution layer but still there is no effect on accuracy. I have to classify data into two classes. Can someone please guide me what should I do to increase accuracy. Or suggest some CNN network that is using data [-1,1]. Moreover should I add more fully connected layer or should I increase convolutional layers which will be more effective? input = tf.reshape(x, [-1, FLAGS.image_width, FLAGS.input_channel]) filter = weight_variable([FLAGS.filter_width, FLAGS.input_channel, FLAGS.filter_channel]) conv_out = tf.nn.tanh(conv1d(input, filter)) poo

Band (Musik)

Image
Thüringer Band in Hermsdorf, 1977 Band [.mw-parser-output .IPA a{text-decoration:none} bænd ] ist in der Musik die Bezeichnung für eine Gruppe von Musikern, die sich üblicherweise unter einem einheitlichen Namen (Bandnamen) zusammengeschlossen hat, um gemeinsam zu musizieren. Der Begriff wird im deutschsprachigen Raum überwiegend für Musikgruppen der Jazz-, Pop-, und Rockmusik verwendet. Für Musikgruppen anderer Stilrichtungen siehe etwa Big Band (z. B. Swing), Kapelle (z. B. Volksmusik), Orchester, Ensemble und Chor (z. B. Klassik). Inhaltsverzeichnis 1 Allgemeines 2 Begriffsherkunft und Geschichte 3 Arten 4 Frontleute 5 Bandleader 6 Rechtsfragen 7 Weblinks 8 Einzelnachweise Allgemeines | Ein Auftritt der Rockband Scorpions, 2014 Die Mitglieder einer Band treffen üblicherweise zumindest bei gemeinsamen Proben, Musikaufführungen bzw. Tonaufnahmen aufeinander. Beim Musizieren sind sich die Bandmitglieder idealerweise des Beitrag

python script works but heroku crashs

Image
up vote 0 down vote favorite I am building an app for my dad which scraps the lotto results (beautifulsoup) and send them via email (sendgrid). I use heroku to run the script github repo on a scheduled basis. If I run it, it will work fine. The emails will be sent but the process crash's which restarts them because of the dyno restart policy. The crash isn't that bad because the script will do its job but the problem is the restart of the dyno, which leads to many emails sent. You will find the script in my repo. My guess is the asynchronicity with beautiful soup and/or sendgrid. Do you know how to get better log information in heroku? If I comment out the actual email sending part and start the scheduler on ten minutes then it works but the worker doesn't. My Procfile looks like: worker: python lotto_mailer.py