File size: 920 Bytes
66c45a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import pickle

import torch

load = pickle.load
unsafe_torch_load = torch.load


class Empty:
    pass


class RestrictedUnpickler(pickle.Unpickler):

    def find_class(self, module: str, name: str):
        if module.startswith("pytorch_lightning"):
            return Empty

        if module.startswith(("collections", "torch", "numpy", "__builtin__")):
            return super().find_class(module, name)

        raise NotImplementedError(f'"{module}.{name}" is forbidden')


class Extra:
    global_extra_handler = None

    def __init__(self, handler):
        self.handler = handler

    def __enter__(self):
        assert Extra.global_extra_handler is None, "already inside an Extra() block"
        Extra.global_extra_handler = self.handler

    def __exit__(self, exc_type, exc_val, exc_tb):
        Extra.global_extra_handler = None


Unpickler = RestrictedUnpickler