gxcuit

Results 7 comments of gxcuit

> debug的时候是有一定倾入性的 可能影响到什么状态了 有空的话我们会尝试去跟进找出原因 如果你有什么发现,欢迎在这里同步, 谢谢 ### update: 找到了**临时的解决办法**,如有异常,删除data/${job_id}_${component_name} 目录下的所有文件,例如,`data/202202090957301709460_hetero_sshe_lr_0_0` , 如有必要,同时删除`data/202202090957301709460_hetero_sshe_lr_0_0_host_10000` 以及 `data/202202090957301709460_hetero_sshe_lr_0_0_guest_9999` ### 说明: 正常启动/或直接运行`task_executor.py`/或不加断点的debug,在程序运行成功后,会自动删除/data 目录下的相关文件。 然而,一旦程序中途运行中止/或者加上断点debug,则/data 目录下的相关文件并未完全清理,如下图所示。 ![image](https://user-images.githubusercontent.com/18736196/153128256-bf52aed5-2712-41cc-bf7f-97d9238b1f49.png) 如再次运行`task_executor.py`,guest会报错 `RuntimeError: table not exist: name=9d27f475-8969-11ec-aa3a-00505682f538, namespace=202202090957301709460_hetero_sshe_lr_0_0_host_10000`, 手动删除相关文件即可 ```...

> > > debug的时候是有一定倾入性的 可能影响到什么状态了 有空的话我们会尝试去跟进找出原因 如果你有什么发现,欢迎在这里同步, 谢谢 > > > > > > ### update: > > 找到了**临时的解决办法**,如有异常,删除data/${job_id}_${component_name} 目录下的所有文件,例如,`data/202202090957301709460_hetero_sshe_lr_0_0` , 如有必要,同时删除`data/202202090957301709460_hetero_sshe_lr_0_0_host_10000` 以及 `data/202202090957301709460_hetero_sshe_lr_0_0_guest_9999` > > ### 说明: > >...

> 单机版和集群版任务流程不完全相同,不能简单对比时间,你可以看下这个链接,FATE任务的执行过程。 https://federatedai.github.io/FATE-Flow/latest/fate_flow/#overall-design 感谢回复! 我能使用单机版的执行流程,但host和guest在两台机器上吗?

同遇到了这个问题,您是怎么解决的呢

> 大佬有时间可以维护下吗,造福下弟弟 已经维护 2020/06/05

> 下面是一段使用sf API的代码,运行有问题(在`sf.init`里加上`debug_mode=True`后直接卡住了) > > ```python > import secretflow as sf > import jax.numpy as jnp > import numpy as np > # > from sklearn.datasets import load_iris > from...