-
Notifications
You must be signed in to change notification settings - Fork 497
/
Copy pathcatalog.py
70 lines (57 loc) · 2.3 KB
/
catalog.py
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Copyright 2021 The Layout Parser team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from iopath.common.file_io import PathHandler
from ..base_catalog import PathManager
MODEL_CATALOG = {
"PubLayNet": {
"tf_efficientdet_d0": "https://dl.dropboxusercontent.com/s/ukbw5s673633hsw/publaynet-tf_efficientdet_d0.pth.tar",
"tf_efficientdet_d1": "https://dl.dropboxusercontent.com/s/gxy11xkkiwnpgog/publaynet-tf_efficientdet_d1.pth.tar"
},
"MFD": {
"tf_efficientdet_d0": "https://dl.dropboxusercontent.com/s/dkr22iux7thlhel/mfd-tf_efficientdet_d0.pth.tar",
"tf_efficientdet_d1": "https://dl.dropboxusercontent.com/s/icmbiaqr5s9bz1x/mfd-tf_efficientdet_d1.pth.tar"
}
}
# In effdet training scripts, it requires the label_map starting
# from 1 instead of 0
LABEL_MAP_CATALOG = {
"PubLayNet": {
1: "Text",
2: "Title",
3: "List",
4: "Table",
5: "Figure"
},
"MFD": {
1: "Equation",
}
}
class LayoutParserEfficientDetModelHandler(PathHandler):
"""
Resolve anything that's in LayoutParser model zoo.
"""
PREFIX = "lp://efficientdet/"
def _get_supported_prefixes(self):
return [self.PREFIX]
def _get_local_path(self, path, **kwargs):
model_name = path[len(self.PREFIX) :]
dataset_name, *model_name, data_type = model_name.split("/")
if data_type == "weight":
model_url = MODEL_CATALOG[dataset_name]["/".join(model_name)]
else:
raise ValueError(f"Unknown data_type {data_type}")
return PathManager.get_local_path(model_url, **kwargs)
def _open(self, path, mode="r", **kwargs):
return PathManager.open(self._get_local_path(path), mode, **kwargs)
PathManager.register_handler(LayoutParserEfficientDetModelHandler())