For anyone looking to get into deep learning, I would advise that you consider not learning the behemoth libraries like Tensorflow or Theano, but instead learn how to use a high-level API like Keras. Here's a quick video to explain what it is. Hope I was helpful!: https://www.reddit.com/r/Python/comments/a0b0o5/for_anyone_looking_to_get_into_deep_learning_i/
reddit
r/Python - For anyone looking to get into deep learning, I would advise that you consider not learning the behemoth libraries like…
2 votes and 0 comments so far on Reddit
Getting started with Python game development : Car racing game / Helicopter Game using Pygame library: https://www.reddit.com/r/Python/comments/a0aq4p/getting_started_with_python_game_development_car/
reddit
r/Python - Getting started with Python game development : Car racing game / Helicopter Game using Pygame library
1 vote and 0 comments so far on Reddit
Keras fit_generator issue: https://stackoverflow.com/questions/53440128/keras-fit-generator-issue
Stack Overflow
Keras fit_generator issue
I followed this tutorial to create a custom generator for my Keras model. Here is an MWE that shows the issues I'm facing:
import sys, keras
import numpy as np
import tensorflow as tf
import panda...
import sys, keras
import numpy as np
import tensorflow as tf
import panda...
[Practice sessions] Mid or sr Developers for pair programming: https://www.reddit.com/r/Python/comments/a0bfl8/practice_sessions_mid_or_sr_developers_for_pair/
reddit
r/Python - [Practice sessions] Mid or sr Developers for pair programming
1 vote and 0 comments so far on Reddit
how can i send a message to another device on my network with a python script, and please put comments on the script to better understanding.: https://www.reddit.com/r/Python/comments/a0bvdt/how_can_i_send_a_message_to_another_device_on_my/
reddit
r/Python - how can i send a message to another device on my network with a python script, and please put comments on the script…
0 votes and 1 comment so far on Reddit
PassSHAfe - a deterministic HMAC-SHA-256 based password safe: https://www.reddit.com/r/Python/comments/a0btn1/passshafe_a_deterministic_hmacsha256_based/
reddit
r/Python - PassSHAfe - a deterministic HMAC-SHA-256 based password safe
1 vote and 0 comments so far on Reddit
Creating a Basic Web Crawler with Beautiful Soup: https://www.reddit.com/r/Python/comments/a0bw00/creating_a_basic_web_crawler_with_beautiful_soup/
reddit
r/Python - Creating a Basic Web Crawler with Beautiful Soup
0 votes and 0 comments so far on Reddit
Getting the best of every world: Cython and Pythran working together: https://www.reddit.com/r/Python/comments/a0by28/getting_the_best_of_every_world_cython_and/
reddit
r/Python - Getting the best of every world: Cython and Pythran working together
0 votes and 0 comments so far on Reddit
Are there Noted differences between Interpreter and IDLE?: https://www.reddit.com/r/Python/comments/a0cgoe/are_there_noted_differences_between_interpreter/
reddit
r/Python - Are there Noted differences between Interpreter and IDLE?
0 votes and 0 comments so far on Reddit
Anyone know any good apps to learn the more complex areas of python programming without having to go through the basics?: https://www.reddit.com/r/Python/comments/a0cvm9/anyone_know_any_good_apps_to_learn_the_more/
reddit
r/Python - Anyone know any good apps to learn the more complex areas of python programming without having to go through the basics?
5 votes and 10 comments so far on Reddit
I just completed "Inverse Captcha" - Day 1 - Advent of Code 2017: https://www.reddit.com/r/Python/comments/a0d5cg/i_just_completed_inverse_captcha_day_1_advent_of/
reddit
r/Python - I just completed "Inverse Captcha" - Day 1 - Advent of Code 2017
0 votes and 0 comments so far on Reddit
Does it sound right that my tkinter GUI is missing buttons when I run it in certain OSes, or did I just code it badly?: https://www.reddit.com/r/Python/comments/a0epye/does_it_sound_right_that_my_tkinter_gui_is/
reddit
r/Python - Does it sound right that my tkinter GUI is missing buttons when I run it in certain OSes, or did I just code it badly?
1 vote and 1 comment so far on Reddit
Wire Protocol of PostgreSQL Queries in a Nutshell - fantix: https://www.reddit.com/r/Python/comments/a0es17/wire_protocol_of_postgresql_queries_in_a_nutshell/
reddit
r/Python - Wire Protocol of PostgreSQL Queries in a Nutshell - fantix
1 vote and 0 comments so far on Reddit
Converting Tensorflow Graph to use Tensorflow Estimator, getting 'TypeError: data type not understood', at loss function: https://stackoverflow.com/questions/53405657/converting-tensorflow-graph-to-use-tensorflow-estimator-getting-typeerror-dat
Stack Overflow
Converting Tensorflow Graph to use Tensorflow Estimator, getting 'TypeError: data type not understood', at loss function
I am trying to convert a working Tensorflow graph to use Tensorflow Estimator, using a custom Estimator. My model works when I was just using a model and then running it with a session. But when I ...