2020-12-09 01:32:20 +00:00
|
|
|
from pyspark.sql import functions as f
|
|
|
|
from pyspark.sql import SparkSession
|
|
|
|
from pyspark.sql import Window
|
|
|
|
import numpy as np
|
|
|
|
import pyarrow
|
2021-05-03 06:39:55 +00:00
|
|
|
import pyarrow.dataset as ds
|
2020-12-09 01:32:20 +00:00
|
|
|
import pandas as pd
|
|
|
|
import fire
|
2021-05-03 06:39:55 +00:00
|
|
|
from itertools import islice, chain
|
2020-12-09 01:32:20 +00:00
|
|
|
from pathlib import Path
|
2021-08-03 22:06:48 +00:00
|
|
|
from similarities_helper import pull_tfidf, column_similarities, write_weekly_similarities
|
|
|
|
from scipy.sparse import csr_matrix
|
2021-04-22 17:37:04 +00:00
|
|
|
from multiprocessing import Pool, cpu_count
|
2021-05-03 06:39:55 +00:00
|
|
|
from functools import partial
|
2020-12-09 01:32:20 +00:00
|
|
|
|
2021-08-03 22:06:48 +00:00
|
|
|
# infile = "/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_authors_test.parquet"
|
|
|
|
# tfidf_path = infile
|
|
|
|
# min_df=None
|
|
|
|
# max_df = None
|
|
|
|
# topN=100
|
|
|
|
# term_colname='author'
|
|
|
|
# outfile = '/gscratch/comdata/output/reddit_similarity/weekly/comment_authors_test.parquet'
|
|
|
|
# included_subreddits=None
|
2021-04-06 06:21:06 +00:00
|
|
|
|
2021-08-03 22:06:48 +00:00
|
|
|
def _week_similarities(week, simfunc, tfidf_path, term_colname, min_df, max_df, included_subreddits, topN, outdir:Path, subreddit_names, nterms):
|
2021-05-03 06:39:55 +00:00
|
|
|
term = term_colname
|
|
|
|
term_id = term + '_id'
|
|
|
|
term_id_new = term + '_id_new'
|
|
|
|
print(f"loading matrix: {week}")
|
2021-08-03 22:06:48 +00:00
|
|
|
|
|
|
|
entries = pull_tfidf(infile = tfidf_path,
|
|
|
|
term_colname=term_colname,
|
|
|
|
min_df=min_df,
|
|
|
|
max_df=max_df,
|
|
|
|
included_subreddits=included_subreddits,
|
|
|
|
topN=topN,
|
|
|
|
week=week.isoformat(),
|
|
|
|
rescale_idf=False)
|
|
|
|
|
|
|
|
tfidf_colname='tf_idf'
|
|
|
|
# if the max subreddit id we found is less than the number of subreddit names then we have to fill in 0s
|
|
|
|
mat = csr_matrix((entries[tfidf_colname],(entries[term_id_new]-1, entries.subreddit_id_new-1)),shape=(nterms,subreddit_names.shape[0]))
|
|
|
|
|
2021-05-03 06:39:55 +00:00
|
|
|
print('computing similarities')
|
2021-08-03 22:06:48 +00:00
|
|
|
sims = simfunc(mat.T)
|
2021-05-03 06:39:55 +00:00
|
|
|
del mat
|
2021-08-03 22:06:48 +00:00
|
|
|
sims = pd.DataFrame(sims)
|
2021-05-03 06:39:55 +00:00
|
|
|
sims = sims.rename({i: sr for i, sr in enumerate(subreddit_names.subreddit.values)}, axis=1)
|
2021-08-03 22:06:48 +00:00
|
|
|
sims['_subreddit'] = subreddit_names.subreddit.values
|
2021-05-03 06:39:55 +00:00
|
|
|
outfile = str(Path(outdir) / str(week))
|
2021-08-03 22:06:48 +00:00
|
|
|
write_weekly_similarities(outfile, sims, week, subreddit_names)
|
2021-04-06 06:21:06 +00:00
|
|
|
|
2021-05-03 06:39:55 +00:00
|
|
|
def pull_weeks(batch):
|
|
|
|
return set(batch.to_pandas()['week'])
|
2020-12-09 01:32:20 +00:00
|
|
|
|
|
|
|
#tfidf = spark.read.parquet('/gscratch/comdata/users/nathante/subreddit_tfidf_weekly.parquet')
|
2021-05-03 06:39:55 +00:00
|
|
|
def cosine_similarities_weekly(tfidf_path, outfile, term_colname, min_df = None, max_df=None, included_subreddits = None, topN = 500):
|
2020-12-09 01:32:20 +00:00
|
|
|
print(outfile)
|
2021-04-06 06:21:06 +00:00
|
|
|
# do this step in parallel if we have the memory for it.
|
|
|
|
# should be doable with pool.map
|
2020-12-09 01:32:20 +00:00
|
|
|
|
2021-08-03 22:06:48 +00:00
|
|
|
spark = SparkSession.builder.getOrCreate()
|
|
|
|
df = spark.read.parquet(tfidf_path)
|
|
|
|
subreddit_names = df.select(['subreddit','subreddit_id']).distinct().toPandas()
|
|
|
|
subreddit_names = subreddit_names.sort_values("subreddit_id")
|
|
|
|
nterms = df.select(f.max(f.col(term_colname + "_id")).alias('max')).collect()[0].max
|
|
|
|
weeks = df.select(f.col("week")).distinct().toPandas().week.values
|
|
|
|
spark.stop()
|
|
|
|
|
2021-05-03 06:39:55 +00:00
|
|
|
print(f"computing weekly similarities")
|
2021-08-03 22:06:48 +00:00
|
|
|
week_similarities_helper = partial(_week_similarities,simfunc=column_similarities, tfidf_path=tfidf_path, term_colname=term_colname, outdir=outfile, min_df=min_df,max_df=max_df,included_subreddits=included_subreddits,topN=topN, subreddit_names=subreddit_names,nterms=nterms)
|
|
|
|
|
|
|
|
pool = Pool(cpu_count())
|
|
|
|
|
|
|
|
list(pool.imap(week_similarities_helper,weeks))
|
|
|
|
pool.close()
|
|
|
|
# with Pool(cpu_count()) as pool: # maybe it can be done with 40 cores on the huge machine?
|
2020-12-09 01:32:20 +00:00
|
|
|
|
|
|
|
|
2021-05-03 06:39:55 +00:00
|
|
|
def author_cosine_similarities_weekly(outfile, min_df=2, max_df=None, included_subreddits=None, topN=500):
|
2021-08-03 22:06:48 +00:00
|
|
|
return cosine_similarities_weekly('/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_authors_test.parquet',
|
2020-12-09 01:32:20 +00:00
|
|
|
outfile,
|
|
|
|
'author',
|
|
|
|
min_df,
|
2021-05-03 06:39:55 +00:00
|
|
|
max_df,
|
2020-12-09 01:32:20 +00:00
|
|
|
included_subreddits,
|
|
|
|
topN)
|
|
|
|
|
2021-05-03 06:39:55 +00:00
|
|
|
def term_cosine_similarities_weekly(outfile, min_df=None, max_df=None, included_subreddits=None, topN=500):
|
|
|
|
return cosine_similarities_weekly('/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_terms.parquet',
|
|
|
|
outfile,
|
|
|
|
'term',
|
|
|
|
min_df,
|
|
|
|
max_df,
|
|
|
|
included_subreddits,
|
|
|
|
topN)
|
2020-12-09 01:32:20 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2021-04-06 06:21:06 +00:00
|
|
|
fire.Fire({'authors':author_cosine_similarities_weekly,
|
|
|
|
'terms':term_cosine_similarities_weekly})
|