Philipp Erler
Philipp Erler
Thank you aoikaneko. Your comment saved me a lot of time bugfixing. I hope, this will be fixed in the next release.
In case anyone cares, I also had this issue. Looks like installing mpi4py via PIP doesn't work but via conda does. Here is a conda YML based on the provided...
For the ground-contact plot, it would be good to also detect situations with low grip, e.g. shortly before a jump.
@ErlerPhilipp Thanks for the feedback! I'll think about it. I'm a bit clueless at the moment.
Hi @rootpine ! Coloring is unfortunately not implemented here. You would need to implement it on your own. For this, I see these options: 1. Vertex Colors: Quite easy but...
I made a quick&dirty fix in get_tickers.py. Filtering by mktcap_min, mktcap_max and sectors works for me. I didn't test regions. Github doesn't allow me to upload a .py file, so...
@krikru I know but I decided against it, for now, because it's mostly untested changes and really dirty ;) If I have time, I'll create a PR.
Installed with conda, no OpenMP (at least I didn't do anything on my own). I want it single-threaded since I'd use it in worker processes of my ML stuff. Python...
I just tried it with: ``` export OMP_NUM_THREADS=1 python test.py ``` and got the same timings. I'm no expert for Cyphon or OpenMP but the code looks fine, without obvious...
Quick update: brute-force is no option for ~35k points. ``` start_brute = time.time() for _ in range(100): idx_brute = np.empty(shape=(query_pts.shape[0], num_neighbors), dtype=np.uint32) dist_brute = np.empty(shape=(query_pts.shape[0], num_neighbors), dtype=np.float32) for qi, query_pt...