Pycon UK 2016: An outsiders view of the Python community, from someone who monitors OS communities.: https://www.reddit.com/r/Python/comments/556w3b/pycon_uk_2016_an_outsiders_view_of_the_python/
reddit
Pycon UK 2016: An outsiders view of the Python... • /r/Python
3 points and 0 comments so far on reddit
Not nesting version of @atomic() in Django?: http://stackoverflow.com/questions/39719567/not-nesting-version-of-atomic-in-django
Stack Overflow
Not nesting version of @atomic() in Django?
From the docs of atomic()
atomic blocks can be nested
This sound like a great feature, but in my use case I want the opposite: I want the transaction to be durable as soon as the block decorate...
atomic blocks can be nested
This sound like a great feature, but in my use case I want the opposite: I want the transaction to be durable as soon as the block decorate...
Re-compose a Tensor after tensor factorization: http://stackoverflow.com/questions/39748285/re-compose-a-tensor-after-tensor-factorization
Stackoverflow
Re-compose a Tensor after tensor factorization
I am trying to decompose a 3D matrix using python library scikit-tensor. I managed to decompose my Tensor (with dimensions 100x50x5) into three matrices. My question is how can I compose the initial
Neural Network LSTM Keras multiple inputs: http://stackoverflow.com/questions/39674713/neural-network-lstm-keras-multiple-inputs
Stackoverflow
Neural Network LSTM Keras multiple inputs
I am trying to implement an LSTM with Keras. I have one series y with T observations that I am trying to predict, and I have N (in my case around 20) input vectors (timeseries) of T observations e...
I wrote a subscription box site from scratch in Python and just tallied up what all the code does: https://www.reddit.com/r/Python/comments/55864j/i_wrote_a_subscription_box_site_from_scratch_in/
reddit
I wrote a subscription box site from scratch in Python... • /r/Python
1 points and 0 comments so far on reddit
My Comprehensive Guide to Data Wrangling with Python pandas (and R data.table): https://www.reddit.com/r/Python/comments/558mob/my_comprehensive_guide_to_data_wrangling_with/
reddit
My Comprehensive Guide to Data Wrangling with Python... • /r/Python
[This is a project I've been working on](https://github.com/ben519/DataWrangling). It's a guide on how to do a number of common operations using...
How to split text into chunks minimizing the solution?: http://stackoverflow.com/questions/39750879/how-to-split-text-into-chunks-minimizing-the-solution
Stackoverflow
How to split text into chunks minimizing the solution?
OVERVIEW
I got a set of possible valid chunks I can use to split a text (if possible).
How can i split a given text using these chunks such as the result will be optimized (minimized) in terms o...
I got a set of possible valid chunks I can use to split a text (if possible).
How can i split a given text using these chunks such as the result will be optimized (minimized) in terms o...
Python Bokeh table columns and headers don't line up: http://stackoverflow.com/questions/39732842/python-bokeh-table-columns-and-headers-dont-line-up
Stackoverflow
Python Bokeh table columns and headers don't line up
I am trying to display a table in a jupyter notebook using python and bokeh. I use the following code to display my table in an ipython notebook where result is a dataframe:
source = ColumnDataSou...
source = ColumnDataSou...
Audio Fingerprinting with Python and Numpy: http://willdrevo.com/fingerprinting-and-audio-recognition-with-python/
I need suggestions for bulk processing 100s of large gzipped json files: https://www.reddit.com/r/Python/comments/55a48b/i_need_suggestions_for_bulk_processing_100s_of/
reddit
I need suggestions for bulk processing 100s of large... • /r/Python
Currently using Python 3.5.2 (Anaconda). I'm working with 100s of ~ 200-400MB gzipped JSON files. Unzipped, they're around ~4-5GB in size. The...
How do I plot this as bar graph?: https://www.reddit.com/r/Python/comments/55ajlc/how_do_i_plot_this_as_bar_graph/
reddit
How do I plot this as bar graph? • /r/Python
I have two arrays, x = [1,2,3,4] and corresponding values of y = [34,56,23,78]. I want to plot this as bar graph using matplotlib, like for x=1 we...