1

I am trying to study federated machine learning on time series data. The data is collected from multiple clients. How to convert this data into federated data ?

  • Welcome Savita! Could the question be extend to include more details about the original data format, the model to be trained, and any other constraints? This will those who answer provide more relevant information. – Zachary Garrett Feb 17 '20 at 16:11

1 Answers1

0

In Tensorflow Federated we generally consider federated data as a dataset pivoted on the clients. It sounds like here it might be useful to pivot on clients, but retain the time series ordering of that data.

jpgard gives a great answer in How to create federated dataset from a CSV file? that can be used as an example for other file formats.

Zachary Garrett
  • 2,911
  • 15
  • 23