Pranjal Gulati
Pranjal Gulati
Hello, @sdesrozis @vfdev-5. Is this feature request still on the cards? I would love to discuss further and contribute.
Great, so if I can compile the previous discussions, we need level wise debugging modes: - [ ] **Level 1**: simple event and handler prints, output saving and visualization -...
Ok. Can we just have default `level = 0` instead of the `enabled` arg? Also, are we expecting the intermediate output same as mentioned previously in the comment? ``` ITERATION...
Sure. For a start, I tried the following, within the `Engine` class: ```python def debug(self, level: int = 0): self.debug_level = level def _print_debug_mode(self, string: str, level: int): if level...
Yes. Can I change the approach to have custom log levels, using `logging.addLevelName` for all the three levels? or do I simply change the above to: ```python def _log_debug_mode(self, string:...
Hey @jafermarq. Here is the first working version of the FedMix baseline. I ran an experiment for CIFAR10 using the parameters mentioned in the paper, and the results were different...
Hello @jafermarq! Really sorry for the late reply. I got caught up in a little academic workload. I have been trying out a lot in reproducing the paper recently, but...
Thanks for the review @jafermarq. > Let me know if this is the command that would generate the results you showed above. Yes, I used this to get the results...
Hello @jafermarq. I have added the code for FEMNIST data as well, and changed the config structure to make it more user-friendly.
@jafermarq have made some changes. Please have a look. Also attaching current progress for the record 