This commit is contained in:
nasheqlbrm 2025-02-03 13:00:26 +00:00 committed by GitHub
commit 05a2abee2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -69,8 +69,8 @@ def search_images_ddg(key,max_n=200):
pass
def plot_function(f, tx=None, ty=None, title=None, min=-2, max=2, figsize=(6,4)):
x = torch.linspace(min,max)
def plot_function(f, tx=None, ty=None, title=None, min=-2, max=2, steps=100, figsize=(6,4)):
x = torch.linspace(min,max,steps)
fig,ax = plt.subplots(figsize=figsize)
ax.plot(x,f(x))
if tx is not None: ax.set_xlabel(tx)