python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Keras model prediction after tensorflow federated learning
I am working with TensorFlow Federated framework and designed a keras model for a binary classification problem. I defined the iterative process with tff.learning.build_federated_averaging_process and...
crazynovatech
Votes: 0
Answers: 1
Train the local model in federated learning using logistic regression
I am building a federated learning model using Tensorflow federated, and I am following the tutorials provided in the official documentation.
As I can see, most of the implementations provided are usi...
Alwani
Votes: 0
Answers: 0
How the centralized server model is updated with aggregated client metrics in TensorflowFederated
I have designed the Federated Learning model with TensorFlow Federated framework. Defined the iterative process as below,
iterative_process = tff.learning.build_federated_averaging_process(
model_...
crazynovatech
Votes: 0
Answers: 1
TFF: evaluating the federated learning model and got a large increase of loss value
I am trying to evaluate the Federated Learning model following this tutorial. As in the code below
test_data = test.create_tf_dataset_from_all_clients().map(reshape_data).batch(2)
test_data = test_dat...
Eden
Votes: 0
Answers: 2