Spaces:
Runtime error
Runtime error
Fixed editing file paths
Browse files- generate_videos.py +1 -1
generate_videos.py
CHANGED
@@ -108,7 +108,7 @@ def interpolate_with_boundaries(args, source_latent, alphas):
|
|
108 |
|
109 |
print("Interpolating latent codes...")
|
110 |
|
111 |
-
boundary_dir = Path(os.path.abspath(__file__)).parents[
|
112 |
|
113 |
boundaries_and_distances = []
|
114 |
for direction_type in edit_directions:
|
|
|
108 |
|
109 |
print("Interpolating latent codes...")
|
110 |
|
111 |
+
boundary_dir = Path(os.path.abspath(__file__)).parents[0].joinpath("editing", "interfacegan_boundaries")
|
112 |
|
113 |
boundaries_and_distances = []
|
114 |
for direction_type in edit_directions:
|