Aleksandr Motsjonov

Results 35 comments of Aleksandr Motsjonov

somehow it didn't want to work even when I fixed the issue with typo. I hade to manually add `__init__.py` in test folder to make it work. Also it says...

@Pomax just in case this might be useful https://github.com/soswow/fit-curves

Oh ... Is there any change to get any help with that?

1. Why do we need to support older axios? 2. It's 0.17 already latest.

Using this branch and axios 16 I have a problem. jsonPaths do not match between request and response During request: ```json { "url":"https://launchlibrary.net/1.2/launch", "method":"get", "headers":{ "common":{ "Accept":"application/json, text/plain, */*" },...

also for some reason it doesn't take `params` parameter =\

Actually. I am not sure. How does it need to work? I am using it for web and for node (via Jest tests running). ``` import clone from 'nanoclone' ```...

ok. I think I figured this out. For everything to work (jest (node) and webpack (web)) I needed to add this ```json "esModuleInterop": true, ``` to my `tsconfig.json`

My current workaround is to do this: ```js deepqlearn.Brain.prototype.policy = function(s) { const svol_sx = this.value_net.layers[0].out_sx; const svol_sy = this.value_net.layers[0].out_sy; const svol_depth = this.value_net.layers[0].out_depth; var svol = new convnetjs.Vol(svol_sx, svol_sy,...