-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from openclimatefix/jacob/nature-paper
Match Nature Paper Implementation
- Loading branch information
Showing
19 changed files
with
1,740 additions
and
702 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import tensorflow as tf | ||
import tensorflow_hub | ||
import torch | ||
from nowcasting_gan import DGMR | ||
import os | ||
import fsspec | ||
|
||
module = tensorflow_hub.load("/home/jacob/256x256/") | ||
print(module) | ||
print(module.signatures) | ||
sig_model = module.signatures["default"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .nowcasting_gan import NowcastingGAN | ||
from .generators import NowcastingSampler, NowcastingGenerator | ||
from .discriminators import NowcastingSpatialDiscriminator, NowcastingTemporalDiscriminator | ||
from .dgmr import DGMR | ||
from .generators import Sampler, Generator | ||
from .discriminators import SpatialDiscriminator, TemporalDiscriminator, Discriminator | ||
from .common import LatentConditioningStack, ContextConditioningStack |
Oops, something went wrong.