We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64df028 commit f7607e9Copy full SHA for f7607e9
pyproject.toml
@@ -35,6 +35,7 @@ test = [
35
"numpy>=2.2.6",
36
"pytest>=8.4.1",
37
"scikit-image>=0.25.2",
38
+ "matplotlib>=3.10.3",
39
]
40
41
# Formatting, linting, etc.
src/current_denoising/generation/dcgan.py
@@ -154,7 +154,9 @@ def train(
154
# We'll be tracking training using the FID score
155
fid_model = resnet18(pretrained=True)
156
fid_model.to("cuda")
157
- fid_metric = FrechetInceptionDistance(feature_dim=1000, model=fid_model, device="cuda")
+ fid_metric = FrechetInceptionDistance(
158
+ feature_dim=1000, model=fid_model, device="cuda"
159
+ )
160
fid_scores = []
161
162
gen_losses = []
0 commit comments