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
 
   6 def _tfidf_wrapper(func, inpath, outpath, topN, term_colname, exclude, included_subreddits):
 
   7     spark = SparkSession.builder.getOrCreate()
 
   9     df = spark.read.parquet(inpath)
 
  11     df = df.filter(~ f.col(term_colname).isin(exclude))
 
  13     if included_subreddits is not None:
 
  14         include_subs = list(open(included_subreddits))
 
  16         include_subs = select_topN_subreddits(topN)
 
  18     df = func(df, include_subs, term_colname)
 
  20     df.write.parquet(outpath,mode='overwrite',compression='snappy')
 
  24 def tfidf(inpath, outpath, topN, term_colname, exclude, included_subreddits):
 
  25     return _tfidf_wrapper(build_tfidf_dataset, inpath, outpath, topN, term_colname, exclude, included_subreddits)
 
  27 def tfidf_weekly(inpath, outpath, topN, term_colname, exclude):
 
  28     return _tfidf_wrapper(build_weekly_tfidf_dataset, inpath, outpath, topN, term_colname, included_subreddits)
 
  30 def tfidf_authors(outpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet',
 
  33     return tfidf("/gscratch/comdata/output/reddit_ngrams/comment_authors.parquet",
 
  37                  ['[deleted]','AutoModerator'],
 
  38                  included_subreddits=None
 
  41 def tfidf_terms(outpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms.parquet',
 
  44     return tfidf("/gscratch/comdata/output/reddit_ngrams/comment_terms.parquet",
 
  49                  included_subreddits=None
 
  52 def tfidf_authors_weekly(outpath='/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_authors.parquet',
 
  55     return tfidf_weekly("/gscratch/comdata/output/reddit_ngrams/comment_authors.parquet",
 
  59                         ['[deleted]','AutoModerator'],
 
  60                         included_subreddits=None
 
  63 def tfidf_terms_weekly(outpath='/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_terms.parquet',
 
  67     return tfidf_weekly("/gscratch/comdata/output/reddit_ngrams/comment_terms.parquet",
 
  72                         included_subreddits=None
 
  76 if __name__ == "__main__":
 
  77     fire.Fire({'authors':tfidf_authors,
 
  79                'authors_weekly':tfidf_authors_weekly,
 
  80                'terms_weekly':tfidf_terms_weekly})