【问题标题】:Exploding memory consumption when training FL model with varying number of participants per round训练每轮参与者数量不同的 FL 模型时内存消耗爆炸式增长
【发布时间】:2021-03-10 03:00:00
【问题描述】:

我正在按照image classification 教程运行 FL 算法。每一轮的参与者人数根据预定义的参与者人数列表而有所不同。

number_of_participants_each_round = 
[108, 113, 93, 92, 114, 101, 94, 93, 107, 99, 118, 101, 114, 111, 88, 
101, 86, 96, 110, 80, 118, 84, 91, 120, 110, 109, 113, 96, 112, 107, 
119, 91, 97, 99, 97, 104, 103, 120, 89, 100, 104, 104, 103, 88, 108]

在开始训练之前对联合数据进行预处理和批处理。


NUM_EPOCHS = 5
BATCH_SIZE = 20
SHUFFLE_BUFFER = 418
PREFETCH_BUFFER = 10

def preprocess(dataset):
    def batch_format_fn(element):
        return collections.OrderedDict(
            x=tf.reshape(element['pixels'], [-1, 784]),
            y=tf.reshape(element['label'], [-1, 1]))

    return dataset.repeat(NUM_EPOCHS).shuffle(SHUFFLE_BUFFER).batch(
        BATCH_SIZE).map(batch_format_fn).prefetch(PREFETCH_BUFFER)


def make_federated_data(client_data, client_ids):
    return [preprocess(client_data.create_tf_dataset_for_client(x)) for x in client_ids]

federated_train_data = make_federated_data(data_train, data_train.client_ids)

每轮根据number_of_participants_each_roundfederated_train_data[0:expected_total_clients]中随机抽取参与者,然后iterative_process执行45 rounds

expected_total_clients = 500
round_nums = 45

for round_num in range(0, round_nums):
   sampled_clients = 
       np.random.choice(a=federated_train_data[0:expected_total_clients],                          
                        size=number_of_participants_each_round[round_num], 
                        replace=False)
    
   state, metrics = iterative_process.next(state, list(sampled_clients))
   print('round {:2d}, metrics={}'.format(round_num + 1, metrics))

问题是VRAM 的使用在几轮后迅速爆发,在6~7 轮达到5.5 GB,并以大约0.8 GB/round 的速率持续增加,直到训练最终在25~26 轮崩溃VRAM 到达17 GB 并创建了+4000 python 线程。

下面的错误信息

F tensorflow/core/platform/default/env.cc:72] Check failed: ret == 0 (35 vs. 0)Thread creation via pthread_create() failed.

### 疑难解答###

number_of_participants_each_round 减少到20 可以完成训练,但内存消耗仍然很大并且还在增长。

以每轮固定数量的参与者运行相同的代码,内存消耗很好,整个训练过程中总共有大约1.5 ~ 2.0 GB VRAM。

expected_total_clients = 500
fixed_client_size_per_round = 100
round_nums = 45

for round_num in range(0, round_nums):
   sampled_clients =
      np.random.choice(a=federated_train_data[0:expected_total_clients],
                       size=fixed_client_size_per_round,
                       replace=False)
    
    state, metrics = iterative_process.next(state, list(sampled_clients))
    print('round {:2d}, metrics={}'.format(round_num + 1, metrics))

额外细节:

OS: MacOS Mojave, 10.14.6
python -V: Python 3.8.5 then downgraded to Python 3.7.9
TF version: 2.4.1
TFF version: 0.18.0
Keras version: 2.4.3

这是正常的记忆行为还是bug?是否有任何重构/提示来优化内存消耗?

【问题讨论】:

    标签: tensorflow-federated


    【解决方案1】:

    问题是 TFF 运行时进程的 executor stack 中的错误。

    下面的完整详细信息和错误修复

    https://github.com/tensorflow/federated/issues/1215

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2020-11-23
      • 2018-09-15
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-06-17
      相关资源
      最近更新 更多