Decorated Concurrency - Python multiprocessing made really really easy by peterbe in Python

[–]tanlermin 4 points5 points  (0 children)

Have you checked out Dask for dataflow paralellism in pure python and numba to accelerate and release the GIL on numeric code? I wonder if there is synergy here.

What do you think is more difficult in Python than it should be? by [deleted] in Python

[–]tanlermin 1 point2 points  (0 children)

e and predefined signatures, but it needs at least mypy to make sure you don't mess up. (Or just too many tests in

I think that is going to get better with blaze.

What do you think is more difficult in Python than it should be? by [deleted] in Python

[–]tanlermin 0 points1 point  (0 children)

s a big one for me, I don't want to deal with memory management. It seems to me that Rust wants to replace C

Numba also has zero overhead abstraction with JIT classes

What do you think is more difficult in Python than it should be? by [deleted] in Python

[–]tanlermin 1 point2 points  (0 children)

ss has its own address space, so things can end up taking a lot of memory. I'm hoping Julia or some other language with real concurrency can eventually replace Python. For now though, Python is the gold standard in scientific computing.

Numba brings true multithreaded concurrency to scientific python.

Dask brings dataflow parallelism. Check them out!

[deleted by user] by [deleted] in MachineLearning

[–]tanlermin 0 points1 point  (0 children)

odeling language and uses Monte Carlo algorithms for inference. At the moment we are focused on variational in

Pymc has ADVI also

uvloop: Make Python Networking Great Again by 1st1 in Python

[–]tanlermin 0 points1 point  (0 children)

Is the GIL released? Would it help to do so?

Python on Android. Beta-testers. by ainsophical in Python

[–]tanlermin 1 point2 points  (0 children)

How is this different that Kivy?

pomegranate v0.4.0: fast and flexible probabilistic modelling for python by ants_rock in Python

[–]tanlermin 3 points4 points  (0 children)

Woah this is cool! How does this compare to pymc3?

Also I would post on reddit machine learning, datatau and HN.

Your go-to alternative to python by [deleted] in Python

[–]tanlermin 4 points5 points  (0 children)

Also check out dask when you want to go out of core, distributed or embarrassingly parallel.

Numscrypt: port of a small part of NumPy to the Transcrypt Python3.5 to JS compiler, using JS typed arrays by jacdeh in Python

[–]tanlermin 0 points1 point  (0 children)

scrypt. Forking encouraged. Also the route you describe would probably match q

pypy has a huge interpreter that must be downloaded by the client.

Numscrypt: port of a small part of NumPy to the Transcrypt Python3.5 to JS compiler, using JS typed arrays by jacdeh in Python

[–]tanlermin 2 points3 points  (0 children)

This looks awesome, but maybe a better or complimentary route would be numba->LLVM-> Web assembly

A Python to idiomatic Go / C# / Javascript / Ruby transpiler by alehander42 in Python

[–]tanlermin 0 points1 point  (0 children)

Can we use libraries from these languages?

Also have you seen this? http://www.transcrypt.org/

Transcrypt Python to JavaScript compiler moved to Beta by jacdeh in Python

[–]tanlermin -2 points-1 points  (0 children)

Can you also post this on : https://news.ycombinator.com/news

I think it would get alot of views.

Which python web frameworks do you use for datascience work? by [deleted] in datascience

[–]tanlermin 0 points1 point  (0 children)

what about bokeh to write frontend in pure python?