Skip to content

Commit

Permalink
Reorganize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbvll committed Dec 19, 2023
1 parent 3218dfd commit bae9d51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/mt-pytorch-callable/client.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import datetime
import os
import time
import datetime
import warnings
from collections import OrderedDict

import flwr as fl
import tensorflow as tf
import torch
import torch.nn as nn
import torch.nn.functional as F
from flwr.common.serde import client_message_from_proto, server_message_from_proto
from torch.utils.data import DataLoader
from torchvision.datasets import CIFAR10
from torchvision.transforms import Compose, Normalize, ToTensor
from tqdm import tqdm

import flwr as fl
from flwr.common.serde import client_message_from_proto, server_message_from_proto

# #############################################################################
# 1. Regular PyTorch pipeline: nn.Module, train, test, and DataLoader
Expand Down

0 comments on commit bae9d51

Please sign in to comment.