Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ py_stringsimjoin

This project seeks to build a Python software package that provides scalable implementation of string similarity joins over two tables, for commonly used similarity measures such as Jaccard, Dice, cosine, overlap, overlap coefficient and edit distance. The package is free, open-source, and BSD-licensed.

Important links
===============
Important links/links to ponder
==============================

* Project Homepage: https://sites.google.com/site/anhaidgroup/projects/magellan/py_stringsimjoin
* Code repository: https://github.com/anhaidgroup/py_stringsimjoin
Expand Down
3 changes: 2 additions & 1 deletion py_stringsimjoin/join/set_sim_join_cy.pyx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# set similarity join

#importing importand libraries(pandas for data structure)
import pandas as pd
import pyprind

Expand Down Expand Up @@ -104,7 +105,7 @@ def set_sim_join_cy(ltable, rtable,
for j in range(min(m, prefix_length)):
if index.index.find(tokens[j]) == index.index.end():
continue
candidates = index.index[tokens[j]]
candidates = index.index[tokens[j]] #nested loop
for cand in candidates:
current_overlap = candidate_overlap[cand.first]
if current_overlap != -1:
Expand Down