Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AI Crawler Priority Explorer

This project is a simple interactive demo that simulates how an AI crawler can prioritize newly discovered webpages for crawling.

What it does

The tool takes:

  • a directed web graph (URL -> outlinks),
  • precomputed PageRank scores,
  • a value of k,

and returns the top k URLs to crawl using the scoring rule:

Priority Score = 0.7 * PageRank + 0.3 * Quality Score

Quality heuristic

  • 1.0 for .edu or .gov domains
  • 0.5 for other domains

Purpose

This demonstrates how PageRank can be used in modern AI crawling strategies to prioritize authoritative and high-quality pages for training data collection.

About

Prioritize newly discovered webpages for crawling using precomputed PageRank scores and a simple quality heuristic. This demo helps simulate how an AI crawler could choose which pages to crawl first.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages