Skip to content

Commit

Permalink
Update network type
Browse files Browse the repository at this point in the history
  • Loading branch information
jloveric committed May 14, 2024
1 parent 8e220cb commit 6f15e5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/text_to_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from high_order_layers_torch.networks import *
from pytorch_lightning import Trainer
import matplotlib.pyplot as plt
from high_order_implicit_representation.networks import GenerativeNetwork
from high_order_implicit_representation.networks import GenNet
from pytorch_lightning.callbacks import LearningRateMonitor
from high_order_implicit_representation.rendering import ImageGenerator
from high_order_implicit_representation.single_image_dataset import (
Expand Down Expand Up @@ -44,7 +44,7 @@ def run_implicit_images(cfg: DictConfig):
accelerator=cfg.accelerator,
callbacks=[lr_monitor, image_generator],
)
model = GenerativeNetwork(cfg)
model = GenNet(cfg)
trainer.fit(model, datamodule=data_module)
logger.info("testing")

Expand Down

0 comments on commit 6f15e5e

Please sign in to comment.