Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wangsen
MinerU
Commits
77374343
Unverified
Commit
77374343
authored
Feb 19, 2025
by
Xiaomeng Zhao
Committed by
GitHub
Feb 19, 2025
Browse files
Merge branch 'opendatalab:dev' into dev
parents
c91f918f
a6870016
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
20 deletions
+32
-20
magic_pdf/model/magic_model.py
magic_pdf/model/magic_model.py
+30
-18
tests/unittest/test_integrations/test_rag/test_utils.py
tests/unittest/test_integrations/test_rag/test_utils.py
+2
-2
No files found.
magic_pdf/model/magic_model.py
View file @
77374343
...
@@ -519,15 +519,27 @@ class MagicModel:
...
@@ -519,15 +519,27 @@ class MagicModel:
if
nxt
is
None
:
if
nxt
is
None
:
break
break
seen_idx
.
add
(
fst_idx
)
seen_idx
.
add
(
nxt
[
0
])
if
fst_kind
==
SUB_BIT_KIND
:
if
fst_kind
==
SUB_BIT_KIND
:
seen_sub_idx
.
add
(
fst_idx
)
sub_idx
,
obj_idx
=
fst_idx
,
nxt
[
0
]
-
OBJ_IDX_OFFSET
sub_idx
,
obj_idx
=
fst_idx
,
nxt
[
0
]
-
OBJ_IDX_OFFSET
else
:
else
:
seen_sub_idx
.
add
(
nxt
[
0
])
sub_idx
,
obj_idx
=
nxt
[
0
],
fst_idx
-
OBJ_IDX_OFFSET
sub_idx
,
obj_idx
=
nxt
[
0
],
fst_idx
-
OBJ_IDX_OFFSET
pair_dis
=
bbox_distance
(
subjects
[
sub_idx
][
'bbox'
],
objects
[
obj_idx
][
'bbox'
])
nearest_dis
=
float
(
'inf'
)
for
i
in
range
(
N
):
if
i
in
seen_idx
:
continue
nearest_dis
=
min
(
nearest_dis
,
bbox_distance
(
subjects
[
i
][
'bbox'
],
objects
[
obj_idx
][
'bbox'
]))
if
pair_dis
>=
3
*
nearest_dis
:
seen_idx
.
add
(
sub_idx
)
continue
seen_idx
.
add
(
sub_idx
)
seen_idx
.
add
(
obj_idx
+
OBJ_IDX_OFFSET
)
seen_sub_idx
.
add
(
sub_idx
)
ret
.
append
(
ret
.
append
(
{
{
'sub_bbox'
:
{
'sub_bbox'
:
{
...
...
tests/unittest/test_integrations/test_rag/test_utils.py
View file @
77374343
...
@@ -24,7 +24,7 @@ def test_convert_middle_json_to_layout_elements():
...
@@ -24,7 +24,7 @@ def test_convert_middle_json_to_layout_elements():
assert
len
(
res
[
0
].
layout_dets
)
>
0
assert
len
(
res
[
0
].
layout_dets
)
>
0
assert
res
[
0
].
layout_dets
[
0
].
anno_id
==
0
assert
res
[
0
].
layout_dets
[
0
].
anno_id
==
0
assert
res
[
0
].
layout_dets
[
0
].
category_type
==
CategoryType
.
text
assert
res
[
0
].
layout_dets
[
0
].
category_type
==
CategoryType
.
text
assert
len
(
res
[
0
].
extra
.
element_relation
)
>=
3
assert
len
(
res
[
0
].
extra
.
element_relation
)
>=
2
# teardown
# teardown
shutil
.
rmtree
(
temp_output_dir
)
shutil
.
rmtree
(
temp_output_dir
)
...
@@ -51,7 +51,7 @@ def test_inference():
...
@@ -51,7 +51,7 @@ def test_inference():
assert
len
(
res
[
0
].
layout_dets
)
>
0
assert
len
(
res
[
0
].
layout_dets
)
>
0
assert
res
[
0
].
layout_dets
[
0
].
anno_id
==
0
assert
res
[
0
].
layout_dets
[
0
].
anno_id
==
0
assert
res
[
0
].
layout_dets
[
0
].
category_type
==
CategoryType
.
text
assert
res
[
0
].
layout_dets
[
0
].
category_type
==
CategoryType
.
text
assert
len
(
res
[
0
].
extra
.
element_relation
)
>=
3
assert
len
(
res
[
0
].
extra
.
element_relation
)
>=
2
# teardown
# teardown
shutil
.
rmtree
(
temp_output_dir
)
shutil
.
rmtree
(
temp_output_dir
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment