github-explorer
github-explorer copied to clipboard
Recommender system for Github projects using the github archive data
Results
1
github-explorer issues
Sort by
recently updated
recently updated
newest added
watch_events = LOAD 's3://github-explorer/WatchEvent' AS (json: map[]); watch_ratings = FOREACH watch_events GENERATE (chararray)$0#'actor'#'login' AS follower:chararray, (chararray)$0#'repo'#'name' AS repo:chararray, 1.0 AS rating; fork_events = LOAD 's3://github-explorer/ForkEvent' AS (json: map[]); fork_ratings =...