We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there, thank you in advance for the help.
I am trying to run a simple de-duplication process but i am encountering the: IndexError: list index out of range
data = [("1", "arte musica poetica"), ("2", "arte-musica-poetica UG"), ("3", "another entity"), ("4", "another entity ltd"), ("5", "random")]
cols = ["id", "name"] df = spark.createDataFrame(data, cols)
autolinker = AutoLinker()
autolinker.auto_link( data=df, )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there,
thank you in advance for the help.
I am trying to run a simple de-duplication process but i am encountering the: IndexError: list index out of range
Sample data
data = [("1", "arte musica poetica"),
("2", "arte-musica-poetica UG"),
("3", "another entity"),
("4", "another entity ltd"),
("5", "random")]
Create DataFrame
cols = ["id", "name"]
df = spark.createDataFrame(data, cols)
Initialize AutoLinker
autolinker = AutoLinker()
autolinker.auto_link(
data=df,
)
The text was updated successfully, but these errors were encountered: