12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #
- # Copyright 2019 The FATE Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- import os
- from pipeline.backend.pipeline import PipeLine
- # path to data
- # default fate installation path
- DATA_BASE = "/data/projects/fate"
- def main():
- # parties config
- guest = 9999
- # partition for data storage
- partition = 4
- dense_data = {"name": "breast_hetero_guest", "namespace": "experiment"}
- tag_data = {"name": "tag_value_1", "namespace": "experiment"}
- pipeline_upload = PipeLine().set_initiator(role="guest", party_id=guest).set_roles(guest=guest)
- # add upload data info
- # csv file name from python path & file name
- pipeline_upload.add_upload_data(file=os.path.join(DATA_BASE, "examples/data/breast_hetero_guest.csv"),
- table_name=dense_data["name"], # table name
- namespace=dense_data["namespace"], # namespace
- head=1, partition=partition, # data info
- id_delimiter=",") # id delimiter, needed for spark
- pipeline_upload.add_upload_data(file=os.path.join(DATA_BASE, "examples/data/tag_value_1000_140.csv"),
- table_name=tag_data["name"],
- namespace=tag_data["namespace"],
- head=0, partition=partition,
- id_delimiter=",")
- # upload all data
- pipeline_upload.upload(drop=1)
- import json
- print(json.dumps(pipeline_upload._upload_conf(), indent=4))
- if __name__ == "__main__":
- main()
|