File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
cloudpickle
2
2
hydra-core
3
- omegaconf == 2.1.0
3
+ omegaconf
4
4
pybind11
5
- flake8 == 3.8.1
6
- isort == 4.3.21
7
- black == 22.3.0
5
+ flake8
6
+ isort
7
+ black
8
8
autoflake
9
9
timm
10
10
pytest
11
- scipy == 1.7.3
11
+ scipy
12
12
psutil
13
13
opencv-python
14
14
wandb
15
15
submitit
16
16
einops
17
+ fairscale
Original file line number Diff line number Diff line change 37
37
from torch .nn .modules .module import Module
38
38
39
39
if (
40
- float (torch .__version__ .split ("." )[0 ]) == 0
41
- or (float (torch .__version__ .split ("." )[0 ]) == 1 and float (torch .__version__ .split ("." )[1 ])) < 7
40
+ float (torch .__version__ .split ("." )[0 ]) == 0 or (float (torch .__version__ .split ("." )[0 ]) == 1 and float (torch .__version__ .split ("." )[1 ]) < 7 )
42
41
):
43
42
from torch ._overrides import has_torch_function , handle_torch_function
44
43
else :
47
46
48
47
if (
49
48
float (torch .__version__ .split ("." )[0 ]) == 0
50
- or (float (torch .__version__ .split ("." )[0 ]) == 1 and float (torch .__version__ .split ("." )[1 ])) < 9
49
+ or (float (torch .__version__ .split ("." )[0 ]) == 1 and float (torch .__version__ .split ("." )[1 ]) < 9 )
51
50
):
52
51
from torch .nn .modules .linear import _LinearWithBias
53
52
else :
You can’t perform that action at this time.
0 commit comments