sirisian

Results 59 comments of sirisian

For reference, including only one of the unary_operators also causes the errors. ```python import numpy as np from pysr import pysr, best # Dataset X = 2 * np.random.randn(100, 5)...

When using multithreading=true and populations=16 it only uses 30% of my CPU? Is that expected. (I'm not using much data, maybe that's why?)

Ah. Thought it automatically set that, so I didn't consider it. 8 cores uses 56% and 16 since I have hyperthreading uses 100%. I set populations=32 and it's running fine....

See this: https://github.com/Kagami/mpv.js/issues/76#issuecomment-773546338 for building the latest mpv.js compatible with the latest mpv dll. (You have to follow the build steps in the mpv.js README first to setup the environment)....

@anesuc Also not sure if you've tried this with your stream, but you might need: ```js this.mpv.addEventListener('message', msg => { if (msg.data.type === 'ready') { //... this.setProperty('untimed', true); } });...

Ah so this is very recent it turns out. On the 64-bit builds: https://sourceforge.net/projects/mpv-player-windows/files/64bit/ The 2020-08-30 one is the last one that works with the electron example player.

@vgarleanu That worked. For reference all I did was change render_gl.h to render.h in index.cc and copy and paste the two structs below from render_gl.h to the top of the...

I fixed my nw.js issue. See here: https://github.com/nwjs/nw.js/issues/7670 It all works again now.

> 1. With 24 threads available, I would try using 24 procs, or 48 if you use multithreading=true. When I try to set multithreading=true and settings either procs or numprocs...

Okay I've lowered it to 480 points with 334 outputs that are 1 and 146 that are -1. http://sirisian.com/randomfiles/symbolicregression/inputX3.bin http://sirisian.com/randomfiles/symbolicregression/outputY3.bin ```julia using SymbolicUtils using Serialization using SymbolicRegression inputX = deserialize("inputX3.bin")...