FATE icon indicating copy to clipboard operation
FATE copied to clipboard

An Industrial Grade Federated Learning Framework

Results 385 FATE issues
Sort by recently updated
recently updated
newest added

请问现存版本中是否有实现DP差分隐私相关的功能? 【背景】 因为项目中要求必须有差分隐私这个功能点,所以调研后希望将opacus这个谷歌开源的差分隐私的包集成到FATE框架中 但是在集成过程中,opacus需要包装装饰optimizer、model和data_loader,但是FATE得data_loader属于不能定制化的,因此没有办法集成。 【关键问题】 1. 现有版本是否可以集成opacus? 2. 未来是否有FATE框架内部实现的DP?

请问FATE各个版本是否有常用算法(PSI,LR,XGB等)的性能测试数据?在哪里可以找到相关数据呢?

我在fate中训练/data/projects/fate/examples/dsl/v2/hetero_nn,操作如下: 1、flow job submit -d test_hetero_nn_dsl.json -c test_hetero_nn_binary_conf.json 2、flow model deploy --model-id guest-9999#host-10000#model --model-version 202110260516394222190 3、flow model -c publis.json { "initiator": { "party_id": "9999", "role": "guest" }, "role": { "guest":...

![image](https://github.com/FederatedAI/FATE/assets/54175551/ab81e2be-20e5-474b-bcf1-af3507b8b2c2) 运行结果如下: ![image](https://github.com/FederatedAI/FATE/assets/54175551/6509fb7e-2dd2-4b0d-837a-50e5cfc238f7)

打开fateboard网页,登录之后报错Fateflow module connection error! 无法在界面上显示内容

**Describe the bug** Error reported when running "Resnet example" example. Other issuses also raised questions #5213 **To Reproduce** Steps to reproduce the behavior: 1. Go to doc/tutorial/pipeline/nn_tutorial/Resnet-example.ipynb 2. Run **Expected...

Signed-off-by: [email protected] execution exception when data_transform component parameter missing_fill_method is set to min、max... tips: feature data type is int , but fill value is float Changes: 1. imputer

您好!请问一下目前支持吗?有更新计划吗?

[文档中](https://github.com/FederatedAI/FATE/tree/master/examples/pipeline/upload)所使用的的例子都是.csv文件,如何上传自定义数据? ![图片](https://github.com/FederatedAI/FATE/assets/31330044/8ed9da06-01f0-4428-bfbe-975b0ac6cb83)

我想修改评分卡的计算逻辑,所以新写了一个方法,但是一直报AttributeError: type object 'Scorecard' has no attribute 'compute_credit_score_v2'。然后我尝试只是把Scorecard.compute_credit_score改成Scorecard.compute_credit_score_v2,其他都没改动同样会报这个错。 ![f156ca08afde0829f3f92d9a5c34615](https://github.com/FederatedAI/FATE/assets/33820976/08c9172a-5b91-4228-8b9c-54de095da560) ![2cb602020e6555dc464581da909db85](https://github.com/FederatedAI/FATE/assets/33820976/d4ff1bf6-fa77-469a-a42b-4d640e1435e8) 我又尝试在原方法上修改,只是删除了原方法的一些参数,运行时报TypeError: compute_credit_score() missing 5 required positional arguments: 'offset', 'factor', 'factor_base', 'upper_limit_value', and 'lower_limit_value',但是我修改的方法根本没有这些参数。 ![af4fafeee5787a624ff0c7a22cea2dd](https://github.com/FederatedAI/FATE/assets/33820976/afb09878-c11a-4801-a311-f775d8baa52d) 请问,我需要怎么自定义方法,或者还需要在哪里修改呢?