-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from XinYao1994/main
[Enhancement Request] Integrate Plato into Sedna as a backend for supporting federated learning - Phase one
- Loading branch information
Showing
22 changed files
with
1,017 additions
and
14 deletions.
There are no files selected for viewing
87 changes: 87 additions & 0 deletions
87
build/crd-samples/sedna/federatedlearningjob_yolo_v1alpha1.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
apiVersion: sedna.io/v1alpha1 | ||
kind: FederatedLearningJob | ||
metadata: | ||
name: yolo-v5 | ||
spec: | ||
pretrainedModel: # option | ||
name: "yolo-v5-pretrained-model" | ||
transmitter: # option | ||
ws: { } # option, by default | ||
s3: # option, but at least one | ||
aggDataPath: "s3://sedna/fl/aggregation_data" | ||
credentialName: mysecret | ||
aggregationWorker: | ||
model: | ||
name: "yolo-v5-model" | ||
template: | ||
spec: | ||
nodeName: "sedna-control-plane" | ||
containers: | ||
- image: kubeedge/sedna-example-federated-learning-mistnet-yolo-aggregator:v0.4.0 | ||
name: agg-worker | ||
imagePullPolicy: IfNotPresent | ||
env: # user defined environments | ||
- name: "cut_layer" | ||
value: "4" | ||
- name: "epsilon" | ||
value: "100" | ||
- name: "aggregation_algorithm" | ||
value: "mistnet" | ||
- name: "batch_size" | ||
value: "32" | ||
resources: # user defined resources | ||
limits: | ||
memory: 8Gi | ||
trainingWorkers: | ||
- dataset: | ||
name: "coco-dataset-1" | ||
template: | ||
spec: | ||
nodeName: "edge-node" | ||
containers: | ||
- image: kubeedge/sedna-example-federated-learning-mistnet-yolo-client:v0.4.0 | ||
name: train-worker | ||
imagePullPolicy: IfNotPresent | ||
args: [ "-i", "1" ] | ||
env: # user defined environments | ||
- name: "cut_layer" | ||
value: "4" | ||
- name: "epsilon" | ||
value: "100" | ||
- name: "aggregation_algorithm" | ||
value: "mistnet" | ||
- name: "batch_size" | ||
value: "32" | ||
- name: "learning_rate" | ||
value: "0.001" | ||
- name: "epochs" | ||
value: "1" | ||
resources: # user defined resources | ||
limits: | ||
memory: 2Gi | ||
- dataset: | ||
name: "coco-dataset-2" | ||
template: | ||
spec: | ||
nodeName: "edge-node" | ||
containers: | ||
- image: kubeedge/sedna-example-federated-learning-mistnet-yolo-client:v0.4.0 | ||
name: train-worker | ||
imagePullPolicy: IfNotPresent | ||
args: [ "-i", "2" ] | ||
env: # user defined environments | ||
- name: "cut_layer" | ||
value: "4" | ||
- name: "epsilon" | ||
value: "100" | ||
- name: "aggregation_algorithm" | ||
value: "mistnet" | ||
- name: "batch_size" | ||
value: "32" | ||
- name: "learning_rate" | ||
value: "0.001" | ||
- name: "epochs" | ||
value: "1" | ||
resources: # user defined resources | ||
limits: | ||
memory: 2Gi |
This file contains 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
23 changes: 23 additions & 0 deletions
23
examples/federated-learning-mistnet-yolo-aggregator.Dockerfile
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM tensorflow/tensorflow:1.15.4 | ||
|
||
RUN apt update \ | ||
&& apt install -y libgl1-mesa-glx git | ||
|
||
COPY ./lib/requirements.txt /home | ||
|
||
RUN python -m pip install --upgrade pip | ||
|
||
RUN pip install -r /home/requirements.txt | ||
|
||
ENV PYTHONPATH "/home/lib:/home/plato:/home/plato/packages/yolov5" | ||
|
||
COPY ./lib /home/lib | ||
RUN git clone https://github.com/TL-System/plato.git /home/plato | ||
|
||
RUN pip install -r /home/plato/requirements.txt | ||
RUN pip install -r /home/plato/packages/yolov5/requirements.txt | ||
|
||
WORKDIR /home/work | ||
COPY examples/federated_learning/yolov5_coco128_mistnet /home/work/ | ||
|
||
CMD ["/bin/sh", "-c", "ulimit -n 50000; python aggregate.py"] |
23 changes: 23 additions & 0 deletions
23
examples/federated-learning-mistnet-yolo-client.Dockerfile
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM tensorflow/tensorflow:1.15.4 | ||
|
||
RUN apt update \ | ||
&& apt install -y libgl1-mesa-glx git | ||
|
||
COPY ./lib/requirements.txt /home | ||
|
||
RUN python -m pip install --upgrade pip | ||
|
||
RUN pip install -r /home/requirements.txt | ||
|
||
ENV PYTHONPATH "/home/lib:/home/plato:/home/plato/packages/yolov5" | ||
|
||
COPY ./lib /home/lib | ||
RUN git clone https://github.com/TL-System/plato.git /home/plato | ||
|
||
RUN pip install -r /home/plato/requirements.txt | ||
RUN pip install -r /home/plato/packages/yolov5/requirements.txt | ||
|
||
WORKDIR /home/work | ||
COPY examples/federated_learning/yolov5_coco128_mistnet /home/work/ | ||
|
||
ENTRYPOINT ["python", "train.py"] |
This file contains 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
Oops, something went wrong.