Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

restructure the directories and delete model #140

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deckard/iaac/gcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ sudo apt-get update && sudo apt-get install google-cloud-cli
1-We then create the cluster called `k8s-cluster`. This cluster will be installed in `europe-west4` in GCP regions.
```
gcloud container clusters create k8s-cluster \
--zone europe-west4-a --num-nodes 1 --no-enable-autoupgrade
--zone europe-west4-a --num-nodes 3 --no-enable-autoupgrade --addons=GcpFilestoreCsiDriver
```

2- In order to manage the Kubernetes cluster we need to [install `kubectl`](https://kubernetes.io/docs/tasks/tools/#kubectl).
Expand Down
File renamed without changes.
14 changes: 0 additions & 14 deletions examples/power/conf/deploy-cpu/default.yaml

This file was deleted.

14 changes: 0 additions & 14 deletions examples/power/conf/deploy-nvidia-tesla-a100/default.yaml

This file was deleted.

11 changes: 0 additions & 11 deletions examples/power/conf/deploy-nvidia-tesla-a100/pvc.yaml

This file was deleted.

10 changes: 0 additions & 10 deletions examples/power/conf/deploy-nvidia-tesla-a100/sclass.yaml

This file was deleted.

14 changes: 0 additions & 14 deletions examples/power/conf/deploy-nvidia-tesla-p100/default.yaml

This file was deleted.

11 changes: 0 additions & 11 deletions examples/power/conf/deploy-nvidia-tesla-p100/pvc.yaml

This file was deleted.

10 changes: 0 additions & 10 deletions examples/power/conf/deploy-nvidia-tesla-p100/sclass.yaml

This file was deleted.

14 changes: 0 additions & 14 deletions examples/power/conf/deploy-nvidia-tesla-v100/default.yaml

This file was deleted.

11 changes: 0 additions & 11 deletions examples/power/conf/deploy-nvidia-tesla-v100/pvc.yaml

This file was deleted.

10 changes: 0 additions & 10 deletions examples/power/conf/deploy-nvidia-tesla-v100/sclass.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
# - name: REDIS_PASSWORD
# value: ""
volumeMounts:
- mountPath: /deckard/
- mountPath: /result/
name: mypvc
volumes:
- name: mypvc
Expand Down
8 changes: 4 additions & 4 deletions examples/power/dvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ stages:
cache : false
- ${files.directory}/${files.data_dir}/${files.data_file}${files.data_type}:
cache : false
- ${files.directory}/${files.model_dir}/${files.model_file}${files.model_type}:
cache : false
- ${files.directory}/${files.model_dir}/${files.model_file}.optimizer${files.model_type}:
cache : false
# - ${files.directory}/${files.model_dir}/${files.model_file}${files.model_type}:
# cache : false
# - ${files.directory}/${files.model_dir}/${files.model_file}.optimizer${files.model_type}:
# cache : false
- ${files.directory}/${files.reports}/attack/${files.name}/${files.predictions_file}: # logit outputs for our model
cache : false
deps:
Expand Down
Loading