Sudeep Mandal
Sudeep Mandal
All other `Conv2D` layers have bias=False since they are followed by a batch-norm layer which essentially has a bias term. However, the final layer does not have batch-norm at the...
Results in following error: ``` C:\Anaconda\lib\site-packages\easyplot\easyplot.pyc in add_plot(self, *args, **kwargs) 177 line, = ppl.plot(ax, *self.args, **plot_kwargs) 178 else: --> 179 line, = ax.plot(*self.args, **plot_kwargs) 180 181 self.line_list.append(line) ValueError: too many...
Currently, `ax` and `fig` kwargs have to be passed in together for EasyPlot to plot in the correct axes. This should not be the case. If only `fig` is supplied...
`x` value(s) are optional for `pytplot.plot()` as well as `EasyPlot.add_plot()`. These should also be optional for the `iter_plot()` method. Currently, it is a compulsory argument.
`new_plot()` should not mutate existing EasyPlot instance. Instead, create duplicate EasyPlot object
In EasyPlot 1.0.0, the `new_plot()` instance method mutates the `EasyPlot` instance on which it is called to create a new plot while retaining plot parameters that were previously set on...
Reference: http://matplotlib.org/examples/api/two_scales.html
Why violate the Honor Code and post solutions online despite requests from instructors not to do so?
I just stumbled across this while searching for some other Spark related stuff. I really hope you reconsider posting this up publicly out of respect for the instructors of the...
https://github.com/gothinkster/react-mobx-realworld-example-app/blob/25e7ed4f07f3f6bbb3bf219f4b1ec60dc0e18544/src/stores/articlesStore.js#L18 Thanks for having this repo as a nice example of MobX + React. I was just browsing through the code and noticed that this method should probably be an...