Skip to content

Commit dc026e2

Browse files
committed
fix: major improvements in match functinos arch, still lacking data fetch.
1 parent aec3178 commit dc026e2

14 files changed

Lines changed: 917 additions & 509 deletions

features/auto_unstrip/auto_unstrip.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ def _process_batch(self, function_ids: List[int], id_to_addr: Dict[int, int], bv
4646
functions = []
4747
for function in functions_by_distance:
4848
functions.append({"function_id": function['origin_function_id'], "function_name": function['nearest_neighbor_function_name']})
49-
log_info(f"RevEng.AI | Functions by distance: {functions}")
49+
#log_info(f"RevEng.AI | Functions by distance: {functions}")
5050
functions_by_score = RE_name_score(functions).json()["data"]
51-
log_info(f"RevEng.AI | Functions by score: {functions_by_score}")
51+
#log_info(f"RevEng.AI | Functions by score: {functions_by_score}")
5252
renamed_count = 0
5353
errors = []
5454
for result in functions_by_distance:

features/configuration/config_dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def init_ui(self):
2525
header_layout = QHBoxLayout()
2626

2727
logo_label = QLabel()
28-
logo_path = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), "images", "logo.png")
28+
logo_path = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), "images", "logo.png") ## review that line
2929
if os.path.exists(logo_path):
3030
pixmap = QPixmap(logo_path)
3131
pixmap = pixmap.scaled(100, 100, Qt.KeepAspectRatio, Qt.SmoothTransformation)

features/match_functions/match_functions.py

Lines changed: 322 additions & 197 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)