-
Notifications
You must be signed in to change notification settings - Fork 2
/
requirements.linux.arm64.txt
26 lines (20 loc) · 1.37 KB
/
requirements.linux.arm64.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#! Python3.7
Pandas # Installing Pandas, a data analysis / data manipulation tool
CoreMLTools # Installing CoreMLTools, for working with .mlmodel format models
OpenCV-Python # Installing OpenCV, the Open source Computer Vision library
Pillow<10.0.0 # Installing Pillow, a Python Image Library
SciPy # Installing SciPy, a library for mathematics, science, and engineering
PyYAML # Installing PyYAML, a library for reading configuration files
# Specific versions that match the models we're using. This requires <= Python 3.9. Any
# version higher can use Python 3.10
# Torch==1.10.1 # Installing Torch, for Tensor computation and Deep neural networks
# TorchVision==0.11.2 # Installing TorchVision, for Computer Vision based AI
# This is annoying.
# https://discuss.pytorch.org/t/failed-to-load-image-python-extension-could-not-find-module/140278/15
torch==1.9.0 # Installing Torch, for Tensor computation and Deep neural networks
torchvision==0.10.0 # Installing TorchVision, for Computer Vision based AI
## These to be removed (not needed for inference)
# matlabplotlib
Seaborn # Installing Seaborn, a data visualization library based on matplotlib
CodeProject-AI-SDK # Installing the CodeProject.AI SDK
# last line empty.