pirocheto commited on
Commit
50b9f67
Β·
1 Parent(s): 5590873

style: reorder import

Browse files
Files changed (1) hide show
  1. modeling_schp.py +1 -2
modeling_schp.py CHANGED
@@ -13,11 +13,10 @@ from typing import Optional, Tuple, Union
13
  import torch
14
  import torch.nn as nn
15
  import torch.nn.functional as F
 
16
  from transformers import PreTrainedModel
17
  from transformers.utils import ModelOutput
18
 
19
- from schp.configuration_schp import SCHPConfig
20
-
21
 
22
  # ── Pure-PyTorch InPlaceABNSync shim ──────────────────────────────────────────
23
  class InPlaceABNSync(nn.BatchNorm2d):
 
13
  import torch
14
  import torch.nn as nn
15
  import torch.nn.functional as F
16
+ from schp.configuration_schp import SCHPConfig
17
  from transformers import PreTrainedModel
18
  from transformers.utils import ModelOutput
19
 
 
 
20
 
21
  # ── Pure-PyTorch InPlaceABNSync shim ──────────────────────────────────────────
22
  class InPlaceABNSync(nn.BatchNorm2d):