MineMine 算法(1)

这里写自定义目录标题

  • String smoothing
  • OCR post process
    • 注意

String smoothing

picked_tasks 来自dataframe

window_size = 5
window_strings = deque(maxlen=window_size)
 eliminated_result = []
 for idx, current_string in enumerate(picked_tasks):
     eliminated_result.append(current_string)
     if len(window_strings) == window_size and current_string == window_strings[0]:
         for i in range(idx-window_size+1,idx

你可能感兴趣的:(Algorithm,Artificial,Inteligence,计算机视觉,python,概率论,自然语言处理)