EasyFL
EasyFL copied to clipboard
An easy-to-use federated learning platform
Is it possible to apply this FL architecture in transformer model?
great works!!Can I use the dataset for object detection and how should I modify the configuration?
Hi, Thanks for the good work and open source of EasyFL. I am interested in your recent work discussing the SSL + FL. When I run the FedSSL, I found...
/ ——> true.divide // ——> floor.divide  python==3.7.13 pytorch==1.6.0
Thank you for your great work! While I was able to successfully execute the experiments, I encountered a slight discrepancy in the accuracy results. Specifically, I achieved an accuracy of...
Hi, I am trying Easyfl but faced some issues with plotting loss graph. is there any supporting material about it?
` # fine-tune model if args.use_MLP: logreg = MLP(num_features, n_classes, 4096) logreg = logreg.to(device) else: logreg = nn.Sequential(nn.Linear(num_features, n_classes)) logreg = logreg.to(device) # loss / optimizer criterion = nn.CrossEntropyLoss() optimizer...
Hi, I read the configuration file that supports the common DL models. But I have some customized models and non-public datasets as well (for classifying images) and need to use...
Hello, I want to use gpu speed up the training process. However the default gpu which id is "0" has been occupied. So I want to specify the gpu to...