Unverified Commit 18c5a692 authored by Boris Bonev's avatar Boris Bonev Committed by GitHub
Browse files

Bbonev/gradient analysis sfno (#19)

* Adding notebooks for gradient analysis

* Updated the Readme

* Refactored training script for sfno

* removing concatanated skip connections

* Added some logic for initializing weights adaptively

* Cleanup and fixing initialization in SFNO. Removing non-linear variant of SFNO

* Updated initialization scheme for SFNO

* Some more cleanup in SFNO

* updated the SFNO architecture
parent 4dadf551
...@@ -96,7 +96,7 @@ def plot_data(data, ...@@ -96,7 +96,7 @@ def plot_data(data,
fig = plt.figure(figsize=(10, 5)) fig = plt.figure(figsize=(10, 5))
ax = fig.add_subplot(1, 1, 1, projection=projection) ax = fig.add_subplot(1, 1, 1, projection=projection)
im = ax.pcolormesh(Lon, Lat, data, cmap=cmap, **kwargs) im = ax.pcolormesh(Lon, Lat, data, cmap=cmap, **kwargs)
if colorbar: if colorbar:
plt.colorbar(im) plt.colorbar(im)
plt.title(title, y=1.05) plt.title(title, y=1.05)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment