2 from pyspark.sql import SparkSession
3 from pyspark.sql import functions as f
4 from similarities_helper import build_tfidf_dataset, build_weekly_tfidf_dataset, select_topN_subreddits
7 def _tfidf_wrapper(func, inpath, outpath, topN, term_colname, exclude):
8 spark = SparkSession.builder.getOrCreate()
10 df = spark.read.parquet(inpath)
12 df = df.filter(~ f.col(term_colname).isin(exclude))
14 include_subs = select_topN_subreddits(topN)
16 df = func(df, include_subs, term_colname)
18 df.write.parquet(outpath,mode='overwrite',compression='snappy')
22 def tfidf(inpath, outpath, topN, term_colname, exclude):
23 return _tfidf_wrapper(build_tfidf_dataset, inpath, outpath, topN, term_colname, exclude)
25 def tfidf_weekly(inpath, outpath, topN, term_colname, exclude):
26 return _tfidf_wrapper(build_weekly_tfidf_dataset, inpath, outpath, topN, term_colname, exclude)
28 def tfidf_authors(outpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet',
31 return tfidf("/gscratch/comdata/output/reddit_ngrams/comment_authors.parquet",
35 ['[deleted]','AutoModerator']
38 def tfidf_terms(outpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms.parquet',
41 return tfidf("/gscratch/comdata/output/reddit_ngrams/comment_terms.parquet",
48 def tfidf_authors_weekly(outpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet',
51 return tfidf_weekly("/gscratch/comdata/output/reddit_ngrams/comment_authors.parquet",
55 ['[deleted]','AutoModerator']
58 def tfidf_terms_weekly(outpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms.parquet',
61 return tfidf_weekly("/gscratch/comdata/output/reddit_ngrams/comment_terms.parquet",
69 if __name__ == "__main__":
70 fire.Fire({'authors':tfidf_authors,
72 'authors_weekly':tfidf_authors_weekly,
73 'terms_weekly':tfidf_terms_weekly})