Deci-AI / super-gradients

Easily train or fine-tune SOTA computer vision models with one open source training library. The home of Yolo-NAS.
https://www.supergradients.com
Apache License 2.0
4.59k stars 510 forks source link

Anyone successfully installed Yolo-nas on a closed network with no Internet connection? #1216

Closed whnam87 closed 1 year ago

whnam87 commented 1 year ago

💡 Your Question

I have an Ubuntu container environment provided by my company, but this is a closed network with no Internet connection.

The container environment is running Python 3.8 with tf 2.4.0, torch 1.9.0, cuda 11.1 on Ubuntu 20.04 on AMD64 and has high-end hardware installed: Nvidia A100 80GB x 3 without internet connection. So I cannot use the 'apt-get' or 'pip install' command with the Internet connection.

The Ultralytics requires many dependencies, but anyone who has successfully installed Yolo-nas on a closed network can share the way?

Versions

No response

Louis-Dupont commented 1 year ago

Hi @whnam87 If you don't have control over the container building and don't have access to the internet then I don't see a clean and simple way to handle that. I guess a workaround may be to setup a python virtual env on a device with internet, download and install everything needed there, then copy these to the device running the container, and finally build a volume mapping to these files when launching the container. This assumes that you have write access to the device where you want to run all of this.

whnam87 commented 1 year ago

Not solved