2023-11-28 12:36:54 +00:00
|
|
|
steps:
|
2023-11-30 01:04:15 +00:00
|
|
|
"train":
|
2023-11-30 00:45:04 +00:00
|
|
|
image: nvcr.io/nvidia/tensorflow:23.10-tf2-py3
|
2023-01-17 15:51:35 +00:00
|
|
|
commands:
|
2023-11-30 01:04:15 +00:00
|
|
|
- echo "starting python script"
|
2023-11-30 00:45:04 +00:00
|
|
|
- python run.py
|
2023-11-30 01:21:14 +00:00
|
|
|
"compress and upload":
|
|
|
|
image: alpine:3
|
|
|
|
commands:
|
|
|
|
- apk --no-cache add zip curl
|
|
|
|
- zip mymodel.zip mymodel.keras
|
|
|
|
- curl -F fileUpload=@mymodel.zip https://share.storage.sandbox.iuk.hdm-stuttgart.de/upload
|
2023-01-19 07:36:27 +00:00
|
|
|
|