* Model input is 3x224x224
* 3 is the number of channels
* RGB or YUV?
* Should the target be centered and cropped?
* Downscaled if it's too large?
---
## More Complications
* What is the input image range?
* \[0,1\]?
* \[0,255\]?
* \[-1,1\]?
* If your input is wrong, you'll get crazy results!
* In many cases, inputs are set to 0 mean, and unit variance (= 1)
* For each image, subtract the mean, and divide by the variance
* Wait, which mean and variance?
* Per image? Or from the training dataset?
---
## Don't Download Whatever!
* Some models may be harder to get working!
* The latest and greatest models also exist in vacuums
* Each one you try will be in a separate repository
* Try to get access to more models with less work!
* As an example, let's say you search for YOLO (You Only Look Once)
---
## Latest and Greatest
Top result on the day I searched\
[https://github.com/ultralytics/ultralytics](https://github.com/ultralytics/ultralytics)