在Azure ML上自定义Python脚本

时间:2018-12-25 12:28:49

标签: azure fuzzy-search azure-machine-learning-studio fuzzywuzzy ml-studio

我想在python脚本上使用Fuzzywuzzy逻辑。我以这种方式实施,但我什么都没得到。

Azure ML Studio

这是我的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)

0 个答案:

没有答案