1

I want to use Fuzzywuzzy logic on python script. I am implement in this way but i didn't get anything.

Azure ML Studio

This is my python script code:

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)
Nicolas R
  • 13,812
  • 2
  • 28
  • 57
Manthan
  • 11
  • 3

0 Answers0