ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

【论文考古】联邦学习开山之作 Communication-Efficient Learning of Deep Networks from Decentralized Data

2022-02-21 21:00:31  阅读:269  来源: 互联网

标签:Decentralized 训练 Efficient Communication 通信 用户 准确率 100 FL


B. McMahan, E. Moore, D. Ramage, S. Hampson, and B. A. y Arcas, “Communication-Efficient Learning of Deep Networks from Decentralized Data,” in Proceedings of the 20th International Conference on Artificial Intelligence and Statistics, Apr. 2017, pp. 1273–1282.

联邦学习

特征

  • unbalanced and non-IID data:数据的异构性是FL的决定性特征
  • massively distributed:用户数量比每个用户的平均样本数量还要多
  • limited communication (client availability):考虑offline/slow/expensive connections

优势:communication-efficient

communication-efficient的含义并不是相较于传输整体数据或整个网络结构,只传输参数更新会降低通信开销。而是和同步的SGD(仅用所有本地数据训练一次就进行参数合并,是当时的基于数据中心训练方法的SOTA)相比,在更少的通信次数下就能达到目标准确率(减少10到100倍的通信次数)。

our goal is to use additional computation in order to decrease the number of rounds of communication needed to train a model

对于不传输本地数据这一点,作者强调的是隐私保护,而不是节省通信开销。

核心算法:FedAvg

精彩观点

  • 每次更新只针对当前模型,因此不建议利用连续两次更新的相关性

    Since these updates are specific to improving the current model, there is no reason to store them once they have been applied.

  • 每一轮的用户参与并不是越多越好,需要考虑一个性能和通信的折衷

    We only select a fraction of clients for efficiency, as our experiments show diminishing returns for adding more clients beyond a certain point.

  • FedAvg的有很强的鲁棒性,作者推测是因为带来了类似于dropout的正则化作用

    averaging provides any advantage (vs. actually diverging) when we naively average the parameters of models trained on entirely different pairs of digits. Thus, we view this as strong evidence for the robustness of this approach

    We conjecture that in addition to lowering communication costs, model averaging produces a regularization benefit similar to that achieved by dropout [36]

  • batch size只要和硬件相匹配,减少它就不会显著增加计算时间

    As long as B is large enough to take full advantage of available parallelism on the client hardware, there is essentially no cost in computation time for lowering it, and so in practice this should be the first parameter tuned.

性能提升

  • 多个模型框架、大小规模都能应用
    • 2层NN,16万参数;3层CNN,166万参数
    • MNIST:100个用户,non iid下每个用户包括的手写数字不超过2个,CNN下97次通信可以达到99%准确率,比FedSGD快10倍;NN下380次通信达到97%正确率;iid 下CNN本地参数更新1200次,18次通信达到99%准确率,通信次数下降35倍
    • Cifar10:100个用户,80%准确率,通信280次,快64倍
    • Shakespeare: 1146个用户,达到54%准确率,non IID下快95倍
    • 大规模LSTM:50万个用户,一千万的post,每次200个用户更新,准确率10.5%,快23倍
  • 本地训练batch size取10或50,epoch取5或20,fraction取0.1

挖的坑

  • 文章的训练对象是mobile devices,因此和通信结合是自然而然的

    the identification of the problem of training on decentralized data from mobile devices as an important research direction

    • 不稳定通信情况下的调度
    • 考虑通信资费的博弈论角度
    • 通信中误码率的影响、传输速率的影响
  • 异构数据

    • 数据初始分布不同有何影响(每个用户的损失函数都不同)

      \(F_k\) could be an arbitrarily bad approximation to \(f\)

      \[f(w)=\sum_{k=1}^{K} \frac{n_{k}}{n} F_{k}(w) \quad \text { where } \quad F_{k}(w)=\frac{1}{n_{k}} \sum_{i \in \mathcal{P}_{k}} f_{i}(w) \]

    • 训练中数据的增删有何影响

    • 数据的上线时段不同有何影响

    • 在不平衡的数据分布下,小数据集的过拟合程度很大,也没有影响吗?

  • 网络参数传输

    • 部分网络传输

    • one-shot averaging(多半是正则的)训练完后直接合并

    • 本地训练的过拟合程度和发散究竟有何关系?

      • Shakespeare LSTM过拟合后发散严重,但是MNIST CNN没有(但还是本地越多越容易发散)
      • 大规模LSTM时,epoch为1时的训练速度比epoch为5时更快

      This result suggests that for some models, especially in the later stages of convergence, it may be useful to decay the amount of local computation per round (moving to smaller E or larger B) in the same way decaying learning rates can be useful.

评价

文章价值

新意100×有效1000×研究问题100

为什么能诞生FL

当两个模型采用同一套参数初始值时,过拟合训练直接参数平均就能提高模型性能!所以和分布式SGD的每本地训练一次就上传相比,大大减少了通信的次数。

这个发现是在IID的情况下做的,仿真下发现在non IID下也有显著提升。但是没有IID下提升那么明显,可能是个可以挖的坑。

Recent work indicates that in practice, the loss surfaces of sufficiently over-parameterized NNs are surprisingly well-behaved and in particular less prone to bad local minima than previously thought [11, 17, 9].

we find that naive parameter averaging works surprisingly well

the average of these two models, \(\frac{1}{2}w+ \frac{1}{2}w^\prime\), achieves significantly lower loss on the full MNIST training set than the best model achieved by training on either of the small datasets independently.

为什么FL能这么火

  • 时代的潮流:大量用户、设备算力增强、隐私越来越被重视、有切实的应用价值
  • 足够简单的框架,很容易follow,马太效应

提示与启发

  • 在服务器端用proxy data 是常规操作(虽然FL不需要),但其实和用户的真实数据集还是存在差异
  • 先用多个(2000)individual training+proxy data进行调参
  • next-word prediction是FL的最佳应用场景,符合真实数据、隐私保护、不需要额外标签三个FL特征
  • 一项工作并不是因为他是另外一项工作的直接推广就没有创新。一般的直接推广通常是不能应用、或违反当时人们直觉的。如果在更改某个简单设置后带来了显著的性能提升,那么无疑是巨大的创新。

标签:Decentralized,训练,Efficient,Communication,通信,用户,准确率,100,FL
来源: https://www.cnblogs.com/mhlan/p/15920621.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有