Federated Learning
Python https://github.com/Asabeneh/30-Days-Of-Python https://www.codegavin.cn/tags/学习日记/page/2/
https://www.geeksforgeeks.org/ml-stochastic-gradient-descent-sgd/
Logistic Regression的数学推导过程以及Python实现
sudo apt-get install python3-venv
cd 目录
#创建虚拟环境
python3 -m venv venv
#启动虚拟环境
source venv/bin/activate
#关闭虚拟环境
activate
联邦学习(Federated Learning)详解以及示例代码