Dr. David Langerman

Results 3 issues of Dr. David Langerman

> > Traceback (most recent call last): > File "~/development/cgp-cnn/cnn_train.py", line 118, in __call__ > optimizer.update(model, x, t) > File "/usr/local/lib/python2.7/dist-packages/chainer/optimizer.py", line 528, in update > loss = lossfun(*args, **kwds)...

## Description The example [here](https://docs.nvidia.com/deeplearning/tensorrt/api/python_api/infer/Core/Logger.html) is below ```python from tensorrt import tensorrt as trt class MyLogger(trt.ILogger): def __init__(self): trt.ILogger.__init__(self) def log(self, severity, msg): return MyLogger() ``` Unfortunately, this raises ```...

triaged

The starter script could really be much more useful if there was a requirements.txt file that could be used to automatically install the dependencies instead of having to hunt for...