110 questions
0
votes
0
answers
15
views
Set_weights for the FedBN algorithm
Attack classification with FedBN algorithm, but normalization is causing difference in weight set.
ValueError: You called `set_weights(weights)` on layer "model_1" with a weight list of ...
0
votes
0
answers
82
views
Low CIFAR-10 Accuracy (60%) in Decentralized Federated Learning (DFL) - Seeking Improvement
I implemented an algorithm in a Decentralized Federated Learning (DFL) environment. When I experimented with MNIST and Fashion-MNIST, I achieved an accuracy of 80–90%. However, when testing with CIFAR-...
0
votes
1
answer
236
views
How can I connect to Bigquery in Airflow using an AWS federated token json?
I need to build an airflow connector that reads from google bigquery, despite being hosted on aws.
My devops team have created a secret json in the format of:
{
"type": "...
2
votes
1
answer
75
views
AttributeError: module 'tensorflow_federated.python.core.backends.native' has no attribute 'set_remote_python_execution_context'
I have the following code:
import grpc
ip_address = ['0.0.0.0'] * n_workers #@param {type:"string"}
ports = [80+i for i in range(n_workers)] #@param {type:list["integer"]}
...
1
vote
0
answers
53
views
problem in implementing FedAvg algorithm in TF
I am implementing FL using TF in google colab ( not using TFF), I am using Bot-IoT datasets and I divide the data into 10 clients such that each client take all types of classes so it can train on all ...
0
votes
0
answers
52
views
MySQL Trigger / Federated Tables
I'm struggling to achive this:
I have a mysql server A (w/c is a percona server) and a mysql server B (w/c is also a percona server)
In the mysql server a, I have this database proddb and a table ...
1
vote
0
answers
71
views
Attempting to run TensorFlow Federated
AttributeError Traceback (most recent call last)
in <cell line: 2>()
1 #100 epoch
----> 2 federated_metrics = evaluator(state.model, val_data)
3 federated_metrics
...
0
votes
1
answer
697
views
Different UPN suffix for a user other than federated domain and try to sync that user
What will happen if you give different UPN suffix for a user other than federated domain and try to sync that user in Azure AD.
1
vote
0
answers
408
views
How to set credentials for federated query with SPARQLWrapper in Python? (i.e. 2nd SPARQL endpoint)
Python's SPARQLWrapper has setCredentials to specify credentials for SPARQL query, but it is meant for the current SPARQL endpoint. So, I wonder how to specify credentials for 2nd endpoint in the ...
1
vote
1
answer
496
views
How does the MySQL FEDERATED Storage Engine handle column/schema changes of local and remote databases?
The title pretty much says it all.
I was wondering how changes to the remote or local table (e.g. adding a column) would affect the connection between them and could not find any resources about it.
...
1
vote
0
answers
32
views
MySQL option --federated not known - Debian [duplicate]
After an update, I need to re-activate federated option on MySQL 8.0.31.
I have modify /etc/mysql/my.cnf to add federated option and restart MySQL but:
Mysql return mysql: [ERROR] unknown option '--...
0
votes
1
answer
443
views
Federated table issue
I linked a table called timesheet from a remote server by using the FEDERATED engine.
The table has these fields:
ts_id
ts_userid
ts_weekend
If I execute this query, the result is correct, including ...
0
votes
0
answers
71
views
It is possible to select table from database of remote server2 even you are in the remote server1, Not in local server?
I have Remote_Server1 and Remote_Server2. From Remote_Server1 i want to select tables in the database of Remote_Server2
It is possible? If yes, How?
I try to use federated engine but it only in local ...
0
votes
1
answer
480
views
Login to Microsoft Graph JavaScript SDK using federated credential instead of client secret or certificate (application user)
How can we authenticate to Microsoft Graph using federated credentials and GitHub workflows?
I have registered an app in Azure Active Directory under 'App Registrations'. And I'm planning to use ...
1
vote
1
answer
180
views
How to access labels with TFF
I was following this Image classification tutorial and Text Generation tutorial. So I've implemented transfer learning with fine-tuning on my dataset but I don't know how to access labels whenever I ...