1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-29 07:22:12 +03:00

debugging

This commit is contained in:
sayakpaul
2023-08-23 16:30:51 +05:30
parent 66955beba6
commit 54e683f773

View File

@@ -164,7 +164,7 @@ class FullAdapter(nn.Module):
for block in self.body:
x = block(x)
features.append(x)
print(f"Number of features: {len(features)}")
return features
@@ -293,7 +293,7 @@ class LightAdapter(nn.Module):
for block in self.body:
x = block(x)
features.append(x)
print(f"Number of features: {len(features)}")
return features