Borys Kabakov

Results 68 comments of Borys Kabakov

Same for `while` and headless browser: ```python async def baz_main(): browser = await pyppeteer.launch(headless=True) pages = await browser.pages() page = pages[0] await page.goto('http://m.reactor.cc') i = 5 while i > 0:...

Change 2nd string in Dockerfile to `FROM kaixhin/cuda-torch:8.0` and process will go a far further. But it willl stop on attempt to build `thrift 24.0` on make stage: ``` /usr/bin/python...

So, I updated Dokerfile with `sync` command: ``` 1 # Start with a base docker image that contains torch and cutorch. 2 FROM kaixhin/cuda-torch:8.0 3 4 # Install fblualib and...

It looks like a Torch7 problem: https://github.com/facebook/thpp/pull/42 >the torch7 had Add a keepdim parameter for reduction functions over a single dimension.

https://stackoverflow.com/questions/21530577/fatal-error-python-h-no-such-file-or-directory

Same problem with lightgbm-3.3.0 and shap-0.40.0

> > I usually do this to get feature importance. > > ```python > > vals= np.abs(shap_values).mean(0) > > feature_importance = pd.DataFrame(list(zip(X_train.columns,vals)),columns=['col_name','feature_importance_vals']) > > feature_importance.sort_values(by=['feature_importance_vals'],ascending=False,inplace=True) > > feature_importance.head() > >...

Yep, looks like you said: >This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem. [zoom_stdout_stderr.log](https://github.com/mdouchement/docker-zoom-us/files/5552816/zoom_stdout_stderr.log) How I could fix...

Am I able somehow download 44Gb zip file not through browser, but through wget insted? `wget --user u --pass p link` is not helping :(