CS234 icon indicating copy to clipboard operation
CS234 copied to clipboard

bug if NOT self.config.grad_clip

Open zyxue opened this issue 6 years ago • 1 comments

FYI, https://github.com/zlpure/CS234/blob/master/assignment2/q2_linear.py#L245

would produce error as clipped_grads_and_vars wouldn't be available if not self.clipped_grads_and_vars

zyxue avatar Apr 30 '18 20:04 zyxue

Thanks! if NOT self.config.grad_clip, clipped_grads_and_vars is not defined. But the performance will be better when using grad clipping. So I omit the self.config.grad_clip flag.

zlpure avatar May 09 '19 14:05 zlpure