Florin Andrei
Florin Andrei
The system got rebooted a few hours ago, not by me. Now all pods are either in Running or Complete. These are the dgcm logs: ``` # kubectl logs nvidia-dcgm-exporter-jxpss...
I've uninstalled / reinstalled the operator, now the DCGM exporter is again in CrashLoopBackOff, the dcgm pod shows no logs at all: ``` # kubectl logs nvidia-dcgm-exporter-ld4zj -n gpu-operator-resources time="2021-10-04T17:22:26Z"...
I get that error constantly, 100% reproducible, with a script that makes hundreds of maps. All maps except one work fine. That one map throws this error. On second try,...
Any updates? I have the same issue. Doing choropleth maps with `pff.create_choropleth()`, scope is USA counties, I make a map each day for about 110 days. A large list of...
Okay, I made some "progress": ``` (base) c19@server:~$ /usr/bin/xvfb-run --auto-servernum --server-args '-screen 1 640x480x24 +extension RANDR +extension GLX' /home/c19/miniconda3/bin/orca serve -p 42871 --plotly /home/c19/miniconda3/lib/python3.7/site-packages/plotly/package_data/plotly.min.js --graph-only --mathjax https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js Spinning up server...
I installed Orca with Docker on Linux (Ubuntu 16.04), launched it like this... ``` docker run -d -p 9091:9091 quay.io/plotly/orca ``` ...and then this code works just fine, it makes...
BTW, it seems to work just fine with Python 3.7.4 on Windows, despite the multiple hints that I should use Python 2 instead.
I had to pin ipywidgets to the previous generation in my install scripts, or else VSCode would fail. This is annoying. ``` ipywidgets==7.* ```
FYI, I have: ``` from tqdm.notebook import tqdm for ind_train, ind_test in tqdm( kf.split(src_df.index), total=kf.get_n_splits(), desc="k-folds" ): ``` Upgrading all Python modules today broke the TQDM widget. I've downgraded ipywidgets...
This is a great idea. This would be closer to the idea of Adaptive Simulated Annealing: https://en.wikipedia.org/wiki/Adaptive_simulated_annealing When looking for the minimum of a continuous function, and while doing a...