1

我想在 python 脚本上使用 Fuzzywuzzy 逻辑。我以这种方式实施,但我没有得到任何东西。

Azure 机器学习工作室

这是我的python脚本代码:

import pandas as pd
from fuzzywuzzy import process
def azureml_main(dataframe1 = None):    
return dataframe1,

def get_matches(query, choice, limit = 6):
result = process.extract(query, choice, limit = limit)
return result,

get_matches("admissibility", dataframe1)
4

0 回答 0