faceforge / main.py
“Transcendental-Programmer”
feat: added requirements and sampling
2bf5660
raw
history blame
445 Bytes
from latent_space_explorer import GameConfig, LatentSpaceExplorer
if __name__ == "__main__":
config = GameConfig(
call_every = 100
)
explorer = LatentSpaceExplorer(config)
explorer.set_prompts(
[
"A photo of a cat",
"A space-aged ferrari",
"artwork of the titanic hitting an iceberg",
"a photo of a dog"
]
)
while True:
explorer.update()