This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# alexnet.py | |
""" AlexNet. | |
References: | |
- Alex Krizhevsky, Ilya Sutskever & Geoffrey E. Hinton. ImageNet | |
Classification with Deep Convolutional Neural Networks. NIPS, 2012. | |
Links: | |
- [AlexNet Paper](http://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks.pdf) | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from vjoy import vj, setJoy | |
import numpy as np | |
import time | |
print("vj opening", flush=True) | |
vj.open() | |
time.sleep(1) | |