David Mascharka

Results 11 comments of David Mascharka

I think having a discussion of exceptions and exception-handling would be really useful. It's actually super nice because we see various `ValueError`s and other things being thrown throughout the website...

I agree with Ryan; custom exceptions don't seem essential (I've still never written one...) so I'm not sure a section is warranted. As far as other errors to cover go,...

Woah! I just learned this is a thing and it's awesome

Would you want to cover any of `np.linalg`? I know things like `norm` can come in handy, but that might be outside the scope of the site/available for people that...

:+1: this all makes sense. thanks for reading through! I'll make these changes over the next few(?) days and get the ball rolling on this merge

Do you think it would be possible to provide a general-purpose `pool` function that can take in whatever arbitrary expression? Would be nice as you could then do: ``` python...

Just so I'm clear, this is changing: ``` python plotter.set_test_batch(test_metrics, batch_size=1) ``` To something like: ``` python plotter.set_test_batch(test_matrics, batch_sizes=(16, 4) ``` for two metrics? Or did you have something else...

Yeah we might as well test under 1.2 and 1.3 while we're at it. I can do that in the next day or two unless you already have

since we're requiring torch anyway it might be easiest to just replace with `interpolate()`