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
| import os,requests,platform,json,subprocess | |
| import tarfile | |
| from zipfile import ZipFile | |
| debug=False | |
| os_type=platform.system().lower() | |
| machine_type=platform.machine().lower() | |
| if debug:print(f'Your OS and Machine Type is {os_type} and {machine_type}') | |
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
| name: fastai-test-cpu | |
| channels: | |
| - fastai | |
| - pytorch | |
| - defaults | |
| - #peterjc123 # Assuming Test are to be run on Ubuntu Backends | |
| dependencies: | |
| - scipy # Scientific Library for Python | |
| - numpy # array processing for numbers, strings, records, and objects. | |
| - pillow # Python Imaging Library (Fork) |