mirror of
https://github.com/yaroslaff/antifraud2gis.git
synced 2026-04-28 11:41:32 +00:00
630 B
630 B
Antifraud2GIS
Searching for fake (suspicious) reviews in 2gis.
This project is absolutely unofficial, not related to 2GIS.ru.
Export and analyse data with JQ
# Export to JSONL
af2gis c export > /tmp/export.jsonl
# get length (number of companies)
jq -s 'length' /tmp/export.jsonl
# Get top-10 by WSS score
jq -s 'sort_by(.score.WSS) | reverse | .[:10]' /tmp/export.jsonl
# Average (mean)
jq -s 'map(.score.WSS) | add / length' /tmp/export.jsonl
# WSS higher then 0.5 (0.5 is random here)
jq -s 'map(select(.score.WSS > 0.5))' /tmp/export.jsonl
jq -s '.[] | select(.score.WSS > 0.5)' /tmp/export.jsonl