Yakov Keselman

Results 2 comments of Yakov Keselman

Below is code that works in Google Colab. You can check their combination of various parameters (cudnn, nvidia-toolkit, cuda). On a Google cloud GPU-enabled machine what worked was libnvidia-470, libcudnn7,...

``` from dateutil.parser import parse from intervaltree import IntervalTree d1 = parse('2020-03-20') d2 = parse('2020-03-22') t = IntervalTree() t[d1:d2] = 0 ```