tools / run_if_orig.py
patrickvonplaten's picture
up
e58dd86
raw
history blame
No virus
218 Bytes
#!/usr/bin/env python3
from deepfloyd_if.modules import IFStageI
from time import time
start_time = time()
model = IFStageI(dir_or_name="/home/patrick/IF-I-IF-v1.0/", device="cuda")
print("Time", time() - start_time)