CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
import_np_parallel.py14 linesDownload Raw Back to tests
1import threading2import time3 4import lazy_loader as lazy5 6 7def import_np():8    time.sleep(0.5)9    lazy.load("numpy")10 11 12for _ in range(10):13    threading.Thread(target=import_np).start()14 
Aluode/PerceptionLabPortable · CoolFace