![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
cir-duplicate-detector
Advanced tools
PDQ hash and URL duplicate detector. Developed by Sam Sweere from BigData Repulic as part of their Social Good Initiaive.
As part of BigData Republic Social Good Initiative, Sam Sweere developed this package to help the CIR team to detect & mark (possible) duplicate entries. There are two kinds of duplicates that the package can detect:
The PDQ algorithm was developed and open-sourced by Facebook (now Meta) in 2019. It is a perceptual hash function that can be used to identify similar images. For example, if an image is cropped, resized, or slightly altered, the PDQ hash will still be similar to the original image.
For open source intelligence use cases, the PDQ hash can be used to identify similar images across different sources. For example, if an image is shared on social media and in a news article, but the news article puts their watermark on the image, the PDQ hash can still be used to identify the image as the same.
While working at BigData Republic, Emiel de Heij has implemented the PDQ hash in the Bellingcat auto-archiver. From version v0.5.26 onwards, the auto-archiver has the ability to automatically generate the PDQ hashes for images and videos.
This package is available on PyPI: cir-duplicate-detector
Installation can be done using pip:
pip install cir-duplicate-detector
or using poetry:
poetry add cir-duplicate-detector
from cir_duplicate_detector import detect_duplicates
duplicates_df = detect_duplicates(df, indices_to_check=None, pdq_hash_similarity_threshold=0.8)
The detect_duplicates
function finds url and/or pdq hash duplicates in a DataFrame.
It takes the following parameters:
DataFrame (pd.DataFrame
):
index
(string): A unique identifier.url
(string, optional): The original URL of the source.pdq_hash
(list of strings, optional): A list of perceptual hashes.Indices to Check (indices_to_check
):
None
(optional).index
values to check for duplicates. If None
, all rows are checked. Duplicate annotations are always bi-directional.PDQ Hash Similarity Threshold (pdq_hash_similarity_threshold
):
PDQ Duplicate Detection Method (pdq_duplicate_detection_method
):
pd.DataFrame
):
index
(string): A unique identifier.url_duplicates
(list of strings or None
): Indices with duplicate URLs.pdq_hash_duplicates
(list of strings or None
): Indices with perceptual hashes similar within the threshold.pdq_hash_similarities
(list of strings or None
): Hash similarity scores for perceptual hashes within the threshold.When indices_to_check
is provided, only the rows with these indices are checked. However, duplicates can be identified with indices not in this list (bi-directional). Consider this when updating the source. Note that only rows with any duplicate found will be returned.
This package offers two strategies for identifying duplicate hashes, leveraging multi-threading to enhance performance on systems with multiple cores:
pandas
: Utilizing the .apply
function, this strategy performs a straightforward one-to-one comparison of hashes by calculating the hamming distance with the rapidfuzz
library. It proves to be the quickest and most efficient method for smaller datasets (i.e., when the indices_to_check
parameter is minimal).bk-tree
: This approach employs a BK-tree to store and search for hashes. While it is less efficient than the pandas approach for lower similarity thresholds, it is vastly more efficient for higher thresholds. When processing larger datasets, the bk-tree method's performance is comparable to that of the pandas strategy.This section outlines the performance of the two methods, focusing on execution speed, benchmarked on a dataset of approximately 300,000 hashes on a system equipped with 20 CPU cores. Both methods employ multi-threading to optimize utilization of available computational resources.
The comparison indicates that, for a similarity threshold up to 0.91, the BK-tree method operates at a slower pace compared to the pandas method. Beyond this threshold, however, the BK-tree method demonstrates a notable increase in speed over the pandas method. This performance inversion is due to the BK-tree's complexity in managing hashes with a greater number of allowable bits, requiring extensive traversal to locate hashes matching the query. In contrast, the pandas method does not face such traversal overhead, maintaining a consistent speed advantage under these conditions.
Given that the optimal threshold for identifying fuzzy duplicates tends to be more towards 0.8, the pandas method is recommended for most scenarios and thus is the default choice.
Here, the BK-tree method's performance is observed to lag behind that of the pandas method at a similarity threshold of 0.8. This performance gap widens as the number of hashes to be checked decreases. This outcome stems from the necessity for the BK-tree method to construct the tree structure before initiating the search process. The pandas method is more efficient, especially for smaller datasets, because it doesn't require this initial setup.
Make sure to have Python 3.11 installed and create a virtual environment.
Install the requirements by using:
pip install -r requirements.txt
The following steps are for a detailed installation of the development environment. Note that for every step there are multiple ways to i.e. install python, create an environment or install dependencies. The following steps are just one way to do it.
Install Pyenv
:
https://github.com/pyenv/pyenv#installation
Install python 3.11.8
:
pyenv install 3.11.8
Install pyenv-virtualenv: https://github.com/pyenv/pyenv-virtualenv
Create a virtual environment:
pyenv virtualenv 3.11.8 cir_duplicate_detector
Enable and use the virtual environment:
pyenv local cir_duplicate_detector
pyenv activate cir_duplicate_detector
Install poetry:
pip install poetry
Install the dependencies:
poetry install
FAQs
PDQ hash and URL duplicate detector. Developed by Sam Sweere from BigData Repulic as part of their Social Good Initiaive.
We found that cir-duplicate-detector demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.