ucsahin commited on
Commit
651ff88
1 Parent(s): 327b523

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -32,7 +32,7 @@ If everything goes smoothly, the model will output a text similar to "<loc[value
32
  ```python
33
  import re
34
 
35
- def extract_loc_values(bbox_text, image_width, image_height):
36
  loc_values_str = [bbox.strip() for bbox in bbox_text.split(";")]
37
 
38
  converted_bboxes = []
 
32
  ```python
33
  import re
34
 
35
+ def post_process(bbox_text, image_width, image_height):
36
  loc_values_str = [bbox.strip() for bbox in bbox_text.split(";")]
37
 
38
  converted_bboxes = []