Compare commits
26 Commits
6b18840604
...
excise_rei
| Author | SHA1 | Date | |
|---|---|---|---|
| c190791364 | |||
| 5a40465a62 | |||
| 55b75ea6fc | |||
| 197518a222 | |||
| 65deba5e4e | |||
| 7b130a30af | |||
| 98c1317af5 | |||
| 541e125b28 | |||
| b7c39a3494 | |||
| ce549c6c97 | |||
| 6e43294a41 | |||
| 2d21ff1137 | |||
|
|
cf86c7492c | ||
|
|
87ffaa6858 | ||
|
|
7b14db67de | ||
|
|
0b95bea30e | ||
|
|
582cf263ea | ||
|
|
8a2248fae1 | ||
|
|
47ba04aa97 | ||
|
|
4cb7eeec80 | ||
|
|
f05cb962e0 | ||
|
|
8d1df5b26e | ||
|
|
e1c9d9af6f | ||
|
|
7df8436067 | ||
|
|
36b24ee933 | ||
|
|
a013f6718b |
2
__init__.py
Normal file
2
__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
from .timeseries import load_clusters, load_densities, build_cluster_timeseries
|
||||||
|
|
||||||
@@ -1,21 +1,184 @@
|
|||||||
#srun_cdsc='srun -p comdata-int -A comdata --time=300:00:00 --time-min=00:15:00 --mem=100G --ntasks=1 --cpus-per-task=28'
|
#srun_cdsc='srun -p comdata-int -A comdata --time=300:00:00 --time-min=00:15:00 --mem=100G --ntasks=1 --cpus-per-task=28'
|
||||||
srun_singularity=source /gscratch/comdata/users/nathante/cdsc_reddit/bin/activate && srun_singularity.sh
|
srun_singularity=srun -p compute-bigmem -A comdata --time=48:00:00 --mem=362G -c 40
|
||||||
similarity_data=/gscratch/comdata/output/reddit_similarity
|
similarity_data=/gscratch/comdata/output/reddit_similarity
|
||||||
clustering_data=/gscratch/comdata/output/reddit_clustering
|
clustering_data=/gscratch/comdata/output/reddit_clustering
|
||||||
selection_grid="--max_iter=3000 --convergence_iter=15,30,100 --damping=0.5,0.6,0.7,0.8,0.85,0.9,0.95,0.97,0.99, --preference_quantile=0.1,0.3,0.5,0.7,0.9"
|
kmeans_selection_grid=--max_iters=[3000] --n_inits=[10] --n_clusters=[100,500,1000,1250,1500,1750,2000]
|
||||||
#selection_grid="--max_iter=3000 --convergence_iter=[15] --preference_quantile=[0.5] --damping=[0.99]"
|
|
||||||
all:$(clustering_data)/subreddit_comment_authors_10k/selection_data.csv $(clustering_data)/subreddit_comment_authors-tf_10k/selection_data.csv $(clustering_data)/subreddit_comment_terms_10k/selection_data.csv
|
|
||||||
# $(clustering_data)/subreddit_comment_authors_30k.feather/SUCCESS $(clustering_data)/subreddit_authors-tf_similarities_30k.feather/SUCCESS
|
|
||||||
# $(clustering_data)/subreddit_comment_terms_30k.feather/SUCCESS
|
|
||||||
|
|
||||||
$(clustering_data)/subreddit_comment_authors_10k/selection_data.csv:selection.py $(similarity_data)/subreddit_comment_authors_10k.feather clustering.py
|
umap_hdbscan_selection_grid=--min_cluster_sizes=[2] --min_samples=[2,3,4,5] --cluster_selection_epsilons=[0,0.01,0.05,0.1,0.15,0.2] --cluster_selection_methods=[eom,leaf] --n_neighbors=[5,15,25,50,75,100] --learning_rate=[1] --min_dist=[0,0.1,0.25,0.5,0.75,0.9,0.99] --local_connectivity=[1] --densmap=[True,False] --n_components=[2,5,10]
|
||||||
$(srun_singularity) python3 selection.py $(similarity_data)/subreddit_comment_authors_10k.feather $(clustering_data)/subreddit_comment_authors_10k $(clustering_data)/subreddit_comment_authors_10k/selection_data.csv $(selection_grid) -J 20
|
|
||||||
|
|
||||||
$(clustering_data)/subreddit_comment_terms_10k/selection_data.csv:selection.py $(similarity_data)/subreddit_comment_terms_10k.feather clustering.py
|
hdbscan_selection_grid=--min_cluster_sizes=[2,3,4,5] --min_samples=[2,3,4,5] --cluster_selection_epsilons=[0,0.01,0.05,0.1,0.15,0.2] --cluster_selection_methods=[eom,leaf]
|
||||||
$(srun_singularity) python3 selection.py $(similarity_data)/subreddit_comment_terms_10k.feather $(clustering_data)/subreddit_comment_terms_10k $(clustering_data)/subreddit_comment_terms_10k/selection_data.csv $(selection_grid) -J 20
|
affinity_selection_grid=--dampings=[0.5,0.6,0.7,0.8,0.95,0.97,0.99] --preference_quantiles=[0.1,0.3,0.5,0.7,0.9] --convergence_iters=[15]
|
||||||
|
|
||||||
$(clustering_data)/subreddit_comment_authors-tf_10k/selection_data.csv:clustering.py $(similarity_data)/subreddit_comment_authors-tf_10k.feather
|
authors_10k_input=$(similarity_data)/subreddit_comment_authors_10k.feather
|
||||||
$(srun_singularity) python3 selection.py $(similarity_data)/subreddit_comment_authors-tf_10k.feather $(clustering_data)/subreddit_comment_authors-tf_10k $(clustering_data)/subreddit_comment_authors-tf_10k/selection_data.csv $(selection_grid) -J 20
|
authors_10k_input_lsi=$(similarity_data)/subreddit_comment_authors_10k_LSI
|
||||||
|
authors_10k_output=$(clustering_data)/subreddit_comment_authors_10k
|
||||||
|
authors_10k_output_lsi=$(clustering_data)/subreddit_comment_authors_10k_LSI
|
||||||
|
|
||||||
|
authors_tf_10k_input=$(similarity_data)/subreddit_comment_authors-tf_10k.feather
|
||||||
|
authors_tf_10k_input_lsi=$(similarity_data)/subreddit_comment_authors-tf_10k_LSI
|
||||||
|
authors_tf_10k_output=$(clustering_data)/subreddit_comment_authors-tf_10k
|
||||||
|
authors_tf_10k_output_lsi=$(clustering_data)/subreddit_comment_authors-tf_10k_LSI
|
||||||
|
|
||||||
|
terms_10k_input=$(similarity_data)/subreddit_comment_terms_10k.feather
|
||||||
|
terms_10k_input_lsi=$(similarity_data)/subreddit_comment_terms_10k_LSI
|
||||||
|
terms_10k_output=$(clustering_data)/subreddit_comment_terms_10k
|
||||||
|
terms_10k_output_lsi=$(clustering_data)/subreddit_comment_terms_10k_LSI
|
||||||
|
|
||||||
|
all:terms_10k authors_10k authors_tf_10k terms_10k_lsi authors_10k_lsi authors_tf_10k_lsi
|
||||||
|
|
||||||
|
terms_10k:${terms_10k_output}/kmeans/selection_data.csv ${terms_10k_output}/affinity/selection_data.csv ${terms_10k_output}/hdbscan/selection_data.csv
|
||||||
|
|
||||||
|
authors_10k:${authors_10k_output}/kmeans/selection_data.csv ${authors_10k_output}/hdbscan/selection_data.csv ${authors_10k_output}/affinity/selection_data.csv
|
||||||
|
|
||||||
|
authors_tf_10k:${authors_tf_10k_output}/kmeans/selection_data.csv ${authors_tf_10k_output}/hdbscan/selection_data.csv ${authors_tf_10k_output}/affinity/selection_data.csv
|
||||||
|
|
||||||
|
terms_10k_lsi:${terms_10k_output_lsi}/kmeans/selection_data.csv ${terms_10k_output_lsi}/affinity/selection_data.csv ${terms_10k_output_lsi}/hdbscan/selection_data.csv
|
||||||
|
|
||||||
|
authors_10k_lsi:${authors_10k_output_lsi}/kmeans/selection_data.csv ${authors_10k_output_lsi}/hdbscan/selection_data.csv ${authors_10k_output_lsi}/affinity/selection_data.csv
|
||||||
|
|
||||||
|
authors_tf_10k_lsi:${authors_tf_10k_output_lsi}/kmeans/selection_data.csv ${authors_tf_10k_output_lsi}/hdbscan/selection_data.csv ${authors_tf_10k_output_lsi}/affinity/selection_data.csv
|
||||||
|
|
||||||
|
${authors_10k_output}/kmeans/selection_data.csv:selection.py ${authors_10k_input} clustering_base.py kmeans_clustering.py
|
||||||
|
$(srun_singularity) python3 kmeans_clustering.py --inpath=${authors_10k_input} --outpath=${authors_10k_output}/kmeans --savefile=${authors_10k_output}/kmeans/selection_data.csv $(kmeans_selection_grid)
|
||||||
|
|
||||||
|
${terms_10k_output}/kmeans/selection_data.csv:selection.py ${terms_10k_input} clustering_base.py kmeans_clustering.py
|
||||||
|
$(srun_singularity) python3 kmeans_clustering.py --inpath=${terms_10k_input} --outpath=${terms_10k_output}/kmeans --savefile=${terms_10k_output}/kmeans/selection_data.csv $(kmeans_selection_grid)
|
||||||
|
|
||||||
|
${authors_tf_10k_output}/kmeans/selection_data.csv:clustering.py ${authors_tf_10k_input} clustering_base.py kmeans_clustering.py
|
||||||
|
$(srun_singularity) python3 kmeans_clustering.py --inpath=${authors_tf_10k_input} --outpath=${authors_tf_10k_output}/kmeans --savefile=${authors_tf_10k_output}/kmeans/selection_data.csv $(kmeans_selection_grid)
|
||||||
|
|
||||||
|
${authors_10k_output}/affinity/selection_data.csv:selection.py ${authors_10k_input} clustering_base.py affinity_clustering.py
|
||||||
|
$(srun_singularity) python3 affinity_clustering.py --inpath=${authors_10k_input} --outpath=${authors_10k_output}/affinity --savefile=${authors_10k_output}/affinity/selection_data.csv $(affinity_selection_grid)
|
||||||
|
|
||||||
|
${terms_10k_output}/affinity/selection_data.csv:selection.py ${terms_10k_input} clustering_base.py affinity_clustering.py
|
||||||
|
$(srun_singularity) python3 affinity_clustering.py --inpath=${terms_10k_input} --outpath=${terms_10k_output}/affinity --savefile=${terms_10k_output}/affinity/selection_data.csv $(affinity_selection_grid)
|
||||||
|
|
||||||
|
${authors_tf_10k_output}/affinity/selection_data.csv:clustering.py ${authors_tf_10k_input} clustering_base.py affinity_clustering.py
|
||||||
|
$(srun_singularity) python3 affinity_clustering.py --inpath=${authors_tf_10k_input} --outpath=${authors_tf_10k_output}/affinity --savefile=${authors_tf_10k_output}/affinity/selection_data.csv $(affinity_selection_grid)
|
||||||
|
|
||||||
|
${authors_10k_output}/hdbscan/selection_data.csv:selection.py ${authors_10k_input} clustering_base.py hdbscan_clustering.py
|
||||||
|
$(srun_singularity) python3 hdbscan_clustering.py --inpath=${authors_10k_input} --outpath=${authors_10k_output}/hdbscan --savefile=${authors_10k_output}/hdbscan/selection_data.csv $(hdbscan_selection_grid)
|
||||||
|
|
||||||
|
${terms_10k_output}/hdbscan/selection_data.csv:selection.py ${terms_10k_input} clustering_base.py hdbscan_clustering.py
|
||||||
|
$(srun_singularity) python3 hdbscan_clustering.py --inpath=${terms_10k_input} --outpath=${terms_10k_output}/hdbscan --savefile=${terms_10k_output}/hdbscan/selection_data.csv $(hdbscan_selection_grid)
|
||||||
|
|
||||||
|
${authors_tf_10k_output}/hdbscan/selection_data.csv:clustering.py ${authors_tf_10k_input} clustering_base.py hdbscan_clustering.py
|
||||||
|
$(srun_singularity) python3 hdbscan_clustering.py --inpath=${authors_tf_10k_input} --outpath=${authors_tf_10k_output}/hdbscan --savefile=${authors_tf_10k_output}/hdbscan/selection_data.csv $(hdbscan_selection_grid)
|
||||||
|
|
||||||
|
|
||||||
|
## LSI Models
|
||||||
|
${authors_10k_output_lsi}/kmeans/selection_data.csv:selection.py ${authors_10k_input_lsi} clustering_base.py kmeans_clustering.py
|
||||||
|
$(srun_singularity) python3 kmeans_clustering_lsi.py --inpath=${authors_10k_input_lsi} --outpath=${authors_10k_output_lsi}/kmeans --savefile=${authors_10k_output_lsi}/kmeans/selection_data.csv $(kmeans_selection_grid)
|
||||||
|
|
||||||
|
${terms_10k_output_lsi}/kmeans/selection_data.csv:selection.py ${terms_10k_input_lsi} clustering_base.py kmeans_clustering.py
|
||||||
|
$(srun_singularity) python3 kmeans_clustering_lsi.py --inpath=${terms_10k_input_lsi} --outpath=${terms_10k_output_lsi}/kmeans --savefile=${terms_10k_output_lsi}/kmeans/selection_data.csv $(kmeans_selection_grid)
|
||||||
|
|
||||||
|
${authors_tf_10k_output_lsi}/kmeans/selection_data.csv:clustering.py ${authors_tf_10k_input_lsi} clustering_base.py kmeans_clustering.py
|
||||||
|
$(srun_singularity) python3 kmeans_clustering_lsi.py --inpath=${authors_tf_10k_input_lsi} --outpath=${authors_tf_10k_output_lsi}/kmeans --savefile=${authors_tf_10k_output_lsi}/kmeans/selection_data.csv $(kmeans_selection_grid)
|
||||||
|
|
||||||
|
${authors_10k_output_lsi}/affinity/selection_data.csv:selection.py ${authors_10k_input_lsi} clustering_base.py affinity_clustering.py
|
||||||
|
$(srun_singularity) python3 affinity_clustering_lsi.py --inpath=${authors_10k_input_lsi} --outpath=${authors_10k_output_lsi}/affinity --savefile=${authors_10k_output_lsi}/affinity/selection_data.csv $(affinity_selection_grid)
|
||||||
|
|
||||||
|
${terms_10k_output_lsi}/affinity/selection_data.csv:selection.py ${terms_10k_input_lsi} clustering_base.py affinity_clustering.py
|
||||||
|
$(srun_singularity) python3 affinity_clustering_lsi.py --inpath=${terms_10k_input_lsi} --outpath=${terms_10k_output_lsi}/affinity --savefile=${terms_10k_output_lsi}/affinity/selection_data.csv $(affinity_selection_grid)
|
||||||
|
|
||||||
|
${authors_tf_10k_output_lsi}/affinity/selection_data.csv:clustering.py ${authors_tf_10k_input_lsi} clustering_base.py affinity_clustering.py
|
||||||
|
$(srun_singularity) python3 affinity_clustering_lsi.py --inpath=${authors_tf_10k_input_lsi} --outpath=${authors_tf_10k_output_lsi}/affinity --savefile=${authors_tf_10k_output_lsi}/affinity/selection_data.csv $(affinity_selection_grid)
|
||||||
|
|
||||||
|
${authors_10k_output_lsi}/hdbscan/selection_data.csv:selection.py ${authors_10k_input_lsi} clustering_base.py hdbscan_clustering.py
|
||||||
|
$(srun_singularity) python3 hdbscan_clustering_lsi.py --inpath=${authors_10k_input_lsi} --outpath=${authors_10k_output_lsi}/hdbscan --savefile=${authors_10k_output_lsi}/hdbscan/selection_data.csv $(hdbscan_selection_grid)
|
||||||
|
|
||||||
|
${terms_10k_output_lsi}/hdbscan/selection_data.csv:selection.py ${terms_10k_input_lsi} clustering_base.py hdbscan_clustering.py
|
||||||
|
$(srun_singularity) python3 hdbscan_clustering_lsi.py --inpath=${terms_10k_input_lsi} --outpath=${terms_10k_output_lsi}/hdbscan --savefile=${terms_10k_output_lsi}/hdbscan/selection_data.csv $(hdbscan_selection_grid)
|
||||||
|
|
||||||
|
${authors_tf_10k_output_lsi}/hdbscan/selection_data.csv:clustering.py ${authors_tf_10k_input_lsi} clustering_base.py hdbscan_clustering.py
|
||||||
|
$(srun_singularity) python3 hdbscan_clustering_lsi.py --inpath=${authors_tf_10k_input_lsi} --outpath=${authors_tf_10k_output_lsi}/hdbscan --savefile=${authors_tf_10k_output_lsi}/hdbscan/selection_data.csv $(hdbscan_selection_grid)
|
||||||
|
|
||||||
|
${authors_tf_10k_output_lsi}/umap_hdbscan/selection_data.csv:umap_hdbscan_clustering_lsi.py
|
||||||
|
$(srun_singularity) python3 umap_hdbscan_clustering_lsi.py --inpath=${authors_tf_10k_input_lsi} --outpath=${authors_tf_10k_output_lsi}/umap_hdbscan --savefile=${authors_tf_10k_output_lsi}/umap_hdbscan/selection_data.csv $(umap_hdbscan_selection_grid)
|
||||||
|
|
||||||
|
|
||||||
|
${terms_10k_output_lsi}/best_hdbscan.feather:${terms_10k_output_lsi}/hdbscan/selection_data.csv pick_best_clustering.py
|
||||||
|
$(srun_singularity) python3 pick_best_clustering.py $< $@ --min_clusters=50 --max_isolates=5000 --min_cluster_size=2
|
||||||
|
|
||||||
|
${authors_tf_10k_output_lsi}/best_hdbscan.feather:${authors_tf_10k_output_lsi}/hdbscan/selection_data.csv pick_best_clustering.py
|
||||||
|
$(srun_singularity) python3 pick_best_clustering.py $< $@ --min_clusters=50 --max_isolates=5000 --min_cluster_size=2
|
||||||
|
|
||||||
|
${authors_tf_10k_output_lsi}/best_umap_hdbscan_2.feather:${authors_tf_10k_output_lsi}/umap_hdbscan/selection_data.csv pick_best_clustering.py
|
||||||
|
$(srun_singularity) python3 pick_best_clustering.py $< $@ --min_clusters=50 --max_isolates=5000 --min_cluster_size=2
|
||||||
|
|
||||||
|
best_umap_hdbscan.feather:${authors_tf_10k_output_lsi}/best_umap_hdbscan_2.feather
|
||||||
|
|
||||||
|
# {'lsi_dimensions': 700, 'outpath': '/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/umap_hdbscan', 'silhouette_score': 0.27616957, 'name': 'mcs-2_ms-5_cse-0.05_csm-leaf_nn-15_lr-1.0_md-0.1_lc-1_lsi-700', 'n_clusters': 547, 'n_isolates': 2093, 'silhouette_samples': '/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/umap_hdbscan/silhouette_samples-mcs-2_ms-5_cse-0.05_csm-leaf_nn-15_lr-1.0_md-0.1_lc-1_lsi-700.feather', 'min_cluster_size': 2, 'min_samples': 5, 'cluster_selection_epsilon': 0.05, 'cluster_selection_method': 'leaf', 'n_neighbors': 15, 'learning_rate': 1.0, 'min_dist': 0.1, 'local_connectivity': 1, 'n_isolates_str': '2093', 'n_isolates_0': False}
|
||||||
|
|
||||||
|
best_umap_grid=--min_cluster_sizes=[2] --min_samples=[5] --cluster_selection_epsilons=[0.05] --cluster_selection_methods=[leaf] --n_neighbors=[15] --learning_rate=[1] --min_dist=[0.1] --local_connectivity=[1] --save_step1=True
|
||||||
|
|
||||||
|
umap_hdbscan_coords:
|
||||||
|
python3 umap_hdbscan_clustering_lsi.py --inpath=${authors_tf_10k_input_lsi} --outpath=${authors_tf_10k_output_lsi}/umap_hdbscan --savefile=/dev/null ${best_umap_grid}
|
||||||
|
|
||||||
|
clean_affinity:
|
||||||
|
rm -f ${authors_10k_output}/affinity/selection_data.csv
|
||||||
|
rm -f ${authors_tf_10k_output}/affinity/selection_data.csv
|
||||||
|
rm -f ${terms_10k_output}/affinity/selection_data.csv
|
||||||
|
|
||||||
|
clean_kmeans:
|
||||||
|
rm -f ${authors_10k_output}/kmeans/selection_data.csv
|
||||||
|
rm -f ${authors_tf_10k_output}/kmeans/selection_data.csv
|
||||||
|
rm -f ${terms_10k_output}/kmeans/selection_data.csv
|
||||||
|
|
||||||
|
clean_hdbscan:
|
||||||
|
rm -f ${authors_10k_output}/hdbscan/selection_data.csv
|
||||||
|
rm -f ${authors_tf_10k_output}/hdbscan/selection_data.csv
|
||||||
|
rm -f ${terms_10k_output}/hdbscan/selection_data.csv
|
||||||
|
|
||||||
|
clean_authors:
|
||||||
|
rm -f ${authors_10k_output}/affinity/selection_data.csv
|
||||||
|
rm -f ${authors_10k_output}/kmeans/selection_data.csv
|
||||||
|
rm -f ${authors_10k_output}/hdbscan/selection_data.csv
|
||||||
|
|
||||||
|
clean_authors_tf:
|
||||||
|
rm -f ${authors_tf_10k_output}/affinity/selection_data.csv
|
||||||
|
rm -f ${authors_tf_10k_output}/kmeans/selection_data.csv
|
||||||
|
rm -f ${authors_tf_10k_output}/hdbscan/selection_data.csv
|
||||||
|
|
||||||
|
clean_terms:
|
||||||
|
rm -f ${terms_10k_output}/affinity/selection_data.csv
|
||||||
|
rm -f ${terms_10k_output}/kmeans/selection_data.csv
|
||||||
|
rm -f ${terms_10k_output}/hdbscan/selection_data.csv
|
||||||
|
|
||||||
|
clean_lsi_affinity:
|
||||||
|
rm -f ${authors_10k_output_lsi}/affinity/selection_data.csv
|
||||||
|
rm -f ${authors_tf_10k_output_lsi}/affinity/selection_data.csv
|
||||||
|
rm -f ${terms_10k_output_lsi}/affinity/selection_data.csv
|
||||||
|
|
||||||
|
clean_lsi_kmeans:
|
||||||
|
rm -f ${authors_10k_output_lsi}/kmeans/selection_data.csv
|
||||||
|
rm -f ${authors_tf_10k_output_lsi}/kmeans/selection_data.csv
|
||||||
|
rm -f ${terms_10k_output_lsi}/kmeans/selection_data.csv
|
||||||
|
|
||||||
|
clean_lsi_hdbscan:
|
||||||
|
rm -f ${authors_10k_output_lsi}/hdbscan/selection_data.csv
|
||||||
|
rm -f ${authors_tf_10k_output_lsi}/hdbscan/selection_data.csv
|
||||||
|
rm -f ${terms_10k_output_lsi}/hdbscan/selection_data.csv
|
||||||
|
|
||||||
|
clean_lsi_authors:
|
||||||
|
rm -f ${authors_10k_output_lsi}/affinity/selection_data.csv
|
||||||
|
rm -f ${authors_10k_output_lsi}/kmeans/selection_data.csv
|
||||||
|
rm -f ${authors_10k_output_lsi}/hdbscan/selection_data.csv
|
||||||
|
|
||||||
|
clean_lsi_authors_tf:
|
||||||
|
rm -f ${authors_tf_10k_output_lsi}/affinity/selection_data.csv
|
||||||
|
rm -f ${authors_tf_10k_output_lsi}/kmeans/selection_data.csv
|
||||||
|
rm -f ${authors_tf_10k_output_lsi}/hdbscan/selection_data.csv
|
||||||
|
|
||||||
|
clean_lsi_terms:
|
||||||
|
rm -f ${terms_10k_output_lsi}/affinity/selection_data.csv
|
||||||
|
rm -f ${terms_10k_output_lsi}/kmeans/selection_data.csv
|
||||||
|
rm -f ${terms_10k_output_lsi}/hdbscan/selection_data.csv
|
||||||
|
|
||||||
|
clean: clean_affinity clean_kmeans clean_hdbscan
|
||||||
|
|
||||||
|
PHONY: clean clean_affinity clean_kmeans clean_hdbscan clean_authors clean_authors_tf clean_terms terms_10k authors_10k authors_tf_10k best_umap_hdbscan.feather umap_hdbscan_coords
|
||||||
|
|
||||||
# $(clustering_data)/subreddit_comment_authors_30k.feather/SUCCESS:selection.py $(similarity_data)/subreddit_comment_authors_30k.feather clustering.py
|
# $(clustering_data)/subreddit_comment_authors_30k.feather/SUCCESS:selection.py $(similarity_data)/subreddit_comment_authors_30k.feather clustering.py
|
||||||
# $(srun_singularity) python3 selection.py $(similarity_data)/subreddit_comment_authors_30k.feather $(clustering_data)/subreddit_comment_authors_30k $(selection_grid) -J 10 && touch $(clustering_data)/subreddit_comment_authors_30k.feather/SUCCESS
|
# $(srun_singularity) python3 selection.py $(similarity_data)/subreddit_comment_authors_30k.feather $(clustering_data)/subreddit_comment_authors_30k $(selection_grid) -J 10 && touch $(clustering_data)/subreddit_comment_authors_30k.feather/SUCCESS
|
||||||
|
|||||||
129
clustering/affinity_clustering.py
Normal file
129
clustering/affinity_clustering.py
Normal file
@@ -0,0 +1,129 @@
|
|||||||
|
from sklearn.cluster import AffinityPropagation
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from clustering_base import clustering_result, clustering_job
|
||||||
|
from grid_sweep import grid_sweep
|
||||||
|
from pathlib import Path
|
||||||
|
from itertools import product, starmap
|
||||||
|
import fire
|
||||||
|
import sys
|
||||||
|
import numpy as np
|
||||||
|
|
||||||
|
# silhouette is the only one that doesn't need the feature matrix. So it's probably the only one that's worth trying.
|
||||||
|
@dataclass
|
||||||
|
class affinity_clustering_result(clustering_result):
|
||||||
|
damping:float
|
||||||
|
convergence_iter:int
|
||||||
|
preference_quantile:float
|
||||||
|
preference:float
|
||||||
|
max_iter:int
|
||||||
|
|
||||||
|
class affinity_job(clustering_job):
|
||||||
|
def __init__(self, infile, outpath, name, damping=0.9, max_iter=100000, convergence_iter=30, preference_quantile=0.5, random_state=1968, verbose=True):
|
||||||
|
super().__init__(infile,
|
||||||
|
outpath,
|
||||||
|
name,
|
||||||
|
call=self._affinity_clustering,
|
||||||
|
preference_quantile=preference_quantile,
|
||||||
|
damping=damping,
|
||||||
|
max_iter=max_iter,
|
||||||
|
convergence_iter=convergence_iter,
|
||||||
|
random_state=1968,
|
||||||
|
verbose=verbose)
|
||||||
|
self.damping=damping
|
||||||
|
self.max_iter=max_iter
|
||||||
|
self.convergence_iter=convergence_iter
|
||||||
|
self.preference_quantile=preference_quantile
|
||||||
|
|
||||||
|
def _affinity_clustering(self, mat, preference_quantile, *args, **kwargs):
|
||||||
|
mat = 1-mat
|
||||||
|
preference = np.quantile(mat, preference_quantile)
|
||||||
|
self.preference = preference
|
||||||
|
print(f"preference is {preference}")
|
||||||
|
print("data loaded")
|
||||||
|
sys.stdout.flush()
|
||||||
|
clustering = AffinityPropagation(*args,
|
||||||
|
preference=preference,
|
||||||
|
affinity='precomputed',
|
||||||
|
copy=False,
|
||||||
|
**kwargs).fit(mat)
|
||||||
|
return clustering
|
||||||
|
|
||||||
|
def get_info(self):
|
||||||
|
result = super().get_info()
|
||||||
|
self.result=affinity_clustering_result(**result.__dict__,
|
||||||
|
damping=self.damping,
|
||||||
|
max_iter=self.max_iter,
|
||||||
|
convergence_iter=self.convergence_iter,
|
||||||
|
preference_quantile=self.preference_quantile,
|
||||||
|
preference=self.preference)
|
||||||
|
|
||||||
|
return self.result
|
||||||
|
|
||||||
|
class affinity_grid_sweep(grid_sweep):
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
outpath,
|
||||||
|
*args,
|
||||||
|
**kwargs):
|
||||||
|
|
||||||
|
super().__init__(affinity_job,
|
||||||
|
_afffinity_grid_sweep,
|
||||||
|
inpath,
|
||||||
|
outpath,
|
||||||
|
self.namer,
|
||||||
|
*args,
|
||||||
|
**kwargs)
|
||||||
|
def namer(self,
|
||||||
|
damping,
|
||||||
|
max_iter,
|
||||||
|
convergence_iter,
|
||||||
|
preference_quantile):
|
||||||
|
|
||||||
|
return f"damp-{damping}_maxit-{max_iter}_convit-{convergence_iter}_prefq-{preference_quantile}"
|
||||||
|
|
||||||
|
def run_affinity_grid_sweep(savefile, inpath, outpath, dampings=[0.8], max_iters=[3000], convergence_iters=[30], preference_quantiles=[0.5],n_cores=10):
|
||||||
|
"""Run affinity clustering once or more with different parameters.
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
affinity_clustering.py --savefile=SAVEFILE --inpath=INPATH --outpath=OUTPATH --max_iters=<csv> --dampings=<csv> --preference_quantiles=<csv>
|
||||||
|
|
||||||
|
Keword arguments:
|
||||||
|
savefile: path to save the metadata and diagnostics
|
||||||
|
inpath: path to feather data containing a labeled matrix of subreddit similarities.
|
||||||
|
outpath: path to output fit kmeans clusterings.
|
||||||
|
dampings:one or more numbers in [0.5, 1). damping parameter in affinity propagatin clustering.
|
||||||
|
preference_quantiles:one or more numbers in (0,1) for selecting the 'preference' parameter.
|
||||||
|
convergence_iters:one or more integers of number of iterations without improvement before stopping.
|
||||||
|
max_iters: one or more numbers of different maximum interations.
|
||||||
|
"""
|
||||||
|
obj = affinity_grid_sweep(inpath,
|
||||||
|
outpath,
|
||||||
|
map(float,dampings),
|
||||||
|
map(int,max_iters),
|
||||||
|
map(int,convergence_iters),
|
||||||
|
map(float,preference_quantiles))
|
||||||
|
obj.run(n_cores)
|
||||||
|
obj.save(savefile)
|
||||||
|
|
||||||
|
def test_select_affinity_clustering():
|
||||||
|
# select_hdbscan_clustering("/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_30k_LSI",
|
||||||
|
# "test_hdbscan_author30k",
|
||||||
|
# min_cluster_sizes=[2],
|
||||||
|
# min_samples=[1,2],
|
||||||
|
# cluster_selection_epsilons=[0,0.05,0.1,0.15],
|
||||||
|
# cluster_selection_methods=['eom','leaf'],
|
||||||
|
# lsi_dimensions='all')
|
||||||
|
inpath = "/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_10k_LSI/"
|
||||||
|
outpath = "test_affinity";
|
||||||
|
dampings=[0.8,0.9]
|
||||||
|
max_iters=[100000]
|
||||||
|
convergence_iters=[15]
|
||||||
|
preference_quantiles=[0.5,0.7]
|
||||||
|
|
||||||
|
gs = affinity_lsi_grid_sweep(inpath, 'all', outpath, dampings, max_iters, convergence_iters, preference_quantiles)
|
||||||
|
gs.run(20)
|
||||||
|
gs.save("test_affinity/lsi_sweep.csv")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
fire.Fire(run_affinity_grid_sweep)
|
||||||
99
clustering/affinity_clustering_lsi.py
Normal file
99
clustering/affinity_clustering_lsi.py
Normal file
@@ -0,0 +1,99 @@
|
|||||||
|
import fire
|
||||||
|
from affinity_clustering import affinity_clustering_result, affinity_job, affinity_grid_sweep
|
||||||
|
from grid_sweep import grid_sweep
|
||||||
|
from lsi_base import lsi_result_mixin, lsi_grid_sweep, lsi_mixin
|
||||||
|
from dataclasses import dataclass
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class affinity_clustering_result_lsi(affinity_clustering_result, lsi_result_mixin):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class affinity_lsi_job(affinity_job, lsi_mixin):
|
||||||
|
def __init__(self, infile, outpath, name, lsi_dims, *args, **kwargs):
|
||||||
|
super().__init__(infile,
|
||||||
|
outpath,
|
||||||
|
name,
|
||||||
|
*args,
|
||||||
|
**kwargs)
|
||||||
|
super().set_lsi_dims(lsi_dims)
|
||||||
|
|
||||||
|
def get_info(self):
|
||||||
|
result = super().get_info()
|
||||||
|
self.result = affinity_clustering_result_lsi(**result.__dict__,
|
||||||
|
lsi_dimensions=self.lsi_dims)
|
||||||
|
return self.result
|
||||||
|
|
||||||
|
class affinity_lsi_grid_sweep(lsi_grid_sweep):
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
lsi_dims,
|
||||||
|
outpath,
|
||||||
|
dampings=[0.9],
|
||||||
|
max_iters=[10000],
|
||||||
|
convergence_iters=[30],
|
||||||
|
preference_quantiles=[0.5]):
|
||||||
|
|
||||||
|
super().__init__(affinity_lsi_job,
|
||||||
|
_affinity_lsi_grid_sweep,
|
||||||
|
inpath,
|
||||||
|
lsi_dims,
|
||||||
|
outpath,
|
||||||
|
dampings,
|
||||||
|
max_iters,
|
||||||
|
convergence_iters,
|
||||||
|
preference_quantiles)
|
||||||
|
|
||||||
|
|
||||||
|
class _affinity_lsi_grid_sweep(grid_sweep):
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
outpath,
|
||||||
|
lsi_dim,
|
||||||
|
*args,
|
||||||
|
**kwargs):
|
||||||
|
self.lsi_dim = lsi_dim
|
||||||
|
self.jobtype = affinity_lsi_job
|
||||||
|
super().__init__(self.jobtype,
|
||||||
|
inpath,
|
||||||
|
outpath,
|
||||||
|
self.namer,
|
||||||
|
[self.lsi_dim],
|
||||||
|
*args,
|
||||||
|
**kwargs)
|
||||||
|
|
||||||
|
def namer(self, *args, **kwargs):
|
||||||
|
s = affinity_grid_sweep.namer(self, *args[1:], **kwargs)
|
||||||
|
s += f"_lsi-{self.lsi_dim}"
|
||||||
|
return s
|
||||||
|
|
||||||
|
def run_affinity_lsi_grid_sweep(savefile, inpath, outpath, dampings=[0.8], max_iters=[3000], convergence_iters=[30], preference_quantiles=[0.5], lsi_dimensions='all',n_cores=30):
|
||||||
|
"""Run affinity clustering once or more with different parameters.
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
affinity_clustering.py --savefile=SAVEFILE --inpath=INPATH --outpath=OUTPATH --max_iters=<csv> --dampings=<csv> --preference_quantiles=<csv> --lsi_dimensions: either "all" or one or more available lsi similarity dimensions at INPATH.
|
||||||
|
|
||||||
|
Keword arguments:
|
||||||
|
savefile: path to save the metadata and diagnostics
|
||||||
|
inpath: path to folder containing feather files with LSI similarity labeled matrices of subreddit similarities.
|
||||||
|
outpath: path to output fit kmeans clusterings.
|
||||||
|
dampings:one or more numbers in [0.5, 1). damping parameter in affinity propagatin clustering.
|
||||||
|
preference_quantiles:one or more numbers in (0,1) for selecting the 'preference' parameter.
|
||||||
|
convergence_iters:one or more integers of number of iterations without improvement before stopping.
|
||||||
|
max_iters: one or more numbers of different maximum interations.
|
||||||
|
lsi_dimensions: either "all" or one or more available lsi similarity dimensions at INPATH.
|
||||||
|
"""
|
||||||
|
|
||||||
|
obj = affinity_lsi_grid_sweep(inpath,
|
||||||
|
lsi_dimensions,
|
||||||
|
outpath,
|
||||||
|
map(float,dampings),
|
||||||
|
map(int,max_iters),
|
||||||
|
map(int,convergence_iters),
|
||||||
|
map(float,preference_quantiles))
|
||||||
|
|
||||||
|
obj.run(n_cores)
|
||||||
|
obj.save(savefile)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
fire.Fire(run_affinity_lsi_grid_sweep)
|
||||||
@@ -6,21 +6,20 @@ import numpy as np
|
|||||||
from sklearn.cluster import AffinityPropagation
|
from sklearn.cluster import AffinityPropagation
|
||||||
import fire
|
import fire
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
from multiprocessing import cpu_count
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from clustering_base import sim_to_dist, process_clustering_result, clustering_result, read_similarity_mat
|
||||||
|
|
||||||
def read_similarity_mat(similarities, use_threads=True):
|
def affinity_clustering(similarities, output, *args, **kwargs):
|
||||||
df = pd.read_feather(similarities, use_threads=use_threads)
|
|
||||||
mat = np.array(df.drop('_subreddit',1))
|
|
||||||
n = mat.shape[0]
|
|
||||||
mat[range(n),range(n)] = 1
|
|
||||||
return (df._subreddit,mat)
|
|
||||||
|
|
||||||
def affinity_clustering(similarities, *args, **kwargs):
|
|
||||||
subreddits, mat = read_similarity_mat(similarities)
|
subreddits, mat = read_similarity_mat(similarities)
|
||||||
return _affinity_clustering(mat, subreddits, *args, **kwargs)
|
clustering = _affinity_clustering(mat, *args, **kwargs)
|
||||||
|
cluster_data = process_clustering_result(clustering, subreddits)
|
||||||
|
cluster_data['algorithm'] = 'affinity'
|
||||||
|
return(cluster_data)
|
||||||
|
|
||||||
def _affinity_clustering(mat, subreddits, output, damping=0.9, max_iter=100000, convergence_iter=30, preference_quantile=0.5, random_state=1968, verbose=True):
|
def _affinity_clustering(mat, subreddits, output, damping=0.9, max_iter=100000, convergence_iter=30, preference_quantile=0.5, random_state=1968, verbose=True):
|
||||||
'''
|
'''
|
||||||
similarities: feather file with a dataframe of similarity scores
|
similarities: matrix of similarity scores
|
||||||
preference_quantile: parameter controlling how many clusters to make. higher values = more clusters. 0.85 is a good value with 3000 subreddits.
|
preference_quantile: parameter controlling how many clusters to make. higher values = more clusters. 0.85 is a good value with 3000 subreddits.
|
||||||
damping: parameter controlling how iterations are merged. Higher values make convergence faster and more dependable. 0.85 is a good value for the 10000 subreddits by author.
|
damping: parameter controlling how iterations are merged. Higher values make convergence faster and more dependable. 0.85 is a good value for the 10000 subreddits by author.
|
||||||
'''
|
'''
|
||||||
@@ -40,25 +39,14 @@ def _affinity_clustering(mat, subreddits, output, damping=0.9, max_iter=100000,
|
|||||||
verbose=verbose,
|
verbose=verbose,
|
||||||
random_state=random_state).fit(mat)
|
random_state=random_state).fit(mat)
|
||||||
|
|
||||||
|
cluster_data = process_clustering_result(clustering, subreddits)
|
||||||
print(f"clustering took {clustering.n_iter_} iterations")
|
output = Path(output)
|
||||||
clusters = clustering.labels_
|
output.parent.mkdir(parents=True,exist_ok=True)
|
||||||
|
|
||||||
print(f"found {len(set(clusters))} clusters")
|
|
||||||
|
|
||||||
cluster_data = pd.DataFrame({'subreddit': subreddits,'cluster':clustering.labels_})
|
|
||||||
|
|
||||||
cluster_sizes = cluster_data.groupby("cluster").count()
|
|
||||||
print(f"the largest cluster has {cluster_sizes.subreddit.max()} members")
|
|
||||||
|
|
||||||
print(f"the median cluster has {cluster_sizes.subreddit.median()} members")
|
|
||||||
|
|
||||||
print(f"{(cluster_sizes.subreddit==1).sum()} clusters have 1 member")
|
|
||||||
|
|
||||||
sys.stdout.flush()
|
|
||||||
cluster_data.to_feather(output)
|
cluster_data.to_feather(output)
|
||||||
print(f"saved {output}")
|
print(f"saved {output}")
|
||||||
return clustering
|
return clustering
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
fire.Fire(affinity_clustering)
|
fire.Fire(affinity_clustering)
|
||||||
|
|||||||
146
clustering/clustering_base.py
Normal file
146
clustering/clustering_base.py
Normal file
@@ -0,0 +1,146 @@
|
|||||||
|
import pickle
|
||||||
|
from pathlib import Path
|
||||||
|
import numpy as np
|
||||||
|
import pandas as pd
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from sklearn.metrics import silhouette_score, silhouette_samples
|
||||||
|
from collections import Counter
|
||||||
|
|
||||||
|
# this is meant to be an interface, not created directly
|
||||||
|
class clustering_job:
|
||||||
|
def __init__(self, infile, outpath, name, call, *args, **kwargs):
|
||||||
|
self.outpath = Path(outpath)
|
||||||
|
self.call = call
|
||||||
|
self.args = args
|
||||||
|
self.kwargs = kwargs
|
||||||
|
self.infile = Path(infile)
|
||||||
|
self.name = name
|
||||||
|
self.hasrun = False
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
self.subreddits, self.mat = self.read_distance_mat(self.infile)
|
||||||
|
self.clustering = self.call(self.mat, *self.args, **self.kwargs)
|
||||||
|
self.cluster_data = self.process_clustering(self.clustering, self.subreddits)
|
||||||
|
self.score = self.silhouette()
|
||||||
|
self.outpath.mkdir(parents=True, exist_ok=True)
|
||||||
|
self.cluster_data.to_feather(self.outpath/(self.name + ".feather"))
|
||||||
|
self.hasrun = True
|
||||||
|
self.cleanup()
|
||||||
|
|
||||||
|
def cleanup(self):
|
||||||
|
self.cluster_data = None
|
||||||
|
self.mat = None
|
||||||
|
self.clustering=None
|
||||||
|
self.subreddits=None
|
||||||
|
|
||||||
|
def get_info(self):
|
||||||
|
if not self.hasrun:
|
||||||
|
self.run()
|
||||||
|
|
||||||
|
self.result = clustering_result(outpath=str(self.outpath.resolve()),
|
||||||
|
silhouette_score=self.score,
|
||||||
|
name=self.name,
|
||||||
|
n_clusters=self.n_clusters,
|
||||||
|
n_isolates=self.n_isolates,
|
||||||
|
silhouette_samples = self.silsampout
|
||||||
|
)
|
||||||
|
return self.result
|
||||||
|
|
||||||
|
def silhouette(self):
|
||||||
|
counts = Counter(self.clustering.labels_)
|
||||||
|
singletons = [key for key, value in counts.items() if value == 1]
|
||||||
|
isolates = (self.clustering.labels_ == -1) | (np.isin(self.clustering.labels_,np.array(singletons)))
|
||||||
|
scoremat = self.mat[~isolates][:,~isolates]
|
||||||
|
if self.n_clusters > 1:
|
||||||
|
score = silhouette_score(scoremat, self.clustering.labels_[~isolates], metric='precomputed')
|
||||||
|
silhouette_samp = silhouette_samples(self.mat, self.clustering.labels_, metric='precomputed')
|
||||||
|
silhouette_samp = pd.DataFrame({'subreddit':self.subreddits,'score':silhouette_samp})
|
||||||
|
self.outpath.mkdir(parents=True, exist_ok=True)
|
||||||
|
silsampout = self.outpath / ("silhouette_samples-" + self.name + ".feather")
|
||||||
|
self.silsampout = silsampout.resolve()
|
||||||
|
silhouette_samp.to_feather(self.silsampout)
|
||||||
|
else:
|
||||||
|
score = None
|
||||||
|
self.silsampout = None
|
||||||
|
return score
|
||||||
|
|
||||||
|
def read_distance_mat(self, similarities, use_threads=True):
|
||||||
|
print(similarities)
|
||||||
|
df = pd.read_feather(similarities, use_threads=use_threads)
|
||||||
|
mat = np.array(df.drop('_subreddit',1))
|
||||||
|
n = mat.shape[0]
|
||||||
|
mat[range(n),range(n)] = 1
|
||||||
|
return (df._subreddit,1-mat)
|
||||||
|
|
||||||
|
def process_clustering(self, clustering, subreddits):
|
||||||
|
|
||||||
|
if hasattr(clustering,'n_iter_'):
|
||||||
|
print(f"clustering took {clustering.n_iter_} iterations")
|
||||||
|
|
||||||
|
clusters = clustering.labels_
|
||||||
|
self.n_clusters = len(set(clusters))
|
||||||
|
|
||||||
|
print(f"found {self.n_clusters} clusters")
|
||||||
|
|
||||||
|
cluster_data = pd.DataFrame({'subreddit': subreddits,'cluster':clustering.labels_})
|
||||||
|
|
||||||
|
cluster_sizes = cluster_data.groupby("cluster").count().reset_index()
|
||||||
|
print(f"the largest cluster has {cluster_sizes.loc[cluster_sizes.cluster!=-1].subreddit.max()} members")
|
||||||
|
|
||||||
|
print(f"the median cluster has {cluster_sizes.subreddit.median()} members")
|
||||||
|
n_isolates1 = (cluster_sizes.subreddit==1).sum()
|
||||||
|
|
||||||
|
print(f"{n_isolates1} clusters have 1 member")
|
||||||
|
|
||||||
|
n_isolates2 = cluster_sizes.loc[cluster_sizes.cluster==-1,:]['subreddit'].to_list()
|
||||||
|
if len(n_isolates2) > 0:
|
||||||
|
n_isloates2 = n_isolates2[0]
|
||||||
|
print(f"{n_isolates2} subreddits are in cluster -1",flush=True)
|
||||||
|
|
||||||
|
if n_isolates1 == 0:
|
||||||
|
self.n_isolates = n_isolates2
|
||||||
|
else:
|
||||||
|
self.n_isolates = n_isolates1
|
||||||
|
|
||||||
|
return cluster_data
|
||||||
|
|
||||||
|
class twoway_clustering_job(clustering_job):
|
||||||
|
def __init__(self, infile, outpath, name, call1, call2, args1, args2):
|
||||||
|
self.outpath = Path(outpath)
|
||||||
|
self.call1 = call1
|
||||||
|
self.args1 = args1
|
||||||
|
self.call2 = call2
|
||||||
|
self.args2 = args2
|
||||||
|
self.infile = Path(infile)
|
||||||
|
self.name = name
|
||||||
|
self.hasrun = False
|
||||||
|
self.args = args1|args2
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
self.subreddits, self.mat = self.read_distance_mat(self.infile)
|
||||||
|
self.step1 = self.call1(self.mat, **self.args1)
|
||||||
|
self.clustering = self.call2(self.mat, self.step1, **self.args2)
|
||||||
|
self.cluster_data = self.process_clustering(self.clustering, self.subreddits)
|
||||||
|
self.hasrun = True
|
||||||
|
self.after_run()
|
||||||
|
self.cleanup()
|
||||||
|
|
||||||
|
def after_run():
|
||||||
|
self.score = self.silhouette()
|
||||||
|
self.outpath.mkdir(parents=True, exist_ok=True)
|
||||||
|
print(self.outpath/(self.name+".feather"))
|
||||||
|
self.cluster_data.to_feather(self.outpath/(self.name + ".feather"))
|
||||||
|
|
||||||
|
|
||||||
|
def cleanup(self):
|
||||||
|
super().cleanup()
|
||||||
|
self.step1 = None
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class clustering_result:
|
||||||
|
outpath:Path
|
||||||
|
silhouette_score:float
|
||||||
|
name:str
|
||||||
|
n_clusters:int
|
||||||
|
n_isolates:int
|
||||||
|
silhouette_samples:str
|
||||||
@@ -17,7 +17,7 @@ def fit_tsne(similarities, output, learning_rate=750, perplexity=50, n_iter=1000
|
|||||||
df = pd.read_feather(similarities)
|
df = pd.read_feather(similarities)
|
||||||
|
|
||||||
n = df.shape[0]
|
n = df.shape[0]
|
||||||
mat = np.array(df.drop('subreddit',1),dtype=np.float64)
|
mat = np.array(df.drop('_subreddit',1),dtype=np.float64)
|
||||||
mat[range(n),range(n)] = 1
|
mat[range(n),range(n)] = 1
|
||||||
mat[mat > 1] = 1
|
mat[mat > 1] = 1
|
||||||
dist = 2*np.arccos(mat)/np.pi
|
dist = 2*np.arccos(mat)/np.pi
|
||||||
@@ -26,7 +26,7 @@ def fit_tsne(similarities, output, learning_rate=750, perplexity=50, n_iter=1000
|
|||||||
|
|
||||||
tsne_fit_whole = tsne_fit_model.fit_transform(dist)
|
tsne_fit_whole = tsne_fit_model.fit_transform(dist)
|
||||||
|
|
||||||
plot_data = pd.DataFrame({'x':tsne_fit_whole[:,0],'y':tsne_fit_whole[:,1], 'subreddit':df.subreddit})
|
plot_data = pd.DataFrame({'x':tsne_fit_whole[:,0],'y':tsne_fit_whole[:,1], '_subreddit':df['_subreddit']})
|
||||||
|
|
||||||
plot_data.to_feather(output)
|
plot_data.to_feather(output)
|
||||||
|
|
||||||
|
|||||||
49
clustering/grid_sweep.py
Normal file
49
clustering/grid_sweep.py
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
from pathlib import Path
|
||||||
|
from multiprocessing import Pool, cpu_count
|
||||||
|
from itertools import product, chain
|
||||||
|
import pandas as pd
|
||||||
|
|
||||||
|
class grid_sweep:
|
||||||
|
def __init__(self, jobtype, inpath, outpath, namer, *args):
|
||||||
|
self.jobtype = jobtype
|
||||||
|
self.namer = namer
|
||||||
|
print(*args)
|
||||||
|
grid = list(product(*args))
|
||||||
|
inpath = Path(inpath)
|
||||||
|
outpath = Path(outpath)
|
||||||
|
self.hasrun = False
|
||||||
|
self.grid = [(inpath,outpath,namer(*g)) + g for g in grid]
|
||||||
|
self.jobs = [jobtype(*g) for g in self.grid]
|
||||||
|
|
||||||
|
def run(self, cores=20):
|
||||||
|
if cores is not None and cores > 1:
|
||||||
|
with Pool(cores) as pool:
|
||||||
|
infos = pool.map(self.jobtype.get_info, self.jobs)
|
||||||
|
else:
|
||||||
|
infos = map(self.jobtype.get_info, self.jobs)
|
||||||
|
|
||||||
|
self.infos = pd.DataFrame(infos)
|
||||||
|
self.hasrun = True
|
||||||
|
|
||||||
|
def save(self, outcsv):
|
||||||
|
if not self.hasrun:
|
||||||
|
self.run()
|
||||||
|
outcsv = Path(outcsv)
|
||||||
|
outcsv.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
self.infos.to_csv(outcsv)
|
||||||
|
|
||||||
|
|
||||||
|
class twoway_grid_sweep(grid_sweep):
|
||||||
|
def __init__(self, jobtype, inpath, outpath, namer, args1, args2, *args, **kwargs):
|
||||||
|
self.jobtype = jobtype
|
||||||
|
self.namer = namer
|
||||||
|
prod1 = product(* args1.values())
|
||||||
|
prod2 = product(* args2.values())
|
||||||
|
grid1 = [dict(zip(args1.keys(), pargs)) for pargs in prod1]
|
||||||
|
grid2 = [dict(zip(args2.keys(), pargs)) for pargs in prod2]
|
||||||
|
grid = product(grid1, grid2)
|
||||||
|
inpath = Path(inpath)
|
||||||
|
outpath = Path(outpath)
|
||||||
|
self.hasrun = False
|
||||||
|
self.grid = [(inpath,outpath,namer(**(g[0] | g[1])), g[0], g[1], *args) for g in grid]
|
||||||
|
self.jobs = [jobtype(*g) for g in self.grid]
|
||||||
159
clustering/hdbscan_clustering.py
Normal file
159
clustering/hdbscan_clustering.py
Normal file
@@ -0,0 +1,159 @@
|
|||||||
|
from clustering_base import clustering_result, clustering_job
|
||||||
|
from grid_sweep import grid_sweep
|
||||||
|
from dataclasses import dataclass
|
||||||
|
import hdbscan
|
||||||
|
from sklearn.neighbors import NearestNeighbors
|
||||||
|
import plotnine as pn
|
||||||
|
import numpy as np
|
||||||
|
from itertools import product, starmap, chain
|
||||||
|
import pandas as pd
|
||||||
|
from multiprocessing import cpu_count
|
||||||
|
import fire
|
||||||
|
|
||||||
|
def test_select_hdbscan_clustering():
|
||||||
|
# select_hdbscan_clustering("/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_30k_LSI",
|
||||||
|
# "test_hdbscan_author30k",
|
||||||
|
# min_cluster_sizes=[2],
|
||||||
|
# min_samples=[1,2],
|
||||||
|
# cluster_selection_epsilons=[0,0.05,0.1,0.15],
|
||||||
|
# cluster_selection_methods=['eom','leaf'],
|
||||||
|
# lsi_dimensions='all')
|
||||||
|
inpath = "/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/similarity/comment_authors_compex_LSI"
|
||||||
|
outpath = "test_hdbscan";
|
||||||
|
min_cluster_sizes=[2,3,4];
|
||||||
|
min_samples=[1,2,3];
|
||||||
|
cluster_selection_epsilons=[0,0.1,0.3,0.5];
|
||||||
|
cluster_selection_methods=[1];
|
||||||
|
lsi_dimensions='all'
|
||||||
|
gs = hdbscan_lsi_grid_sweep(inpath, "all", outpath, min_cluster_sizes, min_samples, cluster_selection_epsilons, cluster_selection_methods)
|
||||||
|
gs.run(20)
|
||||||
|
gs.save("test_hdbscan/lsi_sweep.csv")
|
||||||
|
# job1 = hdbscan_lsi_job(infile=inpath, outpath=outpath, name="test", lsi_dims=500, min_cluster_size=2, min_samples=1,cluster_selection_epsilon=0,cluster_selection_method='eom')
|
||||||
|
# job1.run()
|
||||||
|
# print(job1.get_info())
|
||||||
|
|
||||||
|
# df = pd.read_csv("test_hdbscan/selection_data.csv")
|
||||||
|
# test_select_hdbscan_clustering()
|
||||||
|
# check_clusters = pd.read_feather("test_hdbscan/500_2_2_0.1_eom.feather")
|
||||||
|
# silscores = pd.read_feather("test_hdbscan/silhouette_samples500_2_2_0.1_eom.feather")
|
||||||
|
# c = check_clusters.merge(silscores,on='subreddit')# fire.Fire(select_hdbscan_clustering)
|
||||||
|
class hdbscan_grid_sweep(grid_sweep):
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
outpath,
|
||||||
|
*args,
|
||||||
|
**kwargs):
|
||||||
|
|
||||||
|
super().__init__(hdbscan_job, inpath, outpath, self.namer, *args, **kwargs)
|
||||||
|
|
||||||
|
def namer(self,
|
||||||
|
min_cluster_size,
|
||||||
|
min_samples,
|
||||||
|
cluster_selection_epsilon,
|
||||||
|
cluster_selection_method):
|
||||||
|
return f"mcs-{min_cluster_size}_ms-{min_samples}_cse-{cluster_selection_epsilon}_csm-{cluster_selection_method}"
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class hdbscan_clustering_result(clustering_result):
|
||||||
|
min_cluster_size:int
|
||||||
|
min_samples:int
|
||||||
|
cluster_selection_epsilon:float
|
||||||
|
cluster_selection_method:str
|
||||||
|
|
||||||
|
class hdbscan_job(clustering_job):
|
||||||
|
def __init__(self, infile, outpath, name, min_cluster_size=2, min_samples=1, cluster_selection_epsilon=0, cluster_selection_method='eom'):
|
||||||
|
super().__init__(infile,
|
||||||
|
outpath,
|
||||||
|
name,
|
||||||
|
call=hdbscan_job._hdbscan_clustering,
|
||||||
|
min_cluster_size=min_cluster_size,
|
||||||
|
min_samples=min_samples,
|
||||||
|
cluster_selection_epsilon=cluster_selection_epsilon,
|
||||||
|
cluster_selection_method=cluster_selection_method
|
||||||
|
)
|
||||||
|
|
||||||
|
self.min_cluster_size = min_cluster_size
|
||||||
|
self.min_samples = min_samples
|
||||||
|
self.cluster_selection_epsilon = cluster_selection_epsilon
|
||||||
|
self.cluster_selection_method = cluster_selection_method
|
||||||
|
# self.mat = 1 - self.mat
|
||||||
|
|
||||||
|
def _hdbscan_clustering(mat, *args, **kwargs):
|
||||||
|
print(f"running hdbscan clustering. args:{args}. kwargs:{kwargs}")
|
||||||
|
print(mat)
|
||||||
|
clusterer = hdbscan.HDBSCAN(metric='precomputed',
|
||||||
|
core_dist_n_jobs=cpu_count(),
|
||||||
|
*args,
|
||||||
|
**kwargs,
|
||||||
|
)
|
||||||
|
|
||||||
|
clustering = clusterer.fit(mat.astype('double'))
|
||||||
|
|
||||||
|
return(clustering)
|
||||||
|
|
||||||
|
def get_info(self):
|
||||||
|
result = super().get_info()
|
||||||
|
self.result = hdbscan_clustering_result(**result.__dict__,
|
||||||
|
min_cluster_size=self.min_cluster_size,
|
||||||
|
min_samples=self.min_samples,
|
||||||
|
cluster_selection_epsilon=self.cluster_selection_epsilon,
|
||||||
|
cluster_selection_method=self.cluster_selection_method)
|
||||||
|
return self.result
|
||||||
|
|
||||||
|
def run_hdbscan_grid_sweep(savefile, inpath, outpath, min_cluster_sizes=[2], min_samples=[1], cluster_selection_epsilons=[0], cluster_selection_methods=['eom']):
|
||||||
|
"""Run hdbscan clustering once or more with different parameters.
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
hdbscan_clustering.py --savefile=SAVEFILE --inpath=INPATH --outpath=OUTPATH --min_cluster_sizes=<csv> --min_samples=<csv> --cluster_selection_epsilons=<csv> --cluster_selection_methods=<csv "eom"|"leaf">
|
||||||
|
|
||||||
|
Keword arguments:
|
||||||
|
savefile: path to save the metadata and diagnostics
|
||||||
|
inpath: path to feather data containing a labeled matrix of subreddit similarities.
|
||||||
|
outpath: path to output fit kmeans clusterings.
|
||||||
|
min_cluster_sizes: one or more integers indicating the minumum cluster size
|
||||||
|
min_samples: one ore more integers indicating the minimum number of samples used in the algorithm
|
||||||
|
cluster_selection_epsilon: one or more similarity thresholds for transition from dbscan to hdbscan
|
||||||
|
cluster_selection_method: "eom" or "leaf" eom gives larger clusters.
|
||||||
|
"""
|
||||||
|
obj = hdbscan_grid_sweep(inpath,
|
||||||
|
outpath,
|
||||||
|
map(int,min_cluster_sizes),
|
||||||
|
map(int,min_samples),
|
||||||
|
map(float,cluster_selection_epsilons),
|
||||||
|
cluster_selection_methods)
|
||||||
|
obj.run()
|
||||||
|
obj.save(savefile)
|
||||||
|
|
||||||
|
def KNN_distances_plot(mat,outname,k=2):
|
||||||
|
nbrs = NearestNeighbors(n_neighbors=k,algorithm='auto',metric='precomputed').fit(mat)
|
||||||
|
distances, indices = nbrs.kneighbors(mat)
|
||||||
|
d2 = distances[:,-1]
|
||||||
|
df = pd.DataFrame({'dist':d2})
|
||||||
|
df = df.sort_values("dist",ascending=False)
|
||||||
|
df['idx'] = np.arange(0,d2.shape[0]) + 1
|
||||||
|
p = pn.qplot(x='idx',y='dist',data=df,geom='line') + pn.scales.scale_y_continuous(minor_breaks = np.arange(0,50)/50,
|
||||||
|
breaks = np.arange(0,10)/10)
|
||||||
|
p.save(outname,width=16,height=10)
|
||||||
|
|
||||||
|
def make_KNN_plots():
|
||||||
|
similarities = "/gscratch/comdata/output/reddit_similarity/subreddit_comment_terms_10k.feather"
|
||||||
|
subreddits, mat = read_similarity_mat(similarities)
|
||||||
|
mat = sim_to_dist(mat)
|
||||||
|
|
||||||
|
KNN_distances_plot(mat,k=2,outname='terms_knn_dist2.png')
|
||||||
|
|
||||||
|
similarities = "/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_10k.feather"
|
||||||
|
subreddits, mat = read_similarity_mat(similarities)
|
||||||
|
mat = sim_to_dist(mat)
|
||||||
|
KNN_distances_plot(mat,k=2,outname='authors_knn_dist2.png')
|
||||||
|
|
||||||
|
similarities = "/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_10k.feather"
|
||||||
|
subreddits, mat = read_similarity_mat(similarities)
|
||||||
|
mat = sim_to_dist(mat)
|
||||||
|
KNN_distances_plot(mat,k=2,outname='authors-tf_knn_dist2.png')
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
fire.Fire(run_hdbscan_grid_sweep)
|
||||||
|
|
||||||
|
# test_select_hdbscan_clustering()
|
||||||
|
#fire.Fire(select_hdbscan_clustering)
|
||||||
101
clustering/hdbscan_clustering_lsi.py
Normal file
101
clustering/hdbscan_clustering_lsi.py
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
from hdbscan_clustering import hdbscan_job, hdbscan_grid_sweep, hdbscan_clustering_result
|
||||||
|
from lsi_base import lsi_grid_sweep, lsi_mixin, lsi_result_mixin
|
||||||
|
from grid_sweep import grid_sweep
|
||||||
|
import fire
|
||||||
|
from dataclasses import dataclass
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class hdbscan_clustering_result_lsi(hdbscan_clustering_result, lsi_result_mixin):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class hdbscan_lsi_job(hdbscan_job, lsi_mixin):
|
||||||
|
def __init__(self, infile, outpath, name, lsi_dims, *args, **kwargs):
|
||||||
|
super().__init__(
|
||||||
|
infile,
|
||||||
|
outpath,
|
||||||
|
name,
|
||||||
|
*args,
|
||||||
|
**kwargs)
|
||||||
|
super().set_lsi_dims(lsi_dims)
|
||||||
|
|
||||||
|
def get_info(self):
|
||||||
|
partial_result = super().get_info()
|
||||||
|
self.result = hdbscan_clustering_result_lsi(**partial_result.__dict__,
|
||||||
|
lsi_dimensions=self.lsi_dims)
|
||||||
|
return self.result
|
||||||
|
|
||||||
|
class hdbscan_lsi_grid_sweep(lsi_grid_sweep):
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
lsi_dims,
|
||||||
|
outpath,
|
||||||
|
min_cluster_sizes,
|
||||||
|
min_samples,
|
||||||
|
cluster_selection_epsilons,
|
||||||
|
cluster_selection_methods
|
||||||
|
):
|
||||||
|
|
||||||
|
super().__init__(hdbscan_lsi_job,
|
||||||
|
_hdbscan_lsi_grid_sweep,
|
||||||
|
inpath,
|
||||||
|
lsi_dims,
|
||||||
|
outpath,
|
||||||
|
min_cluster_sizes,
|
||||||
|
min_samples,
|
||||||
|
cluster_selection_epsilons,
|
||||||
|
cluster_selection_methods)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class _hdbscan_lsi_grid_sweep(grid_sweep):
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
outpath,
|
||||||
|
lsi_dim,
|
||||||
|
*args,
|
||||||
|
**kwargs):
|
||||||
|
print(args)
|
||||||
|
print(kwargs)
|
||||||
|
|
||||||
|
self.lsi_dim = lsi_dim
|
||||||
|
self.jobtype = hdbscan_lsi_job
|
||||||
|
super().__init__(self.jobtype, inpath, outpath, self.namer, [self.lsi_dim], *args, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
|
def namer(self, *args, **kwargs):
|
||||||
|
s = hdbscan_grid_sweep.namer(self, *args[1:], **kwargs)
|
||||||
|
s += f"_lsi-{self.lsi_dim}"
|
||||||
|
return s
|
||||||
|
|
||||||
|
def run_hdbscan_lsi_grid_sweep(savefile, inpath, outpath, min_cluster_sizes=[2], min_samples=[1], cluster_selection_epsilons=[0], cluster_selection_methods=[1],lsi_dimensions='all'):
|
||||||
|
"""Run hdbscan clustering once or more with different parameters.
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
hdbscan_clustering_lsi --savefile=SAVEFILE --inpath=INPATH --outpath=OUTPATH --min_cluster_sizes=<csv> --min_samples=<csv> --cluster_selection_epsilons=<csv> --cluster_selection_methods=[eom]> --lsi_dimensions: either "all" or one or more available lsi similarity dimensions at INPATH.
|
||||||
|
|
||||||
|
Keword arguments:
|
||||||
|
savefile: path to save the metadata and diagnostics
|
||||||
|
inpath: path to folder containing feather files with LSI similarity labeled matrices of subreddit similarities.
|
||||||
|
outpath: path to output fit clusterings.
|
||||||
|
min_cluster_sizes: one or more integers indicating the minumum cluster size
|
||||||
|
min_samples: one ore more integers indicating the minimum number of samples used in the algorithm
|
||||||
|
cluster_selection_epsilons: one or more similarity thresholds for transition from dbscan to hdbscan
|
||||||
|
cluster_selection_methods: one or more of "eom" or "leaf" eom gives larger clusters.
|
||||||
|
lsi_dimensions: either "all" or one or more available lsi similarity dimensions at INPATH.
|
||||||
|
"""
|
||||||
|
|
||||||
|
obj = hdbscan_lsi_grid_sweep(inpath,
|
||||||
|
lsi_dimensions,
|
||||||
|
outpath,
|
||||||
|
list(map(int,min_cluster_sizes)),
|
||||||
|
list(map(int,min_samples)),
|
||||||
|
list(map(float,cluster_selection_epsilons)),
|
||||||
|
cluster_selection_methods)
|
||||||
|
|
||||||
|
|
||||||
|
obj.run(10)
|
||||||
|
obj.save(savefile)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
fire.Fire(run_hdbscan_lsi_grid_sweep)
|
||||||
105
clustering/kmeans_clustering.py
Normal file
105
clustering/kmeans_clustering.py
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
from sklearn.cluster import KMeans
|
||||||
|
import fire
|
||||||
|
from pathlib import Path
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from clustering_base import clustering_result, clustering_job
|
||||||
|
from grid_sweep import grid_sweep
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class kmeans_clustering_result(clustering_result):
|
||||||
|
n_clusters:int
|
||||||
|
n_init:int
|
||||||
|
max_iter:int
|
||||||
|
|
||||||
|
class kmeans_job(clustering_job):
|
||||||
|
def __init__(self, infile, outpath, name, n_clusters, n_init=10, max_iter=100000, random_state=1968, verbose=True):
|
||||||
|
super().__init__(infile,
|
||||||
|
outpath,
|
||||||
|
name,
|
||||||
|
call=kmeans_job._kmeans_clustering,
|
||||||
|
n_clusters=n_clusters,
|
||||||
|
n_init=n_init,
|
||||||
|
max_iter=max_iter,
|
||||||
|
random_state=random_state,
|
||||||
|
verbose=verbose)
|
||||||
|
|
||||||
|
self.n_clusters=n_clusters
|
||||||
|
self.n_init=n_init
|
||||||
|
self.max_iter=max_iter
|
||||||
|
|
||||||
|
def _kmeans_clustering(mat, *args, **kwargs):
|
||||||
|
|
||||||
|
clustering = KMeans(*args,
|
||||||
|
**kwargs,
|
||||||
|
).fit(mat)
|
||||||
|
|
||||||
|
return clustering
|
||||||
|
|
||||||
|
|
||||||
|
def get_info(self):
|
||||||
|
result = super().get_info()
|
||||||
|
self.result = kmeans_clustering_result(**result.__dict__,
|
||||||
|
n_init=self.n_init,
|
||||||
|
max_iter=self.max_iter)
|
||||||
|
return self.result
|
||||||
|
|
||||||
|
|
||||||
|
class kmeans_grid_sweep(grid_sweep):
|
||||||
|
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
outpath,
|
||||||
|
*args,
|
||||||
|
**kwargs):
|
||||||
|
super().__init__(kmeans_job, inpath, outpath, self.namer, *args, **kwargs)
|
||||||
|
|
||||||
|
def namer(self,
|
||||||
|
n_clusters,
|
||||||
|
n_init,
|
||||||
|
max_iter):
|
||||||
|
return f"nclusters-{n_clusters}_nit-{n_init}_maxit-{max_iter}"
|
||||||
|
|
||||||
|
def test_select_kmeans_clustering():
|
||||||
|
inpath = "/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_10k_LSI/"
|
||||||
|
outpath = "test_kmeans";
|
||||||
|
n_clusters=[200,300,400];
|
||||||
|
n_init=[1,2,3];
|
||||||
|
max_iter=[100000]
|
||||||
|
|
||||||
|
gs = kmeans_lsi_grid_sweep(inpath, 'all', outpath, n_clusters, n_init, max_iter)
|
||||||
|
gs.run(1)
|
||||||
|
|
||||||
|
cluster_selection_epsilons=[0,0.1,0.3,0.5];
|
||||||
|
cluster_selection_methods=['eom'];
|
||||||
|
lsi_dimensions='all'
|
||||||
|
gs = hdbscan_lsi_grid_sweep(inpath, "all", outpath, min_cluster_sizes, min_samples, cluster_selection_epsilons, cluster_selection_methods)
|
||||||
|
gs.run(20)
|
||||||
|
gs.save("test_hdbscan/lsi_sweep.csv")
|
||||||
|
|
||||||
|
def run_kmeans_grid_sweep(savefile, inpath, outpath, n_clusters=[500], n_inits=[1], max_iters=[3000]):
|
||||||
|
"""Run kmeans clustering once or more with different parameters.
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
kmeans_clustering.py --savefile=SAVEFILE --inpath=INPATH --outpath=OUTPATH --n_clusters=<csv number of clusters> --n_inits=<csv> --max_iters=<csv>
|
||||||
|
|
||||||
|
Keword arguments:
|
||||||
|
savefile: path to save the metadata and diagnostics
|
||||||
|
inpath: path to feather data containing a labeled matrix of subreddit similarities.
|
||||||
|
outpath: path to output fit kmeans clusterings.
|
||||||
|
n_clusters: one or more numbers of kmeans clusters to select.
|
||||||
|
n_inits: one or more numbers of different initializations to use for each clustering.
|
||||||
|
max_iters: one or more numbers of different maximum interations.
|
||||||
|
"""
|
||||||
|
|
||||||
|
obj = kmeans_grid_sweep(inpath,
|
||||||
|
outpath,
|
||||||
|
map(int,n_clusters),
|
||||||
|
map(int,n_inits),
|
||||||
|
map(int,max_iters))
|
||||||
|
|
||||||
|
|
||||||
|
obj.run(1)
|
||||||
|
obj.save(savefile)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
fire.Fire(run_kmeans_grid_sweep)
|
||||||
93
clustering/kmeans_clustering_lsi.py
Normal file
93
clustering/kmeans_clustering_lsi.py
Normal file
@@ -0,0 +1,93 @@
|
|||||||
|
import fire
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from kmeans_clustering import kmeans_job, kmeans_clustering_result, kmeans_grid_sweep
|
||||||
|
from lsi_base import lsi_mixin, lsi_result_mixin, lsi_grid_sweep
|
||||||
|
from grid_sweep import grid_sweep
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class kmeans_clustering_result_lsi(kmeans_clustering_result, lsi_result_mixin):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class kmeans_lsi_job(kmeans_job, lsi_mixin):
|
||||||
|
def __init__(self, infile, outpath, name, lsi_dims, *args, **kwargs):
|
||||||
|
super().__init__(infile,
|
||||||
|
outpath,
|
||||||
|
name,
|
||||||
|
*args,
|
||||||
|
**kwargs)
|
||||||
|
super().set_lsi_dims(lsi_dims)
|
||||||
|
|
||||||
|
def get_info(self):
|
||||||
|
result = super().get_info()
|
||||||
|
self.result = kmeans_clustering_result_lsi(**result.__dict__,
|
||||||
|
lsi_dimensions=self.lsi_dims)
|
||||||
|
return self.result
|
||||||
|
|
||||||
|
class _kmeans_lsi_grid_sweep(grid_sweep):
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
outpath,
|
||||||
|
lsi_dim,
|
||||||
|
*args,
|
||||||
|
**kwargs):
|
||||||
|
print(args)
|
||||||
|
print(kwargs)
|
||||||
|
self.lsi_dim = lsi_dim
|
||||||
|
self.jobtype = kmeans_lsi_job
|
||||||
|
super().__init__(self.jobtype, inpath, outpath, self.namer, [self.lsi_dim], *args, **kwargs)
|
||||||
|
|
||||||
|
def namer(self, *args, **kwargs):
|
||||||
|
s = kmeans_grid_sweep.namer(self, *args[1:], **kwargs)
|
||||||
|
s += f"_lsi-{self.lsi_dim}"
|
||||||
|
return s
|
||||||
|
|
||||||
|
class kmeans_lsi_grid_sweep(lsi_grid_sweep):
|
||||||
|
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
lsi_dims,
|
||||||
|
outpath,
|
||||||
|
n_clusters,
|
||||||
|
n_inits,
|
||||||
|
max_iters
|
||||||
|
):
|
||||||
|
|
||||||
|
super().__init__(kmeans_lsi_job,
|
||||||
|
_kmeans_lsi_grid_sweep,
|
||||||
|
inpath,
|
||||||
|
lsi_dims,
|
||||||
|
outpath,
|
||||||
|
n_clusters,
|
||||||
|
n_inits,
|
||||||
|
max_iters)
|
||||||
|
|
||||||
|
def run_kmeans_lsi_grid_sweep(savefile, inpath, outpath, n_clusters=[500], n_inits=[1], max_iters=[3000], lsi_dimensions="all"):
|
||||||
|
"""Run kmeans clustering once or more with different parameters.
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
kmeans_clustering_lsi.py --savefile=SAVEFILE --inpath=INPATH --outpath=OUTPATH d--lsi_dimensions=<"all"|csv number of LSI dimensions to use> --n_clusters=<csv number of clusters> --n_inits=<csv> --max_iters=<csv>
|
||||||
|
|
||||||
|
Keword arguments:
|
||||||
|
savefile: path to save the metadata and diagnostics
|
||||||
|
inpath: path to folder containing feather files with LSI similarity labeled matrices of subreddit similarities.
|
||||||
|
outpath: path to output fit kmeans clusterings.
|
||||||
|
lsi_dimensions: either "all" or one or more available lsi similarity dimensions at INPATH.
|
||||||
|
n_clusters: one or more numbers of kmeans clusters to select.
|
||||||
|
n_inits: one or more numbers of different initializations to use for each clustering.
|
||||||
|
max_iters: one or more numbers of different maximum interations.
|
||||||
|
"""
|
||||||
|
|
||||||
|
obj = kmeans_lsi_grid_sweep(inpath,
|
||||||
|
lsi_dimensions,
|
||||||
|
outpath,
|
||||||
|
list(map(int,n_clusters)),
|
||||||
|
list(map(int,n_inits)),
|
||||||
|
list(map(int,max_iters))
|
||||||
|
)
|
||||||
|
|
||||||
|
obj.run(1)
|
||||||
|
obj.save(savefile)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
fire.Fire(run_kmeans_lsi_grid_sweep)
|
||||||
44
clustering/lsi_base.py
Normal file
44
clustering/lsi_base.py
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
from clustering_base import clustering_job, clustering_result
|
||||||
|
from grid_sweep import grid_sweep, twoway_grid_sweep
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from itertools import chain
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
class lsi_mixin():
|
||||||
|
def set_lsi_dims(self, lsi_dims):
|
||||||
|
self.lsi_dims = lsi_dims
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class lsi_result_mixin:
|
||||||
|
lsi_dimensions:int
|
||||||
|
|
||||||
|
class lsi_grid_sweep(grid_sweep):
|
||||||
|
def __init__(self, jobtype, subsweep, inpath, lsi_dimensions, outpath, *args, **kwargs):
|
||||||
|
self.jobtype = jobtype
|
||||||
|
self.subsweep = subsweep
|
||||||
|
inpath = Path(inpath)
|
||||||
|
if lsi_dimensions == 'all':
|
||||||
|
lsi_paths = list(inpath.glob("*.feather"))
|
||||||
|
else:
|
||||||
|
lsi_paths = [inpath / (str(dim) + '.feather') for dim in lsi_dimensions]
|
||||||
|
|
||||||
|
print(lsi_paths)
|
||||||
|
lsi_nums = [int(p.stem) for p in lsi_paths]
|
||||||
|
self.hasrun = False
|
||||||
|
self.subgrids = [self.subsweep(lsi_path, outpath, lsi_dim, *args, **kwargs) for lsi_dim, lsi_path in zip(lsi_nums, lsi_paths)]
|
||||||
|
self.jobs = list(chain(*map(lambda gs: gs.jobs, self.subgrids)))
|
||||||
|
|
||||||
|
class twoway_lsi_grid_sweep(twoway_grid_sweep):
|
||||||
|
def __init__(self, jobtype, subsweep, inpath, lsi_dimensions, outpath, args1, args2):
|
||||||
|
self.jobtype = jobtype
|
||||||
|
self.subsweep = subsweep
|
||||||
|
inpath = Path(inpath)
|
||||||
|
if lsi_dimensions == 'all':
|
||||||
|
lsi_paths = list(inpath.glob("*.feather"))
|
||||||
|
else:
|
||||||
|
lsi_paths = [inpath / (str(dim) + '.feather') for dim in lsi_dimensions]
|
||||||
|
|
||||||
|
lsi_nums = [int(p.stem) for p in lsi_paths]
|
||||||
|
self.hasrun = False
|
||||||
|
self.subgrids = [self.subsweep(lsi_path, outpath, lsi_dim, args1, args2) for lsi_dim, lsi_path in zip(lsi_nums, lsi_paths)]
|
||||||
|
self.jobs = list(chain(*map(lambda gs: gs.jobs, self.subgrids)))
|
||||||
33
clustering/pick_best_clustering.py
Executable file
33
clustering/pick_best_clustering.py
Executable file
@@ -0,0 +1,33 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
import fire
|
||||||
|
import pandas as pd
|
||||||
|
from pathlib import Path
|
||||||
|
import shutil
|
||||||
|
selection_data="/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/clustering/comment_authors_compex_LSI/selection_data.csv"
|
||||||
|
|
||||||
|
outpath = 'test_best.feather'
|
||||||
|
min_clusters=50; max_isolates=7500; min_cluster_size=2
|
||||||
|
|
||||||
|
# pick the best clustering according to silhouette score subject to contraints
|
||||||
|
def pick_best_clustering(selection_data, output, min_clusters, max_isolates, min_cluster_size):
|
||||||
|
df = pd.read_csv(selection_data,index_col=0)
|
||||||
|
df = df.sort_values("silhouette_score",ascending=False)
|
||||||
|
|
||||||
|
# not sure I fixed the bug underlying this fully or not.
|
||||||
|
df['n_isolates_str'] = df.n_isolates.str.strip("[]")
|
||||||
|
df['n_isolates_0'] = df['n_isolates_str'].apply(lambda l: len(l) == 0)
|
||||||
|
df.loc[df.n_isolates_0,'n_isolates'] = 0
|
||||||
|
df.loc[~df.n_isolates_0,'n_isolates'] = df.loc[~df.n_isolates_0].n_isolates_str.apply(lambda l: int(l))
|
||||||
|
|
||||||
|
best_cluster = df[(df.n_isolates <= max_isolates)&(df.n_clusters >= min_clusters)&(df.min_cluster_size==min_cluster_size)]
|
||||||
|
|
||||||
|
best_cluster = best_cluster.iloc[0]
|
||||||
|
|
||||||
|
best_lsi_dimensions = best_cluster.lsi_dimensions
|
||||||
|
print(best_cluster.to_dict())
|
||||||
|
best_path = Path(best_cluster.outpath) / (str(best_cluster['name']) + ".feather")
|
||||||
|
shutil.copy(best_path,output)
|
||||||
|
print(f"lsi dimensions:{best_lsi_dimensions}")
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
fire.Fire(pick_best_clustering)
|
||||||
@@ -1,101 +1,38 @@
|
|||||||
from sklearn.metrics import silhouette_score
|
|
||||||
from sklearn.cluster import AffinityPropagation
|
|
||||||
from functools import partial
|
|
||||||
from clustering import _affinity_clustering, read_similarity_mat
|
|
||||||
from dataclasses import dataclass
|
|
||||||
from multiprocessing import Pool, cpu_count, Array, Process
|
|
||||||
from pathlib import Path
|
|
||||||
from itertools import product, starmap
|
|
||||||
import numpy as np
|
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import fire
|
import plotnine as pn
|
||||||
import sys
|
from pathlib import Path
|
||||||
|
from clustering.fit_tsne import fit_tsne
|
||||||
|
from visualization.tsne_vis import build_visualization
|
||||||
|
|
||||||
# silhouette is the only one that doesn't need the feature matrix. So it's probably the only one that's worth trying.
|
df = pd.read_csv("/gscratch/comdata/output/reddit_clustering/subreddit_comment_authors-tf_10k_LSI/hdbscan/selection_data.csv",index_col=0)
|
||||||
|
|
||||||
@dataclass
|
# plot silhouette_score as a function of isolates
|
||||||
class clustering_result:
|
df = df.sort_values("silhouette_score")
|
||||||
outpath:Path
|
|
||||||
damping:float
|
|
||||||
max_iter:int
|
|
||||||
convergence_iter:int
|
|
||||||
preference_quantile:float
|
|
||||||
silhouette_score:float
|
|
||||||
alt_silhouette_score:float
|
|
||||||
name:str
|
|
||||||
|
|
||||||
|
df['n_isolates'] = df.n_isolates.str.split("\n0").apply(lambda rg: int(rg[1]))
|
||||||
|
p = pn.ggplot(df,pn.aes(x='n_isolates',y='silhouette_score')) + pn.geom_point()
|
||||||
|
p.save("isolates_x_score.png")
|
||||||
|
|
||||||
def sim_to_dist(mat):
|
p = pn.ggplot(df,pn.aes(y='n_clusters',x='n_isolates',color='silhouette_score')) + pn.geom_point()
|
||||||
dist = 1-mat
|
p.save("clusters_x_isolates.png")
|
||||||
dist[dist < 0] = 0
|
|
||||||
np.fill_diagonal(dist,0)
|
|
||||||
return dist
|
|
||||||
|
|
||||||
def do_clustering(damping, convergence_iter, preference_quantile, name, mat, subreddits, max_iter, outdir:Path, random_state, verbose, alt_mat, overwrite=False):
|
# the best result for hdbscan seems like this one: it has a decent number of
|
||||||
if name is None:
|
# i think I prefer the 'eom' clustering style because larger clusters are less likely to suffer from ommitted variables
|
||||||
name = f"damping-{damping}_convergenceIter-{convergence_iter}_preferenceQuantile-{preference_quantile}"
|
best_eom = df[(df.n_isolates <5000)&(df.silhouette_score>0.4)&(df.cluster_selection_method=='eom')&(df.min_cluster_size==2)].iloc[df.shape[1]]
|
||||||
print(name)
|
|
||||||
sys.stdout.flush()
|
|
||||||
outpath = outdir / (str(name) + ".feather")
|
|
||||||
print(outpath)
|
|
||||||
clustering = _affinity_clustering(mat, subreddits, outpath, damping, max_iter, convergence_iter, preference_quantile, random_state, verbose)
|
|
||||||
mat = sim_to_dist(clustering.affinity_matrix_)
|
|
||||||
|
|
||||||
score = silhouette_score(mat, clustering.labels_, metric='precomputed')
|
best_lsi = df[(df.n_isolates <5000)&(df.silhouette_score>0.4)&(df.cluster_selection_method=='leaf')&(df.min_cluster_size==2)].iloc[df.shape[1]]
|
||||||
|
|
||||||
if alt_mat is not None:
|
tsne_data = Path("./clustering/authors-tf_lsi850_tsne.feather")
|
||||||
alt_distances = sim_to_dist(alt_mat)
|
|
||||||
alt_score = silhouette_score(alt_mat, clustering.labels_, metric='precomputed')
|
|
||||||
|
|
||||||
res = clustering_result(outpath=outpath,
|
|
||||||
damping=damping,
|
|
||||||
max_iter=max_iter,
|
|
||||||
convergence_iter=convergence_iter,
|
|
||||||
preference_quantile=preference_quantile,
|
|
||||||
silhouette_score=score,
|
|
||||||
alt_silhouette_score=score,
|
|
||||||
name=str(name))
|
|
||||||
|
|
||||||
return res
|
if not tnse_data.exists():
|
||||||
|
fit_tsne("/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_10k_LSI/850.feather",
|
||||||
|
tnse_data)
|
||||||
|
|
||||||
# alt similiarities is for checking the silhouette coefficient of an alternative measure of similarity (e.g., topic similarities for user clustering).
|
build_visualization("./clustering/authors-tf_lsi850_tsne.feather",
|
||||||
|
Path(best_eom.outpath)/(best_eom['name']+'.feather'),
|
||||||
|
"./authors-tf_lsi850_best_eom.html")
|
||||||
|
|
||||||
def select_affinity_clustering(similarities, outdir, outinfo, damping=[0.9], max_iter=100000, convergence_iter=[30], preference_quantile=[0.5], random_state=1968, verbose=True, alt_similarities=None, J=None):
|
build_visualization("./clustering/authors-tf_lsi850_tsne.feather",
|
||||||
|
Path(best_leaf.outpath)/(best_leaf['name']+'.feather'),
|
||||||
|
"./authors-tf_lsi850_best_leaf.html")
|
||||||
|
|
||||||
damping = list(map(float,damping))
|
|
||||||
convergence_iter = convergence_iter = list(map(int,convergence_iter))
|
|
||||||
preference_quantile = list(map(float,preference_quantile))
|
|
||||||
|
|
||||||
if type(outdir) is str:
|
|
||||||
outdir = Path(outdir)
|
|
||||||
|
|
||||||
outdir.mkdir(parents=True,exist_ok=True)
|
|
||||||
|
|
||||||
subreddits, mat = read_similarity_mat(similarities,use_threads=True)
|
|
||||||
|
|
||||||
if alt_similarities is not None:
|
|
||||||
alt_mat = read_similarity_mat(alt_similarities,use_threads=True)
|
|
||||||
else:
|
|
||||||
alt_mat = None
|
|
||||||
|
|
||||||
if J is None:
|
|
||||||
J = cpu_count()
|
|
||||||
pool = Pool(J)
|
|
||||||
|
|
||||||
# get list of tuples: the combinations of hyperparameters
|
|
||||||
hyper_grid = product(damping, convergence_iter, preference_quantile)
|
|
||||||
hyper_grid = (t + (str(i),) for i, t in enumerate(hyper_grid))
|
|
||||||
|
|
||||||
_do_clustering = partial(do_clustering, mat=mat, subreddits=subreddits, outdir=outdir, max_iter=max_iter, random_state=random_state, verbose=verbose, alt_mat=alt_mat)
|
|
||||||
|
|
||||||
# similarities = Array('d', mat)
|
|
||||||
# call pool.starmap
|
|
||||||
print("running clustering selection")
|
|
||||||
clustering_data = pool.starmap(_do_clustering, hyper_grid)
|
|
||||||
clustering_data = pd.DataFrame(list(clustering_data))
|
|
||||||
clustering_data.to_csv(outinfo)
|
|
||||||
|
|
||||||
return clustering_data
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
x = fire.Fire(select_affinity_clustering)
|
|
||||||
|
|||||||
230
clustering/umap_hdbscan_clustering.py
Normal file
230
clustering/umap_hdbscan_clustering.py
Normal file
@@ -0,0 +1,230 @@
|
|||||||
|
from clustering_base import clustering_result, clustering_job, twoway_clustering_job
|
||||||
|
from hdbscan_clustering import hdbscan_clustering_result
|
||||||
|
import umap
|
||||||
|
from grid_sweep import twoway_grid_sweep
|
||||||
|
from dataclasses import dataclass
|
||||||
|
import hdbscan
|
||||||
|
from sklearn.neighbors import NearestNeighbors
|
||||||
|
import plotnine as pn
|
||||||
|
import numpy as np
|
||||||
|
from itertools import product, starmap, chain
|
||||||
|
import pandas as pd
|
||||||
|
from multiprocessing import cpu_count
|
||||||
|
import fire
|
||||||
|
|
||||||
|
def test_select_hdbscan_clustering():
|
||||||
|
# select_hdbscan_clustering("/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_30k_LSI",
|
||||||
|
# "test_hdbscan_author30k",
|
||||||
|
# min_cluster_sizes=[2],
|
||||||
|
# min_samples=[1,2],
|
||||||
|
# cluster_selection_epsilons=[0,0.05,0.1,0.15],
|
||||||
|
# cluster_selection_methods=['eom','leaf'],
|
||||||
|
# lsi_dimensions='all')
|
||||||
|
inpath = "/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_10k_LSI"
|
||||||
|
outpath = "test_umap_hdbscan_lsi"
|
||||||
|
min_cluster_sizes=[2,3,4]
|
||||||
|
min_samples=[1,2,3]
|
||||||
|
cluster_selection_epsilons=[0,0.1,0.3,0.5]
|
||||||
|
cluster_selection_methods=[1]
|
||||||
|
lsi_dimensions='all'
|
||||||
|
n_neighbors = [5,10,15,25,35,70,100]
|
||||||
|
learning_rate = [0.1,0.5,1,2]
|
||||||
|
min_dist = [0.5,1,1.5,2]
|
||||||
|
local_connectivity = [1,2,3,4,5]
|
||||||
|
|
||||||
|
hdbscan_params = {"min_cluster_sizes":min_cluster_sizes, "min_samples":min_samples, "cluster_selection_epsilons":cluster_selection_epsilons, "cluster_selection_methods":cluster_selection_methods}
|
||||||
|
umap_params = {"n_neighbors":n_neighbors, "learning_rate":learning_rate, "min_dist":min_dist, "local_connectivity":local_connectivity}
|
||||||
|
gs = umap_hdbscan_grid_sweep(inpath, "all", outpath, hdbscan_params,umap_params)
|
||||||
|
|
||||||
|
# gs.run(20)
|
||||||
|
# gs.save("test_hdbscan/lsi_sweep.csv")
|
||||||
|
|
||||||
|
|
||||||
|
# job1 = hdbscan_lsi_job(infile=inpath, outpath=outpath, name="test", lsi_dims=500, min_cluster_size=2, min_samples=1,cluster_selection_epsilon=0,cluster_selection_method='eom')
|
||||||
|
# job1.run()
|
||||||
|
# print(job1.get_info())
|
||||||
|
|
||||||
|
# df = pd.read_csv("test_hdbscan/selection_data.csv")
|
||||||
|
# test_select_hdbscan_clustering()
|
||||||
|
# check_clusters = pd.read_feather("test_hdbscan/500_2_2_0.1_eom.feather")
|
||||||
|
# silscores = pd.read_feather("test_hdbscan/silhouette_samples500_2_2_0.1_eom.feather")
|
||||||
|
# c = check_clusters.merge(silscores,on='subreddit')# fire.Fire(select_hdbscan_clustering)
|
||||||
|
class umap_hdbscan_grid_sweep(twoway_grid_sweep):
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
outpath,
|
||||||
|
umap_params,
|
||||||
|
hdbscan_params):
|
||||||
|
|
||||||
|
super().__init__(umap_hdbscan_job, inpath, outpath, self.namer, umap_params, hdbscan_params)
|
||||||
|
|
||||||
|
def namer(self,
|
||||||
|
min_cluster_size,
|
||||||
|
min_samples,
|
||||||
|
cluster_selection_epsilon,
|
||||||
|
cluster_selection_method,
|
||||||
|
n_components,
|
||||||
|
n_neighbors,
|
||||||
|
learning_rate,
|
||||||
|
min_dist,
|
||||||
|
local_connectivity,
|
||||||
|
densmap
|
||||||
|
):
|
||||||
|
return f"mcs-{min_cluster_size}_ms-{min_samples}_cse-{cluster_selection_epsilon}_csm-{cluster_selection_method}_nc-{n_components}_nn-{n_neighbors}_lr-{learning_rate}_md-{min_dist}_lc-{local_connectivity}_dm-{densmap}"
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class umap_hdbscan_clustering_result(hdbscan_clustering_result):
|
||||||
|
n_components:int
|
||||||
|
n_neighbors:int
|
||||||
|
learning_rate:float
|
||||||
|
min_dist:float
|
||||||
|
local_connectivity:int
|
||||||
|
densmap:bool
|
||||||
|
|
||||||
|
class umap_hdbscan_job(twoway_clustering_job):
|
||||||
|
def __init__(self, infile, outpath, name,
|
||||||
|
umap_args = {"n_components":2,"n_neighbors":15, "learning_rate":1, "min_dist":1, "local_connectivity":1,'densmap':False},
|
||||||
|
hdbscan_args = {"min_cluster_size":2, "min_samples":1, "cluster_selection_epsilon":0, "cluster_selection_method":'eom'},
|
||||||
|
*args,
|
||||||
|
**kwargs):
|
||||||
|
super().__init__(infile,
|
||||||
|
outpath,
|
||||||
|
name,
|
||||||
|
call1=umap_hdbscan_job._umap_embedding,
|
||||||
|
call2=umap_hdbscan_job._hdbscan_clustering,
|
||||||
|
args1=umap_args,
|
||||||
|
args2=hdbscan_args,
|
||||||
|
*args,
|
||||||
|
**kwargs
|
||||||
|
)
|
||||||
|
|
||||||
|
self.n_components = umap_args['n_components']
|
||||||
|
self.n_neighbors = umap_args['n_neighbors']
|
||||||
|
self.learning_rate = umap_args['learning_rate']
|
||||||
|
self.min_dist = umap_args['min_dist']
|
||||||
|
self.local_connectivity = umap_args['local_connectivity']
|
||||||
|
self.densmap = umap_args['densmap']
|
||||||
|
self.min_cluster_size = hdbscan_args['min_cluster_size']
|
||||||
|
self.min_samples = hdbscan_args['min_samples']
|
||||||
|
self.cluster_selection_epsilon = hdbscan_args['cluster_selection_epsilon']
|
||||||
|
self.cluster_selection_method = hdbscan_args['cluster_selection_method']
|
||||||
|
|
||||||
|
def after_run(self):
|
||||||
|
coords = self.step1.emedding_
|
||||||
|
self.cluster_data['x'] = coords[:,0]
|
||||||
|
self.cluster_data['y'] = coords[:,1]
|
||||||
|
super().after_run()
|
||||||
|
|
||||||
|
|
||||||
|
def _umap_embedding(mat, **umap_args):
|
||||||
|
print(f"running umap embedding. umap_args:{umap_args}")
|
||||||
|
umapmodel = umap.UMAP(metric='precomputed', **umap_args)
|
||||||
|
umapmodel = umapmodel.fit(mat)
|
||||||
|
return umapmodel
|
||||||
|
|
||||||
|
def _hdbscan_clustering(mat, umapmodel, **hdbscan_args):
|
||||||
|
print(f"running hdbascan clustering. hdbscan_args:{hdbscan_args}")
|
||||||
|
|
||||||
|
umap_coords = umapmodel.transform(mat)
|
||||||
|
|
||||||
|
clusterer = hdbscan.HDBSCAN(metric='euclidean',
|
||||||
|
core_dist_n_jobs=cpu_count(),
|
||||||
|
**hdbscan_args
|
||||||
|
)
|
||||||
|
|
||||||
|
clustering = clusterer.fit(umap_coords)
|
||||||
|
|
||||||
|
return(clustering)
|
||||||
|
|
||||||
|
def get_info(self):
|
||||||
|
result = super().get_info()
|
||||||
|
self.result = umap_hdbscan_clustering_result(**result.__dict__,
|
||||||
|
min_cluster_size=self.min_cluster_size,
|
||||||
|
min_samples=self.min_samples,
|
||||||
|
cluster_selection_epsilon=self.cluster_selection_epsilon,
|
||||||
|
cluster_selection_method=self.cluster_selection_method,
|
||||||
|
n_components = self.n_components,
|
||||||
|
n_neighbors = self.n_neighbors,
|
||||||
|
learning_rate = self.learning_rate,
|
||||||
|
min_dist = self.min_dist,
|
||||||
|
local_connectivity=self.local_connectivity,
|
||||||
|
densmap=self.densmap
|
||||||
|
)
|
||||||
|
return self.result
|
||||||
|
|
||||||
|
def run_umap_hdbscan_grid_sweep(savefile, inpath, outpath, n_neighbors = [15], n_components=[2], learning_rate=[1], min_dist=[1], local_connectivity=[1],
|
||||||
|
densmap=[False],
|
||||||
|
min_cluster_sizes=[2], min_samples=[1], cluster_selection_epsilons=[0], cluster_selection_methods=['eom']):
|
||||||
|
"""Run umap + hdbscan clustering once or more with different parameters.
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
umap_hdbscan_clustering.py --savefile=SAVEFILE --inpath=INPATH --outpath=OUTPATH --n_neighbors=<csv> --learning_rate=<csv> --min_dist=<csv> --local_connectivity=<csv> --min_cluster_sizes=<csv> --min_samples=<csv> --cluster_selection_epsilons=<csv> --cluster_selection_methods=<csv "eom"|"leaf">
|
||||||
|
|
||||||
|
Keword arguments:
|
||||||
|
savefile: path to save the metadata and diagnostics
|
||||||
|
inpath: path to feather data containing a labeled matrix of subreddit similarities.
|
||||||
|
outpath: path to output fit kmeans clusterings.
|
||||||
|
n_neighbors: umap parameter takes integers greater than 1
|
||||||
|
learning_rate: umap parameter takes positive real values
|
||||||
|
min_dist: umap parameter takes positive real values
|
||||||
|
local_connectivity: umap parameter takes positive integers
|
||||||
|
min_cluster_sizes: one or more integers indicating the minumum cluster size
|
||||||
|
min_samples: one ore more integers indicating the minimum number of samples used in the algorithm
|
||||||
|
cluster_selection_epsilon: one or more similarity thresholds for transition from dbscan to hdbscan
|
||||||
|
cluster_selection_method: "eom" or "leaf" eom gives larger clusters.
|
||||||
|
"""
|
||||||
|
|
||||||
|
umap_args = {'n_neighbors':list(map(int, n_neighbors)),
|
||||||
|
'learning_rate':list(map(float,learning_rate)),
|
||||||
|
'min_dist':list(map(float,min_dist)),
|
||||||
|
'local_connectivity':list(map(int,local_connectivity)),
|
||||||
|
'n_components':list(map(int, n_components)),
|
||||||
|
'densmap':list(map(bool,densmap))
|
||||||
|
}
|
||||||
|
|
||||||
|
hdbscan_args = {'min_cluster_size':list(map(int,min_cluster_sizes)),
|
||||||
|
'min_samples':list(map(int,min_samples)),
|
||||||
|
'cluster_selection_epsilon':list(map(float,cluster_selection_epsilons)),
|
||||||
|
'cluster_selection_method':cluster_selection_methods}
|
||||||
|
|
||||||
|
obj = umap_hdbscan_grid_sweep(inpath,
|
||||||
|
outpath,
|
||||||
|
umap_args,
|
||||||
|
hdbscan_args)
|
||||||
|
obj.run(cores=10)
|
||||||
|
obj.save(savefile)
|
||||||
|
|
||||||
|
|
||||||
|
def KNN_distances_plot(mat,outname,k=2):
|
||||||
|
nbrs = NearestNeighbors(n_neighbors=k,algorithm='auto',metric='precomputed').fit(mat)
|
||||||
|
distances, indices = nbrs.kneighbors(mat)
|
||||||
|
d2 = distances[:,-1]
|
||||||
|
df = pd.DataFrame({'dist':d2})
|
||||||
|
df = df.sort_values("dist",ascending=False)
|
||||||
|
df['idx'] = np.arange(0,d2.shape[0]) + 1
|
||||||
|
p = pn.qplot(x='idx',y='dist',data=df,geom='line') + pn.scales.scale_y_continuous(minor_breaks = np.arange(0,50)/50,
|
||||||
|
breaks = np.arange(0,10)/10)
|
||||||
|
p.save(outname,width=16,height=10)
|
||||||
|
|
||||||
|
def make_KNN_plots():
|
||||||
|
similarities = "/gscratch/comdata/output/reddit_similarity/subreddit_comment_terms_10k.feather"
|
||||||
|
subreddits, mat = read_similarity_mat(similarities)
|
||||||
|
mat = sim_to_dist(mat)
|
||||||
|
|
||||||
|
KNN_distances_plot(mat,k=2,outname='terms_knn_dist2.png')
|
||||||
|
|
||||||
|
similarities = "/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_10k.feather"
|
||||||
|
subreddits, mat = read_similarity_mat(similarities)
|
||||||
|
mat = sim_to_dist(mat)
|
||||||
|
KNN_distances_plot(mat,k=2,outname='authors_knn_dist2.png')
|
||||||
|
|
||||||
|
similarities = "/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_10k.feather"
|
||||||
|
subreddits, mat = read_similarity_mat(similarities)
|
||||||
|
mat = sim_to_dist(mat)
|
||||||
|
KNN_distances_plot(mat,k=2,outname='authors-tf_knn_dist2.png')
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
fire.Fire(run_umap_hdbscan_grid_sweep)
|
||||||
|
|
||||||
|
# test_select_hdbscan_clustering()
|
||||||
|
#fire.Fire(select_hdbscan_clustering)
|
||||||
113
clustering/umap_hdbscan_clustering_lsi.py
Normal file
113
clustering/umap_hdbscan_clustering_lsi.py
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
from umap_hdbscan_clustering import umap_hdbscan_job, umap_hdbscan_grid_sweep, umap_hdbscan_clustering_result
|
||||||
|
from lsi_base import twoway_lsi_grid_sweep, lsi_mixin, lsi_result_mixin
|
||||||
|
from grid_sweep import twoway_grid_sweep
|
||||||
|
import fire
|
||||||
|
from dataclasses import dataclass
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class umap_hdbscan_clustering_result_lsi(umap_hdbscan_clustering_result, lsi_result_mixin):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class umap_hdbscan_lsi_job(umap_hdbscan_job, lsi_mixin):
|
||||||
|
def __init__(self, infile, outpath, name, umap_args, hdbscan_args, lsi_dims):
|
||||||
|
super().__init__(
|
||||||
|
infile,
|
||||||
|
outpath,
|
||||||
|
name,
|
||||||
|
umap_args,
|
||||||
|
hdbscan_args
|
||||||
|
)
|
||||||
|
super().set_lsi_dims(lsi_dims)
|
||||||
|
|
||||||
|
def get_info(self):
|
||||||
|
partial_result = super().get_info()
|
||||||
|
self.result = umap_hdbscan_clustering_result_lsi(**partial_result.__dict__,
|
||||||
|
lsi_dimensions=self.lsi_dims)
|
||||||
|
return self.result
|
||||||
|
|
||||||
|
class umap_hdbscan_lsi_grid_sweep(twoway_lsi_grid_sweep):
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
lsi_dims,
|
||||||
|
outpath,
|
||||||
|
umap_args,
|
||||||
|
hdbscan_args
|
||||||
|
):
|
||||||
|
|
||||||
|
super().__init__(umap_hdbscan_lsi_job,
|
||||||
|
_umap_hdbscan_lsi_grid_sweep,
|
||||||
|
inpath,
|
||||||
|
lsi_dims,
|
||||||
|
outpath,
|
||||||
|
umap_args,
|
||||||
|
hdbscan_args
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class _umap_hdbscan_lsi_grid_sweep(twoway_grid_sweep):
|
||||||
|
def __init__(self,
|
||||||
|
inpath,
|
||||||
|
outpath,
|
||||||
|
lsi_dim,
|
||||||
|
umap_args,
|
||||||
|
hdbscan_args,
|
||||||
|
):
|
||||||
|
|
||||||
|
self.lsi_dim = lsi_dim
|
||||||
|
self.jobtype = umap_hdbscan_lsi_job
|
||||||
|
super().__init__(self.jobtype, inpath, outpath, self.namer, umap_args, hdbscan_args, lsi_dim)
|
||||||
|
|
||||||
|
|
||||||
|
def namer(self, *args, **kwargs):
|
||||||
|
s = umap_hdbscan_grid_sweep.namer(self, *args, **kwargs)
|
||||||
|
s += f"_lsi-{self.lsi_dim}"
|
||||||
|
return s
|
||||||
|
|
||||||
|
def run_umap_hdbscan_lsi_grid_sweep(savefile, inpath, outpath, n_neighbors = [15], n_components=[2], learning_rate=[1], min_dist=[1], local_connectivity=[1],
|
||||||
|
densmap=[False],
|
||||||
|
min_cluster_sizes=[2], min_samples=[1], cluster_selection_epsilons=[0], cluster_selection_methods=['eom'], lsi_dimensions='all'):
|
||||||
|
"""Run hdbscan clustering once or more with different parameters.
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
hdbscan_clustering_lsi --savefile=SAVEFILE --inpath=INPATH --outpath=OUTPATH --min_cluster_sizes=<csv> --min_samples=<csv> --cluster_selection_epsilons=<csv> --cluster_selection_methods=[eom]> --lsi_dimensions: either "all" or one or more available lsi similarity dimensions at INPATH.
|
||||||
|
|
||||||
|
Keword arguments:
|
||||||
|
savefile: path to save the metadata and diagnostics
|
||||||
|
inpath: path to folder containing feather files with LSI similarity labeled matrices of subreddit similarities.
|
||||||
|
outpath: path to output fit clusterings.
|
||||||
|
min_cluster_sizes: one or more integers indicating the minumum cluster size
|
||||||
|
min_samples: one ore more integers indicating the minimum number of samples used in the algorithm
|
||||||
|
cluster_selection_epsilons: one or more similarity thresholds for transition from dbscan to hdbscan
|
||||||
|
cluster_selection_methods: one or more of "eom" or "leaf" eom gives larger clusters.
|
||||||
|
lsi_dimensions: either "all" or one or more available lsi similarity dimensions at INPATH.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
umap_args = {'n_neighbors':list(map(int, n_neighbors)),
|
||||||
|
'learning_rate':list(map(float,learning_rate)),
|
||||||
|
'min_dist':list(map(float,min_dist)),
|
||||||
|
'local_connectivity':list(map(int,local_connectivity)),
|
||||||
|
'n_components':list(map(int, n_components)),
|
||||||
|
'densmap':list(map(bool,densmap))
|
||||||
|
}
|
||||||
|
|
||||||
|
hdbscan_args = {'min_cluster_size':list(map(int,min_cluster_sizes)),
|
||||||
|
'min_samples':list(map(int,min_samples)),
|
||||||
|
'cluster_selection_epsilon':list(map(float,cluster_selection_epsilons)),
|
||||||
|
'cluster_selection_method':cluster_selection_methods}
|
||||||
|
|
||||||
|
obj = umap_hdbscan_lsi_grid_sweep(inpath,
|
||||||
|
lsi_dimensions,
|
||||||
|
outpath,
|
||||||
|
umap_args,
|
||||||
|
hdbscan_args
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
obj.run(10)
|
||||||
|
obj.save(savefile)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
fire.Fire(run_umap_hdbscan_lsi_grid_sweep)
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
## parallel_sql_job.sh
|
|
||||||
#SBATCH --job-name=tf_subreddit_comments
|
|
||||||
## Allocation Definition
|
|
||||||
#SBATCH --account=comdata-ckpt
|
|
||||||
#SBATCH --partition=ckpt
|
|
||||||
## Resources
|
|
||||||
## Nodes. This should always be 1 for parallel-sql.
|
|
||||||
#SBATCH --nodes=1
|
|
||||||
## Walltime (12 hours)
|
|
||||||
#SBATCH --time=12:00:00
|
|
||||||
## Memory per node
|
|
||||||
#SBATCH --mem=32G
|
|
||||||
#SBATCH --cpus-per-task=4
|
|
||||||
#SBATCH --ntasks=1
|
|
||||||
#SBATCH -D /gscratch/comdata/users/nathante/cdsc-reddit
|
|
||||||
source ./bin/activate
|
|
||||||
module load parallel_sql
|
|
||||||
echo $(which perl)
|
|
||||||
conda list pyarrow
|
|
||||||
which python3
|
|
||||||
#Put here commands to load other modules (e.g. matlab etc.)
|
|
||||||
#Below command means that parallel_sql will get tasks from the database
|
|
||||||
#and run them on the node (in parallel). So a 16 core node will have
|
|
||||||
#16 tasks running at one time.
|
|
||||||
parallel-sql --sql -a parallel --exit-on-term --jobs 4
|
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
## needs to be run by hand since i don't have a nice way of waiting on a parallel-sql job to complete
|
## needs to be run by hand since i don't have a nice way of waiting on a parallel-sql job to complete
|
||||||
|
|
||||||
#!/usr/bin/env bash
|
|
||||||
echo "#!/usr/bin/bash" > job_script.sh
|
echo "#!/usr/bin/bash" > job_script.sh
|
||||||
#echo "source $(pwd)/../bin/activate" >> job_script.sh
|
#echo "source $(pwd)/../bin/activate" >> job_script.sh
|
||||||
echo "python3 $(pwd)/comments_2_parquet_part1.py" >> job_script.sh
|
echo "python3 $(pwd)/comments_2_parquet_part1.py" >> job_script.sh
|
||||||
|
|
||||||
srun -p comdata -A comdata --nodes=1 --mem=120G --time=48:00:00 --pty job_script.sh
|
srun -p compute-bigmem -A comdata --nodes=1 --mem-per-cpu=9g -c 40 --time=120:00:00 --pty job_script.sh
|
||||||
|
|
||||||
start_spark_and_run.sh 1 $(pwd)/comments_2_parquet_part2.py
|
start_spark_and_run.sh 1 $(pwd)/comments_2_parquet_part2.py
|
||||||
|
|||||||
@@ -1,12 +1,15 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
import os
|
||||||
import json
|
import json
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from multiprocessing import Pool
|
from multiprocessing import Pool
|
||||||
from itertools import islice
|
from itertools import islice
|
||||||
from helper import find_dumps, open_fileset
|
from helper import open_input_file, find_dumps
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import pyarrow as pa
|
import pyarrow as pa
|
||||||
import pyarrow.parquet as pq
|
import pyarrow.parquet as pq
|
||||||
|
from pathlib import Path
|
||||||
|
import fire
|
||||||
|
|
||||||
def parse_comment(comment, names= None):
|
def parse_comment(comment, names= None):
|
||||||
if names is None:
|
if names is None:
|
||||||
@@ -46,70 +49,63 @@ def parse_comment(comment, names= None):
|
|||||||
|
|
||||||
# conf = sc._conf.setAll([('spark.executor.memory', '20g'), ('spark.app.name', 'extract_reddit_timeline'), ('spark.executor.cores', '26'), ('spark.cores.max', '26'), ('spark.driver.memory','84g'),('spark.driver.maxResultSize','0'),('spark.local.dir','/gscratch/comdata/spark_tmp')])
|
# conf = sc._conf.setAll([('spark.executor.memory', '20g'), ('spark.app.name', 'extract_reddit_timeline'), ('spark.executor.cores', '26'), ('spark.cores.max', '26'), ('spark.driver.memory','84g'),('spark.driver.maxResultSize','0'),('spark.local.dir','/gscratch/comdata/spark_tmp')])
|
||||||
|
|
||||||
dumpdir = "/gscratch/comdata/raw_data/reddit_dumps/comments/"
|
def parse_dump(partition):
|
||||||
|
|
||||||
files = list(find_dumps(dumpdir, base_pattern="RC_20*"))
|
dumpdir = f"/gscratch/comdata/raw_data/reddit_dumps/comments/{partition}"
|
||||||
|
|
||||||
pool = Pool(28)
|
stream = open_input_file(dumpdir)
|
||||||
|
rows = map(parse_comment, stream)
|
||||||
|
|
||||||
stream = open_fileset(files)
|
schema = pa.schema([
|
||||||
|
pa.field('id', pa.string(), nullable=True),
|
||||||
|
pa.field('subreddit', pa.string(), nullable=True),
|
||||||
|
pa.field('link_id', pa.string(), nullable=True),
|
||||||
|
pa.field('parent_id', pa.string(), nullable=True),
|
||||||
|
pa.field('created_utc', pa.timestamp('ms'), nullable=True),
|
||||||
|
pa.field('author', pa.string(), nullable=True),
|
||||||
|
pa.field('ups', pa.int64(), nullable=True),
|
||||||
|
pa.field('downs', pa.int64(), nullable=True),
|
||||||
|
pa.field('score', pa.int64(), nullable=True),
|
||||||
|
pa.field('edited', pa.bool_(), nullable=True),
|
||||||
|
pa.field('time_edited', pa.timestamp('ms'), nullable=True),
|
||||||
|
pa.field('subreddit_type', pa.string(), nullable=True),
|
||||||
|
pa.field('subreddit_id', pa.string(), nullable=True),
|
||||||
|
pa.field('stickied', pa.bool_(), nullable=True),
|
||||||
|
pa.field('is_submitter', pa.bool_(), nullable=True),
|
||||||
|
pa.field('body', pa.string(), nullable=True),
|
||||||
|
pa.field('error', pa.string(), nullable=True),
|
||||||
|
])
|
||||||
|
|
||||||
N = int(1e4)
|
p = Path("/gscratch/comdata/output/temp/reddit_comments.parquet")
|
||||||
|
p.mkdir(exist_ok=True,parents=True)
|
||||||
|
|
||||||
rows = pool.imap_unordered(parse_comment, stream, chunksize=int(N/28))
|
N=10000
|
||||||
|
with pq.ParquetWriter(f"/gscratch/comdata/output/temp/reddit_comments.parquet/{partition}.parquet",
|
||||||
|
schema=schema,
|
||||||
|
compression='snappy',
|
||||||
|
flavor='spark') as writer:
|
||||||
|
|
||||||
schema = pa.schema([
|
while True:
|
||||||
pa.field('id', pa.string(), nullable=True),
|
chunk = islice(rows,N)
|
||||||
pa.field('subreddit', pa.string(), nullable=True),
|
pddf = pd.DataFrame(chunk, columns=schema.names)
|
||||||
pa.field('link_id', pa.string(), nullable=True),
|
table = pa.Table.from_pandas(pddf,schema=schema)
|
||||||
pa.field('parent_id', pa.string(), nullable=True),
|
if table.shape[0] == 0:
|
||||||
pa.field('created_utc', pa.timestamp('ms'), nullable=True),
|
break
|
||||||
pa.field('author', pa.string(), nullable=True),
|
writer.write_table(table)
|
||||||
pa.field('ups', pa.int64(), nullable=True),
|
|
||||||
pa.field('downs', pa.int64(), nullable=True),
|
|
||||||
pa.field('score', pa.int64(), nullable=True),
|
|
||||||
pa.field('edited', pa.bool_(), nullable=True),
|
|
||||||
pa.field('time_edited', pa.timestamp('ms'), nullable=True),
|
|
||||||
pa.field('subreddit_type', pa.string(), nullable=True),
|
|
||||||
pa.field('subreddit_id', pa.string(), nullable=True),
|
|
||||||
pa.field('stickied', pa.bool_(), nullable=True),
|
|
||||||
pa.field('is_submitter', pa.bool_(), nullable=True),
|
|
||||||
pa.field('body', pa.string(), nullable=True),
|
|
||||||
pa.field('error', pa.string(), nullable=True),
|
|
||||||
])
|
|
||||||
|
|
||||||
from pathlib import Path
|
writer.close()
|
||||||
p = Path("/gscratch/comdata/output/reddit_comments.parquet_temp2")
|
|
||||||
|
|
||||||
if not p.is_dir():
|
|
||||||
if p.exists():
|
|
||||||
p.unlink()
|
|
||||||
p.mkdir()
|
|
||||||
|
|
||||||
else:
|
|
||||||
list(map(Path.unlink,p.glob('*')))
|
|
||||||
|
|
||||||
part_size = int(1e7)
|
|
||||||
part = 1
|
|
||||||
n_output = 0
|
|
||||||
writer = pq.ParquetWriter(f"/gscratch/comdata/output/reddit_comments.parquet_temp2/part_{part}.parquet",schema=schema,compression='snappy',flavor='spark')
|
|
||||||
|
|
||||||
while True:
|
|
||||||
if n_output > part_size:
|
|
||||||
if part > 1:
|
|
||||||
writer.close()
|
|
||||||
|
|
||||||
part = part + 1
|
|
||||||
n_output = 0
|
|
||||||
|
|
||||||
writer = pq.ParquetWriter(f"/gscratch/comdata/output/reddit_comments.parquet_temp2/part_{part}.parquet",schema=schema,compression='snappy',flavor='spark')
|
|
||||||
|
|
||||||
n_output += N
|
|
||||||
chunk = islice(rows,N)
|
|
||||||
pddf = pd.DataFrame(chunk, columns=schema.names)
|
|
||||||
table = pa.Table.from_pandas(pddf,schema=schema)
|
|
||||||
if table.shape[0] == 0:
|
|
||||||
break
|
|
||||||
writer.write_table(table)
|
|
||||||
|
|
||||||
|
|
||||||
|
def gen_task_list(dumpdir="/gscratch/comdata/raw_data/reddit_dumps/comments", overwrite=True):
|
||||||
|
files = list(find_dumps(dumpdir,base_pattern="RC_20*.*"))
|
||||||
|
with open("comments_task_list.sh",'w') as of:
|
||||||
|
for fpath in files:
|
||||||
|
partition = os.path.split(fpath)[1]
|
||||||
|
if (not Path(f"/gscratch/comdata/output/temp/reddit_comments.parquet/{partition}.parquet").exists()) or (overwrite is True):
|
||||||
|
of.write(f'python3 comments_2_parquet_part1.py parse_dump {partition}\n')
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
fire.Fire({'parse_dump':parse_dump,
|
||||||
|
'gen_task_list':gen_task_list})
|
||||||
|
|
||||||
|
|||||||
@@ -2,12 +2,19 @@
|
|||||||
|
|
||||||
# spark script to make sorted, and partitioned parquet files
|
# spark script to make sorted, and partitioned parquet files
|
||||||
|
|
||||||
|
import pyspark
|
||||||
from pyspark.sql import functions as f
|
from pyspark.sql import functions as f
|
||||||
from pyspark.sql import SparkSession
|
from pyspark.sql import SparkSession
|
||||||
|
|
||||||
spark = SparkSession.builder.getOrCreate()
|
spark = SparkSession.builder.getOrCreate()
|
||||||
|
|
||||||
df = spark.read.parquet("/gscratch/comdata/output/reddit_comments.parquet_temp2",compression='snappy')
|
conf = pyspark.SparkConf().setAppName("Reddit submissions to parquet")
|
||||||
|
conf = conf.set("spark.sql.shuffle.partitions",2000)
|
||||||
|
conf = conf.set('spark.sql.crossJoin.enabled',"true")
|
||||||
|
conf = conf.set('spark.debug.maxToStringFields',200)
|
||||||
|
sc = spark.sparkContext
|
||||||
|
|
||||||
|
df = spark.read.parquet("/gscratch/comdata/output/temp/reddit_comments.parquet",compression='snappy')
|
||||||
|
|
||||||
df = df.withColumn("subreddit_2", f.lower(f.col('subreddit')))
|
df = df.withColumn("subreddit_2", f.lower(f.col('subreddit')))
|
||||||
df = df.drop('subreddit')
|
df = df.drop('subreddit')
|
||||||
@@ -21,9 +28,9 @@ df = df.withColumn("Day",f.dayofmonth(f.col("CreatedAt")))
|
|||||||
df = df.repartition('subreddit')
|
df = df.repartition('subreddit')
|
||||||
df2 = df.sort(["subreddit","CreatedAt","link_id","parent_id","Year","Month","Day"],ascending=True)
|
df2 = df.sort(["subreddit","CreatedAt","link_id","parent_id","Year","Month","Day"],ascending=True)
|
||||||
df2 = df2.sortWithinPartitions(["subreddit","CreatedAt","link_id","parent_id","Year","Month","Day"],ascending=True)
|
df2 = df2.sortWithinPartitions(["subreddit","CreatedAt","link_id","parent_id","Year","Month","Day"],ascending=True)
|
||||||
df2.write.parquet("/gscratch/comdata/users/nathante/reddit_comments_by_subreddit.parquet_new", mode='overwrite', compression='snappy')
|
df2.write.parquet("/gscratch/scrubbed/comdata/output/reddit_comments_by_subreddit.parquet", mode='overwrite', compression='snappy')
|
||||||
|
|
||||||
df = df.repartition('author')
|
df = df.repartition('author')
|
||||||
df3 = df.sort(["author","CreatedAt","subreddit","link_id","parent_id","Year","Month","Day"],ascending=True)
|
df3 = df.sort(["author","CreatedAt","subreddit","link_id","parent_id","Year","Month","Day"],ascending=True)
|
||||||
df3 = df3.sortWithinPartitions(["author","CreatedAt","subreddit","link_id","parent_id","Year","Month","Day"],ascending=True)
|
df3 = df3.sortWithinPartitions(["author","CreatedAt","subreddit","link_id","parent_id","Year","Month","Day"],ascending=True)
|
||||||
df3.write.parquet("/gscratch/comdata/users/nathante/reddit_comments_by_author.parquet_new", mode='overwrite',compression='snappy')
|
df3.write.parquet("/gscratch/scrubbed/comdata/output/reddit_comments_by_author.parquet", mode='overwrite',compression='snappy')
|
||||||
|
|||||||
@@ -24,8 +24,7 @@ def open_fileset(files):
|
|||||||
for fh in files:
|
for fh in files:
|
||||||
print(fh)
|
print(fh)
|
||||||
lines = open_input_file(fh)
|
lines = open_input_file(fh)
|
||||||
for line in lines:
|
yield from lines
|
||||||
yield line
|
|
||||||
|
|
||||||
def open_input_file(input_filename):
|
def open_input_file(input_filename):
|
||||||
if re.match(r'.*\.7z$', input_filename):
|
if re.match(r'.*\.7z$', input_filename):
|
||||||
@@ -39,7 +38,7 @@ def open_input_file(input_filename):
|
|||||||
elif re.match(r'.*\.xz', input_filename):
|
elif re.match(r'.*\.xz', input_filename):
|
||||||
cmd = ["xzcat",'-dk', '-T 20',input_filename]
|
cmd = ["xzcat",'-dk', '-T 20',input_filename]
|
||||||
elif re.match(r'.*\.zst',input_filename):
|
elif re.match(r'.*\.zst',input_filename):
|
||||||
cmd = ['zstd','-dck', input_filename]
|
cmd = ['/kloneusr/bin/zstd','-dck', input_filename, '--memory=2048MB --stdout']
|
||||||
elif re.match(r'.*\.gz',input_filename):
|
elif re.match(r'.*\.gz',input_filename):
|
||||||
cmd = ['gzip','-dc', input_filename]
|
cmd = ['gzip','-dc', input_filename]
|
||||||
try:
|
try:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/bash
|
#!/usr/bin/bash
|
||||||
start_spark_cluster.sh
|
start_spark_cluster.sh
|
||||||
spark-submit --master spark://$(hostname):18899 weekly_cosine_similarities.py term --outfile=/gscratch/comdata/users/nathante/subreddit_term_similarity_weekly_5000.parquet --topN=5000
|
singularity exec /gscratch/comdata/users/nathante/containers/nathante.sif spark-submit --master spark://$(hostname):7077 comments_2_parquet_part2.py
|
||||||
stop-all.sh
|
singularity exec /gscratch/comdata/users/nathante/containers/nathante.sif stop-all.sh
|
||||||
|
|||||||
4
datasets/submissions_2_parquet.sh
Normal file → Executable file
4
datasets/submissions_2_parquet.sh
Normal file → Executable file
@@ -1,8 +1,8 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
## this should be run manually since we don't have a nice way to wait on parallel_sql jobs
|
## this should be run manually since we don't have a nice way to wait on parallel_sql jobs
|
||||||
|
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
./parse_submissions.sh
|
srun -p compute-bigmem -A comdata --nodes=1 --mem-per-cpu=9g -c 40 --time=120:00:00 python3 $(pwd)/submissions_2_parquet_part1.py gen_task_list
|
||||||
|
|
||||||
start_spark_and_run.sh 1 $(pwd)/submissions_2_parquet_part2.py
|
start_spark_and_run.sh 1 $(pwd)/submissions_2_parquet_part2.py
|
||||||
|
|
||||||
|
|||||||
@@ -3,26 +3,23 @@
|
|||||||
# two stages:
|
# two stages:
|
||||||
# 1. from gz to arrow parquet (this script)
|
# 1. from gz to arrow parquet (this script)
|
||||||
# 2. from arrow parquet to spark parquet (submissions_2_parquet_part2.py)
|
# 2. from arrow parquet to spark parquet (submissions_2_parquet_part2.py)
|
||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from multiprocessing import Pool
|
from pathlib import Path
|
||||||
from itertools import islice
|
from itertools import islice
|
||||||
from helper import find_dumps, open_fileset
|
from helper import find_dumps, open_fileset
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import pyarrow as pa
|
import pyarrow as pa
|
||||||
import pyarrow.parquet as pq
|
import pyarrow.parquet as pq
|
||||||
import simdjson
|
|
||||||
import fire
|
import fire
|
||||||
import os
|
import os
|
||||||
|
import json
|
||||||
parser = simdjson.Parser()
|
|
||||||
|
|
||||||
def parse_submission(post, names = None):
|
def parse_submission(post, names = None):
|
||||||
if names is None:
|
if names is None:
|
||||||
names = ['id','author','subreddit','title','created_utc','permalink','url','domain','score','ups','downs','over_18','has_media','selftext','retrieved_on','num_comments','gilded','edited','time_edited','subreddit_type','subreddit_id','subreddit_subscribers','name','is_self','stickied','quarantine','error']
|
names = ['id','author','subreddit','title','created_utc','permalink','url','domain','score','ups','downs','over_18','has_media','selftext','retrieved_on','num_comments','gilded','edited','time_edited','subreddit_type','subreddit_id','subreddit_subscribers','name','is_self','stickied','quarantine','error']
|
||||||
|
|
||||||
try:
|
try:
|
||||||
post = parser.parse(post)
|
post = json.loads(post)
|
||||||
except (ValueError) as e:
|
except (ValueError) as e:
|
||||||
# print(e)
|
# print(e)
|
||||||
# print(post)
|
# print(post)
|
||||||
@@ -92,8 +89,7 @@ def parse_dump(partition):
|
|||||||
pa.field('quarantine',pa.bool_(),nullable=True),
|
pa.field('quarantine',pa.bool_(),nullable=True),
|
||||||
pa.field('error',pa.string(),nullable=True)])
|
pa.field('error',pa.string(),nullable=True)])
|
||||||
|
|
||||||
if not os.path.exists("/gscratch/comdata/output/temp/reddit_submissions.parquet/"):
|
Path("/gscratch/comdata/output/temp/reddit_submissions.parquet/").mkdir(exist_ok=True,parents=True)
|
||||||
os.mkdir("/gscratch/comdata/output/temp/reddit_submissions.parquet/")
|
|
||||||
|
|
||||||
with pq.ParquetWriter(f"/gscratch/comdata/output/temp/reddit_submissions.parquet/{partition}",schema=schema,compression='snappy',flavor='spark') as writer:
|
with pq.ParquetWriter(f"/gscratch/comdata/output/temp/reddit_submissions.parquet/{partition}",schema=schema,compression='snappy',flavor='spark') as writer:
|
||||||
while True:
|
while True:
|
||||||
@@ -108,7 +104,7 @@ def parse_dump(partition):
|
|||||||
|
|
||||||
def gen_task_list(dumpdir="/gscratch/comdata/raw_data/reddit_dumps/submissions"):
|
def gen_task_list(dumpdir="/gscratch/comdata/raw_data/reddit_dumps/submissions"):
|
||||||
files = list(find_dumps(dumpdir,base_pattern="RS_20*.*"))
|
files = list(find_dumps(dumpdir,base_pattern="RS_20*.*"))
|
||||||
with open("parse_submissions_task_list",'w') as of:
|
with open("submissions_task_list.sh",'w') as of:
|
||||||
for fpath in files:
|
for fpath in files:
|
||||||
partition = os.path.split(fpath)[1]
|
partition = os.path.split(fpath)[1]
|
||||||
of.write(f'python3 submissions_2_parquet_part1.py parse_dump {partition}\n')
|
of.write(f'python3 submissions_2_parquet_part1.py parse_dump {partition}\n')
|
||||||
|
|||||||
@@ -8,3 +8,9 @@ all: /gscratch/comdata/output/reddit_density/comment_terms_10000.feather /gscrat
|
|||||||
|
|
||||||
/gscratch/comdata/output/reddit_density/subreddit_author_tf_similarities_10000.feather: overlap_density.py /gscratch/comdata/output/reddit_similarity/subreddit_author_tf_similarities_10000.parquet
|
/gscratch/comdata/output/reddit_density/subreddit_author_tf_similarities_10000.feather: overlap_density.py /gscratch/comdata/output/reddit_similarity/subreddit_author_tf_similarities_10000.parquet
|
||||||
start_spark_and_run.sh 1 overlap_density.py authors --inpath="/gscratch/comdata/output/reddit_similarity/subreddit_author_tf_similarities_10000.parquet" --outpath="/gscratch/comdata/output/reddit_density/subreddit_author_tf_similarities_10000.feather" --agg=pd.DataFrame.sum
|
start_spark_and_run.sh 1 overlap_density.py authors --inpath="/gscratch/comdata/output/reddit_similarity/subreddit_author_tf_similarities_10000.parquet" --outpath="/gscratch/comdata/output/reddit_density/subreddit_author_tf_similarities_10000.feather" --agg=pd.DataFrame.sum
|
||||||
|
|
||||||
|
/gscratch/comdata/output/reddit_density/subreddit_author_tf_similarities_10K_LSI/850.feather: overlap_density.py /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_10k_LSI/850.feather
|
||||||
|
start_spark_and_run.sh 1 overlap_density.py authors --inpath="/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_10k_LSI/850.feather" --outpath="/gscratch/comdata/output/reddit_density/subreddit_author_tf_similarities_10K_LSI/850.feather" --agg=pd.DataFrame.sum
|
||||||
|
|
||||||
|
/gscratch/comdata/output/reddit_density/subreddit_author_tf_similarities_10K_LSI/600.feather: overlap_density.py /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_10k_LSI/600.feather
|
||||||
|
start_spark_and_run.sh 1 overlap_density.py authors --inpath="/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_10k_LSI/600.feather" --outpath="/gscratch/comdata/output/reddit_density/subreddit_author_tf_similarities_10K_LSI/600.feather" --agg=pd.DataFrame.sum
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/bash
|
#!/usr/bin/bash
|
||||||
start_spark_cluster.sh
|
start_spark_cluster.sh
|
||||||
spark-submit --master spark://$(hostname):18899 overlap_density.py authors --inpath=/gscratch/comdata/output/reddit_similarity/comment_authors_10000.feather --outpath=/gscratch/comdata/output/reddit_density/comment_authors_10000.feather --agg=pd.DataFrame.sum
|
singularity exec /gscratch/comdata/users/nathante/cdsc_base.sif spark-submit --master spark://$(hostname).hyak.local:7077 overlap_density.py authors --inpath=/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors-tf_10k_LSI/600.feather --outpath=/gscratch/comdata/output/reddit_density/subreddit_author_tf_similarities_10K_LSI/600.feather --agg=pd.DataFrame.sum
|
||||||
stop-all.sh
|
singularity exec /gscratch/comdata/users/nathante/cdsc_base.sif stop-all.sh
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
import pandas as pd
|
import pandas as pd
|
||||||
from pandas.core.groupby import DataFrameGroupBy as GroupBy
|
from pandas.core.groupby import DataFrameGroupBy as GroupBy
|
||||||
|
from pathlib import Path
|
||||||
import fire
|
import fire
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import sys
|
import sys
|
||||||
sys.path.append("..")
|
# sys.path.append("..")
|
||||||
sys.path.append("../similarities")
|
# sys.path.append("../similarities")
|
||||||
from similarities.similarities_helper import reindex_tfidf, reindex_tfidf_time_interval
|
# from similarities.similarities_helper import pull_tfidf
|
||||||
|
|
||||||
# this is the mean of the ratio of the overlap to the focal size.
|
# this is the mean of the ratio of the overlap to the focal size.
|
||||||
# mean shared membership per focal community member
|
# mean shared membership per focal community member
|
||||||
@@ -13,10 +14,12 @@ from similarities.similarities_helper import reindex_tfidf, reindex_tfidf_time_i
|
|||||||
|
|
||||||
def overlap_density(inpath, outpath, agg = pd.DataFrame.sum):
|
def overlap_density(inpath, outpath, agg = pd.DataFrame.sum):
|
||||||
df = pd.read_feather(inpath)
|
df = pd.read_feather(inpath)
|
||||||
df = df.drop('subreddit',1)
|
df = df.drop('_subreddit',1)
|
||||||
np.fill_diagonal(df.values,0)
|
np.fill_diagonal(df.values,0)
|
||||||
df = agg(df, 0).reset_index()
|
df = agg(df, 0).reset_index()
|
||||||
df = df.rename({0:'overlap_density'},axis='columns')
|
df = df.rename({0:'overlap_density'},axis='columns')
|
||||||
|
outpath = Path(outpath)
|
||||||
|
outpath.parent.mkdir(parents=True, exist_ok = True)
|
||||||
df.to_feather(outpath)
|
df.to_feather(outpath)
|
||||||
return df
|
return df
|
||||||
|
|
||||||
@@ -25,6 +28,8 @@ def overlap_density_weekly(inpath, outpath, agg = GroupBy.sum):
|
|||||||
# exclude the diagonal
|
# exclude the diagonal
|
||||||
df = df.loc[df.subreddit != df.variable]
|
df = df.loc[df.subreddit != df.variable]
|
||||||
res = agg(df.groupby(['subreddit','week'])).reset_index()
|
res = agg(df.groupby(['subreddit','week'])).reset_index()
|
||||||
|
outpath = Path(outpath)
|
||||||
|
outpath.parent.mkdir(parents=True, exist_ok = True)
|
||||||
res.to_feather(outpath)
|
res.to_feather(outpath)
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
|||||||
@@ -6,9 +6,9 @@ from os import path
|
|||||||
import hashlib
|
import hashlib
|
||||||
|
|
||||||
shasums1 = requests.get("https://files.pushshift.io/reddit/comments/sha256sum.txt").text
|
shasums1 = requests.get("https://files.pushshift.io/reddit/comments/sha256sum.txt").text
|
||||||
shasums2 = requests.get("https://files.pushshift.io/reddit/comments/daily/sha256sum.txt").text
|
#shasums2 = requests.get("https://files.pushshift.io/reddit/comments/daily/sha256sum.txt").text
|
||||||
|
|
||||||
shasums = shasums1 + shasums2
|
shasums = shasums1
|
||||||
dumpdir = "/gscratch/comdata/raw_data/reddit_dumps/comments"
|
dumpdir = "/gscratch/comdata/raw_data/reddit_dumps/comments"
|
||||||
|
|
||||||
for l in shasums.strip().split('\n'):
|
for l in shasums.strip().split('\n'):
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
user_agent='nathante teblunthuis <nathante@uw.edu>'
|
user_agent='"nathante teblunthuis <nathante@uw.edu>"'
|
||||||
output_dir='/gscratch/comdata/raw_data/reddit_dumps/comments'
|
output_dir='/gscratch/comdata/raw_data/reddit_dumps/comments'
|
||||||
base_url='https://files.pushshift.io/reddit/comments/'
|
base_url='https://files.pushshift.io/reddit/comments/'
|
||||||
|
|
||||||
wget -r --no-parent -A 'RC_201*.bz2' -U $user_agent -P $output_dir -nd -nc $base_url
|
wget -r --no-parent -A 'RC_20*.bz2' -U $user_agent -P $output_dir -nd -nc $base_url
|
||||||
wget -r --no-parent -A 'RC_201*.xz' -U $user_agent -P $output_dir -nd -nc $base_url
|
wget -r --no-parent -A 'RC_20*.xz' -U $user_agent -P $output_dir -nd -nc $base_url
|
||||||
wget -r --no-parent -A 'RC_201*.zst' -U $user_agent -P $output_dir -nd -nc $base_url
|
wget -r --no-parent -A 'RC_20*.zst' -U $user_agent -P $output_dir -nd -nc $base_url
|
||||||
|
|
||||||
|
|
||||||
./check_comments_shas.py
|
./check_comments_shas.py
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
user_agent='nathante teblunthuis <nathante@uw.edu>'
|
user_agent='"nathante teblunthuis <nathante@uw.edu>"'
|
||||||
output_dir='/gscratch/comdata/raw_data/reddit_dumps/submissions'
|
output_dir='/gscratch/comdata/raw_data/reddit_dumps/submissions'
|
||||||
base_url='https://files.pushshift.io/reddit/submissions/'
|
base_url='https://files.pushshift.io/reddit/submissions/'
|
||||||
|
|
||||||
wget -r --no-parent -A 'RS_20*.bz2' -U $user_agent -P $output_dir -nd -nc $base_url
|
wget -r --no-parent -A 'RS_20*.bz2' --user-agent=$user_agent -P $output_dir -nd -nc $base_url
|
||||||
wget -r --no-parent -A 'RS_20*.xz' -U $user_agent -P $output_dir -nd -nc $base_url
|
wget -r --no-parent -A 'RS_20*.xz' --user-agent=$user_agent -P $output_dir -nd -nc $base_url
|
||||||
wget -r --no-parent -A 'RS_20*.zst' -U $user_agent -P $output_dir -nd -nc $base_url
|
wget -r --no-parent -A 'RS_20*.zst' --user-agent=$user_agent -P $output_dir -nd -nc $base_url
|
||||||
wget -r --no-parent -A 'RS_20*.bz2' -U $user_agent -P $output_dir -nd -nc $base_url/old_v1_data/
|
wget -r --no-parent -A 'RS_20*.bz2' --user-agent=$user_agent -P $output_dir -nd -nc $base_url/old_v1_data/
|
||||||
wget -r --no-parent -A 'RS_20*.xz' -U $user_agent -P $output_dir -nd -nc $base_url/old_v1_data/
|
wget -r --no-parent -A 'RS_20*.xz' --user-agent=$user_agent -P $output_dir -nd -nc $base_url/old_v1_data/
|
||||||
wget -r --no-parent -A 'RS_20*.zst' -U $user_agent -P $output_dir -nd -nc $base_url/old_v1_data/
|
wget -r --no-parent -A 'RS_20*.zst' --user-agent=$user_agent -P $output_dir -nd -nc $base_url/old_v1_data/
|
||||||
|
|
||||||
./check_submission_shas.py
|
./check_submission_shas.py
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
module load parallel_sql
|
|
||||||
source ./bin/activate
|
source ./bin/activate
|
||||||
python3 tf_comments.py gen_task_list
|
python3 tf_comments.py gen_task_list
|
||||||
psu --del --Y
|
|
||||||
cat tf_task_list | psu --load
|
|
||||||
|
|
||||||
for job in $(seq 1 50); do sbatch checkpoint_parallelsql.sbatch; done;
|
for job in $(seq 1 50); do sbatch checkpoint_parallelsql.sbatch; done;
|
||||||
|
|||||||
@@ -2,12 +2,17 @@
|
|||||||
|
|
||||||
from pyspark.sql import functions as f
|
from pyspark.sql import functions as f
|
||||||
from pyspark.sql import SparkSession
|
from pyspark.sql import SparkSession
|
||||||
|
import fire
|
||||||
|
|
||||||
spark = SparkSession.builder.getOrCreate()
|
def main(inparquet, outparquet, colname):
|
||||||
df = spark.read.parquet("/gscratch/comdata/users/nathante/reddit_tfidf_test.parquet_temp/")
|
spark = SparkSession.builder.getOrCreate()
|
||||||
|
df = spark.read.parquet(inparquet)
|
||||||
|
|
||||||
df = df.repartition(2000,'term')
|
df = df.repartition(2000,colname)
|
||||||
df = df.sort(['term','week','subreddit'])
|
df = df.sort([colname,'week','subreddit'])
|
||||||
df = df.sortWithinPartitions(['term','week','subreddit'])
|
df = df.sortWithinPartitions([colname,'week','subreddit'])
|
||||||
|
|
||||||
df.write.parquet("/gscratch/comdata/users/nathante/reddit_tfidf_test_sorted_tf.parquet_temp",mode='overwrite',compression='snappy')
|
df.write.parquet(outparquet,mode='overwrite',compression='snappy')
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
fire.Fire(main)
|
||||||
|
|||||||
@@ -13,25 +13,30 @@ from nltk.corpus import stopwords
|
|||||||
from nltk.util import ngrams
|
from nltk.util import ngrams
|
||||||
import string
|
import string
|
||||||
from random import random
|
from random import random
|
||||||
|
from redditcleaner import clean
|
||||||
# remove urls
|
from pathlib import Path
|
||||||
# taken from https://stackoverflow.com/questions/3809401/what-is-a-good-regular-expression-to-match-a-url
|
|
||||||
urlregex = re.compile(r"[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)")
|
|
||||||
|
|
||||||
# compute term frequencies for comments in each subreddit by week
|
# compute term frequencies for comments in each subreddit by week
|
||||||
def weekly_tf(partition, mwe_pass = 'first'):
|
def weekly_tf(partition, outputdir = '/gscratch/comdata/output/reddit_ngrams/', input_dir="/gscratch/comdata/output/reddit_comments_by_subreddit.parquet/", mwe_pass = 'first', excluded_users=None):
|
||||||
dataset = ds.dataset(f'/gscratch/comdata/output/reddit_comments_by_subreddit.parquet/{partition}', format='parquet')
|
|
||||||
if not os.path.exists("/gscratch/comdata/users/nathante/reddit_comment_ngrams_10p_sample/"):
|
|
||||||
os.mkdir("/gscratch/comdata/users/nathante/reddit_comment_ngrams_10p_sample/")
|
|
||||||
|
|
||||||
if not os.path.exists("/gscratch/comdata/users/nathante/reddit_tfidf_test_authors.parquet_temp/"):
|
dataset = ds.dataset(Path(input_dir)/partition, format='parquet')
|
||||||
os.mkdir("/gscratch/comdata/users/nathante/reddit_tfidf_test_authors.parquet_temp/")
|
outputdir = Path(outputdir)
|
||||||
|
samppath = outputdir / "reddit_comment_ngrams_10p_sample"
|
||||||
|
|
||||||
|
if not samppath.exists():
|
||||||
|
samppath.mkdir(parents=True, exist_ok=True)
|
||||||
|
|
||||||
ngram_output = partition.replace("parquet","txt")
|
ngram_output = partition.replace("parquet","txt")
|
||||||
|
|
||||||
|
if excluded_users is not None:
|
||||||
|
excluded_users = set(map(str.strip,open(excluded_users)))
|
||||||
|
df = df.filter(~ (f.col("author").isin(excluded_users)))
|
||||||
|
|
||||||
|
|
||||||
|
ngram_path = samppath / ngram_output
|
||||||
if mwe_pass == 'first':
|
if mwe_pass == 'first':
|
||||||
if os.path.exists(f"/gscratch/comdata/output/reddit_ngrams/comment_ngrams_10p_sample/{ngram_output}"):
|
if ngram_path.exists():
|
||||||
os.remove(f"/gscratch/comdata/output/reddit_ngrams/comment_ngrams_10p_sample/{ngram_output}")
|
ngram_path.unlink()
|
||||||
|
|
||||||
batches = dataset.to_batches(columns=['CreatedAt','subreddit','body','author'])
|
batches = dataset.to_batches(columns=['CreatedAt','subreddit','body','author'])
|
||||||
|
|
||||||
@@ -65,8 +70,10 @@ def weekly_tf(partition, mwe_pass = 'first'):
|
|||||||
|
|
||||||
subreddit_weeks = groupby(rows, lambda r: (r.subreddit, r.week))
|
subreddit_weeks = groupby(rows, lambda r: (r.subreddit, r.week))
|
||||||
|
|
||||||
|
mwe_path = outputdir / "multiword_expressions.feather"
|
||||||
|
|
||||||
if mwe_pass != 'first':
|
if mwe_pass != 'first':
|
||||||
mwe_dataset = pd.read_feather(f'/gscratch/comdata/output/reddit_ngrams/multiword_expressions.feather')
|
mwe_dataset = pd.read_feather(mwe_path)
|
||||||
mwe_dataset = mwe_dataset.sort_values(['phrasePWMI'],ascending=False)
|
mwe_dataset = mwe_dataset.sort_values(['phrasePWMI'],ascending=False)
|
||||||
mwe_phrases = list(mwe_dataset.phrase)
|
mwe_phrases = list(mwe_dataset.phrase)
|
||||||
mwe_phrases = [tuple(s.split(' ')) for s in mwe_phrases]
|
mwe_phrases = [tuple(s.split(' ')) for s in mwe_phrases]
|
||||||
@@ -95,8 +102,8 @@ def weekly_tf(partition, mwe_pass = 'first'):
|
|||||||
# lowercase
|
# lowercase
|
||||||
text = text.lower()
|
text = text.lower()
|
||||||
|
|
||||||
# remove urls
|
# redditcleaner removes reddit markdown(newlines, quotes, bullet points, links, strikethrough, spoiler, code, superscript, table, headings)
|
||||||
text = urlregex.sub("", text)
|
text = clean(text)
|
||||||
|
|
||||||
# sentence tokenize
|
# sentence tokenize
|
||||||
sentences = sent_tokenize(text)
|
sentences = sent_tokenize(text)
|
||||||
@@ -107,19 +114,18 @@ def weekly_tf(partition, mwe_pass = 'first'):
|
|||||||
# remove punctuation
|
# remove punctuation
|
||||||
|
|
||||||
sentences = map(remove_punct, sentences)
|
sentences = map(remove_punct, sentences)
|
||||||
|
|
||||||
# remove sentences with less than 2 words
|
|
||||||
sentences = filter(lambda sentence: len(sentence) > 2, sentences)
|
|
||||||
|
|
||||||
# datta et al. select relatively common phrases from the reddit corpus, but they don't really explain how. We'll try that in a second phase.
|
# datta et al. select relatively common phrases from the reddit corpus, but they don't really explain how. We'll try that in a second phase.
|
||||||
# they say that the extract 1-4 grams from 10% of the sentences and then find phrases that appear often relative to the original terms
|
# they say that the extract 1-4 grams from 10% of the sentences and then find phrases that appear often relative to the original terms
|
||||||
# here we take a 10 percent sample of sentences
|
# here we take a 10 percent sample of sentences
|
||||||
if mwe_pass == 'first':
|
if mwe_pass == 'first':
|
||||||
|
|
||||||
|
# remove sentences with less than 2 words
|
||||||
|
sentences = filter(lambda sentence: len(sentence) > 2, sentences)
|
||||||
sentences = list(sentences)
|
sentences = list(sentences)
|
||||||
for sentence in sentences:
|
for sentence in sentences:
|
||||||
if random() <= 0.1:
|
if random() <= 0.1:
|
||||||
grams = list(chain(*map(lambda i : ngrams(sentence,i),range(4))))
|
grams = list(chain(*map(lambda i : ngrams(sentence,i),range(4))))
|
||||||
with open(f'/gscratch/comdata/output/reddit_ngrams/comment_ngrams_10p_sample/{ngram_output}','a') as gram_file:
|
with open(ngram_path,'a') as gram_file:
|
||||||
for ng in grams:
|
for ng in grams:
|
||||||
gram_file.write(' '.join(ng) + '\n')
|
gram_file.write(' '.join(ng) + '\n')
|
||||||
for token in sentence:
|
for token in sentence:
|
||||||
@@ -153,8 +159,15 @@ def weekly_tf(partition, mwe_pass = 'first'):
|
|||||||
outrows = tf_comments(subreddit_weeks)
|
outrows = tf_comments(subreddit_weeks)
|
||||||
|
|
||||||
outchunksize = 10000
|
outchunksize = 10000
|
||||||
|
|
||||||
with pq.ParquetWriter(f"/gscratch/comdata/output/reddit_ngrams/comment_terms.parquet/{partition}",schema=schema,compression='snappy',flavor='spark') as writer, pq.ParquetWriter(f"/gscratch/comdata/output/reddit_ngrams/comment_authors.parquet/{partition}",schema=author_schema,compression='snappy',flavor='spark') as author_writer:
|
termtf_outputdir = (outputdir / "comment_terms")
|
||||||
|
termtf_outputdir.mkdir(parents=True, exist_ok=True)
|
||||||
|
authortf_outputdir = (outputdir / "comment_authors")
|
||||||
|
authortf_outputdir.mkdir(parents=True, exist_ok=True)
|
||||||
|
termtf_path = termtf_outputdir / partition
|
||||||
|
authortf_path = authortf_outputdir / partition
|
||||||
|
with pq.ParquetWriter(termtf_path, schema=schema, compression='snappy', flavor='spark') as writer, \
|
||||||
|
pq.ParquetWriter(authortf_path, schema=author_schema, compression='snappy', flavor='spark') as author_writer:
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
|
|
||||||
@@ -183,12 +196,12 @@ def weekly_tf(partition, mwe_pass = 'first'):
|
|||||||
author_writer.close()
|
author_writer.close()
|
||||||
|
|
||||||
|
|
||||||
def gen_task_list(mwe_pass='first'):
|
def gen_task_list(mwe_pass='first', outputdir='/gscratch/comdata/output/reddit_ngrams/', tf_task_list='tf_task_list', excluded_users_file=None):
|
||||||
files = os.listdir("/gscratch/comdata/output/reddit_comments_by_subreddit.parquet/")
|
files = os.listdir("/gscratch/comdata/output/reddit_comments_by_subreddit.parquet/")
|
||||||
with open("tf_task_list",'w') as outfile:
|
with open(tf_task_list,'w') as outfile:
|
||||||
for f in files:
|
for f in files:
|
||||||
if f.endswith(".parquet"):
|
if f.endswith(".parquet"):
|
||||||
outfile.write(f"./tf_comments.py weekly_tf --mwe-pass {mwe_pass} {f}\n")
|
outfile.write(f"./tf_comments.py weekly_tf --mwe-pass {mwe_pass} --outputdir {outputdir} --excluded_users {excluded_users_file} {f}\n")
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
fire.Fire({"gen_task_list":gen_task_list,
|
fire.Fire({"gen_task_list":gen_task_list,
|
||||||
|
|||||||
91
ngrams/top_comment_phrases.py
Normal file → Executable file
91
ngrams/top_comment_phrases.py
Normal file → Executable file
@@ -1,58 +1,69 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
from pyspark.sql import functions as f
|
from pyspark.sql import functions as f
|
||||||
from pyspark.sql import Window
|
from pyspark.sql import Window
|
||||||
from pyspark.sql import SparkSession
|
from pyspark.sql import SparkSession
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
import fire
|
||||||
spark = SparkSession.builder.getOrCreate()
|
from pathlib import Path
|
||||||
df = spark.read.text("/gscratch/comdata/users/nathante/reddit_comment_ngrams_10p_sample/")
|
|
||||||
|
|
||||||
df = df.withColumnRenamed("value","phrase")
|
|
||||||
|
|
||||||
# count phrase occurrances
|
|
||||||
phrases = df.groupby('phrase').count()
|
|
||||||
phrases = phrases.withColumnRenamed('count','phraseCount')
|
|
||||||
phrases = phrases.filter(phrases.phraseCount > 10)
|
|
||||||
|
|
||||||
|
|
||||||
# count overall
|
def main(ngram_dir="/gscratch/comdata/output/reddit_ngrams"):
|
||||||
N = phrases.select(f.sum(phrases.phraseCount).alias("phraseCount")).collect()[0].phraseCount
|
spark = SparkSession.builder.getOrCreate()
|
||||||
|
ngram_dir = Path(ngram_dir)
|
||||||
|
ngram_sample = ngram_dir / "reddit_comment_ngrams_10p_sample"
|
||||||
|
df = spark.read.text(str(ngram_sample))
|
||||||
|
|
||||||
print(f'analyzing PMI on a sample of {N} phrases')
|
df = df.withColumnRenamed("value","phrase")
|
||||||
logN = np.log(N)
|
|
||||||
phrases = phrases.withColumn("phraseLogProb", f.log(f.col("phraseCount")) - logN)
|
|
||||||
|
|
||||||
# count term occurrances
|
# count phrase occurrances
|
||||||
phrases = phrases.withColumn('terms',f.split(f.col('phrase'),' '))
|
phrases = df.groupby('phrase').count()
|
||||||
terms = phrases.select(['phrase','phraseCount','phraseLogProb',f.explode(phrases.terms).alias('term')])
|
phrases = phrases.withColumnRenamed('count','phraseCount')
|
||||||
|
phrases = phrases.filter(phrases.phraseCount > 10)
|
||||||
|
|
||||||
win = Window.partitionBy('term')
|
# count overall
|
||||||
terms = terms.withColumn('termCount',f.sum('phraseCount').over(win))
|
N = phrases.select(f.sum(phrases.phraseCount).alias("phraseCount")).collect()[0].phraseCount
|
||||||
terms = terms.withColumnRenamed('count','termCount')
|
|
||||||
terms = terms.withColumn('termLogProb',f.log(f.col('termCount')) - logN)
|
|
||||||
|
|
||||||
terms = terms.groupBy(terms.phrase, terms.phraseLogProb, terms.phraseCount).sum('termLogProb')
|
print(f'analyzing PMI on a sample of {N} phrases')
|
||||||
terms = terms.withColumnRenamed('sum(termLogProb)','termsLogProb')
|
logN = np.log(N)
|
||||||
terms = terms.withColumn("phrasePWMI", f.col('phraseLogProb') - f.col('termsLogProb'))
|
phrases = phrases.withColumn("phraseLogProb", f.log(f.col("phraseCount")) - logN)
|
||||||
|
|
||||||
# join phrases to term counts
|
# count term occurrances
|
||||||
|
phrases = phrases.withColumn('terms',f.split(f.col('phrase'),' '))
|
||||||
|
terms = phrases.select(['phrase','phraseCount','phraseLogProb',f.explode(phrases.terms).alias('term')])
|
||||||
|
|
||||||
|
win = Window.partitionBy('term')
|
||||||
|
terms = terms.withColumn('termCount',f.sum('phraseCount').over(win))
|
||||||
|
terms = terms.withColumnRenamed('count','termCount')
|
||||||
|
terms = terms.withColumn('termLogProb',f.log(f.col('termCount')) - logN)
|
||||||
|
|
||||||
|
terms = terms.groupBy(terms.phrase, terms.phraseLogProb, terms.phraseCount).sum('termLogProb')
|
||||||
|
terms = terms.withColumnRenamed('sum(termLogProb)','termsLogProb')
|
||||||
|
terms = terms.withColumn("phrasePWMI", f.col('phraseLogProb') - f.col('termsLogProb'))
|
||||||
|
|
||||||
|
# join phrases to term counts
|
||||||
|
|
||||||
|
|
||||||
df = terms.select(['phrase','phraseCount','phraseLogProb','phrasePWMI'])
|
df = terms.select(['phrase','phraseCount','phraseLogProb','phrasePWMI'])
|
||||||
|
|
||||||
df = df.sort(['phrasePWMI'],descending=True)
|
df = df.sort(['phrasePWMI'],descending=True)
|
||||||
df = df.sortWithinPartitions(['phrasePWMI'],descending=True)
|
df = df.sortWithinPartitions(['phrasePWMI'],descending=True)
|
||||||
df.write.parquet("/gscratch/comdata/users/nathante/reddit_comment_ngrams_pwmi.parquet/",mode='overwrite',compression='snappy')
|
|
||||||
|
|
||||||
df = spark.read.parquet("/gscratch/comdata/users/nathante/reddit_comment_ngrams_pwmi.parquet/")
|
pwmi_dir = ngram_dir / "reddit_comment_ngrams_pwmi.parquet/"
|
||||||
|
df.write.parquet(str(pwmi_dir), mode='overwrite', compression='snappy')
|
||||||
|
|
||||||
df.write.csv("/gscratch/comdata/users/nathante/reddit_comment_ngrams_pwmi.csv/",mode='overwrite',compression='none')
|
df = spark.read.parquet(str(pwmi_dir))
|
||||||
|
|
||||||
df = spark.read.parquet("/gscratch/comdata/users/nathante/reddit_comment_ngrams_pwmi.parquet")
|
df.write.csv(str(ngram_dir / "reddit_comment_ngrams_pwmi.csv/"),mode='overwrite',compression='none')
|
||||||
df = df.select('phrase','phraseCount','phraseLogProb','phrasePWMI')
|
|
||||||
|
|
||||||
# choosing phrases occurring at least 3500 times in the 10% sample (35000 times) and then with a PWMI of at least 3 yeids about 65000 expressions.
|
df = spark.read.parquet(str(pwmi_dir))
|
||||||
#
|
df = df.select('phrase','phraseCount','phraseLogProb','phrasePWMI')
|
||||||
df = df.filter(f.col('phraseCount') > 3500).filter(f.col("phrasePWMI")>3)
|
|
||||||
df = df.toPandas()
|
# choosing phrases occurring at least 3500 times in the 10% sample (35000 times) and then with a PWMI of at least 3 yeids about 65000 expressions.
|
||||||
df.to_feather("/gscratch/comdata/users/nathante/reddit_multiword_expressions.feather")
|
#
|
||||||
df.to_csv("/gscratch/comdata/users/nathante/reddit_multiword_expressions.csv")
|
df = df.filter(f.col('phraseCount') > 3500).filter(f.col("phrasePWMI")>3)
|
||||||
|
df = df.toPandas()
|
||||||
|
df.to_feather(ngram_dir / "multiword_expressions.feather")
|
||||||
|
df.to_csv(ngram_dir / "multiword_expressions.csv")
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
fire.Fire(main)
|
||||||
|
|||||||
@@ -1,25 +1,138 @@
|
|||||||
all: /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_10000.parquet /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_10000.parquet /gscratch/comdata/output/reddit_similarity/subreddit_author_tf_similarities_10000.parquet /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_10000.parquet /gscratch/comdata/output/reddit_similarity/comment_terms.parquet
|
|
||||||
|
#all: /gscratch/comdata/output/reddit_similarity/tfidf/comment_terms_130k.parquet /gscratch/comdata/output/reddit_similarity/tfidf/comment_authors_130k.parquet /gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_terms_130k.parquet /gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_authors_130k.parquet
|
||||||
|
# srun_singularity=source /gscratch/comdata/users/nathante/cdsc_reddit/bin/activate && srun_singularity.sh
|
||||||
|
# srun_singularity_huge=source /gscratch/comdata/users/nathante/cdsc_reddit/bin/activate && srun_singularity_huge.sh
|
||||||
|
srun=srun -p compute-bigmem -A comdata --mem-per-cpu=9g --time=200:00:00 -c 40
|
||||||
|
srun_huge=srun -p compute-hugemem -A comdata --mem-per-cpu=9g --time=200:00:00 -c 40
|
||||||
|
similarity_data=/gscratch/scrubbed/comdata/reddit_similarity
|
||||||
|
tfidf_data=${similarity_data}/tfidf
|
||||||
|
tfidf_weekly_data=${similarity_data}/tfidf_weekly
|
||||||
|
similarity_weekly_data=${similarity_data}/weekly
|
||||||
|
lsi_components=[10,50,100,200,300,400,500,600,700,850,1000,1500]
|
||||||
|
|
||||||
|
lsi_similarities: ${similarity_data}/subreddit_comment_terms_10k_LSI ${similarity_data}/subreddit_comment_authors-tf_10k_LSI ${similarity_data}/subreddit_comment_authors_10k_LSI ${similarity_data}/subreddit_comment_terms_30k_LSI ${similarity_data}/subreddit_comment_authors-tf_30k_LSI ${similarity_data}/subreddit_comment_authors_30k_LSI
|
||||||
|
|
||||||
|
|
||||||
|
all: ${tfidf_data}/comment_terms_30k.parquet ${tfidf_data}/comment_terms_10k.parquet ${tfidf_data}/comment_authors_30k.parquet ${tfidf_data}/comment_authors_10k.parquet ${similarity_data}/subreddit_comment_authors_30k.feather ${similarity_data}/subreddit_comment_authors_10k.feather ${similarity_data}/subreddit_comment_terms_10k.feather ${similarity_data}/subreddit_comment_terms_30k.feather ${similarity_data}/subreddit_comment_authors-tf_30k.feather ${similarity_data}/subreddit_comment_authors-tf_10k.feather
|
||||||
|
|
||||||
|
#all: ${tfidf_data}/comment_terms_100k.parquet ${tfidf_data}/comment_terms_30k.parquet ${tfidf_data}/comment_terms_10k.parquet ${tfidf_data}/comment_authors_100k.parquet ${tfidf_data}/comment_authors_30k.parquet ${tfidf_data}/comment_authors_10k.parquet ${similarity_data}/subreddit_comment_authors_30k.feather ${similarity_data}/subreddit_comment_authors_10k.feather ${similarity_data}/subreddit_comment_terms_10k.feather ${similarity_data}/subreddit_comment_terms_30k.feather ${similarity_data}/subreddit_comment_authors-tf_30k.feather ${similarity_data}/subreddit_comment_authors-tf_10k.feather ${similarity_data}/subreddit_comment_terms_100k.feather ${similarity_data}/subreddit_comment_authors_100k.feather ${similarity_data}/subreddit_comment_authors-tf_100k.feather ${similarity_weekly_data}/comment_terms.parquet
|
||||||
|
|
||||||
|
#${tfidf_weekly_data}/comment_terms_100k.parquet ${tfidf_weekly_data}/comment_authors_100k.parquet ${tfidf_weekly_data}/comment_terms_30k.parquet ${tfidf_weekly_data}/comment_authors_30k.parquet ${similarity_weekly_data}/comment_terms_100k.parquet ${similarity_weekly_data}/comment_authors_100k.parquet ${similarity_weekly_data}/comment_terms_30k.parquet ${similarity_weekly_data}/comment_authors_30k.parquet
|
||||||
|
|
||||||
|
# /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_130k.parquet /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_130k.parquet /gscratch/comdata/output/reddit_similarity/subreddit_author_tf_similarities_130k.parquet /gscratch/comdata/output/reddit_similarity/subreddit_comment_terms_130k.parquet /gscratch/comdata/output/reddit_similarity/comment_terms_weekly_130k.parquet
|
||||||
|
|
||||||
# all: /gscratch/comdata/output/reddit_similarity/subreddit_comment_terms_25000.parquet /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_25000.parquet /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_10000.parquet /gscratch/comdata/output/reddit_similarity/comment_terms_10000_weekly.parquet
|
# all: /gscratch/comdata/output/reddit_similarity/subreddit_comment_terms_25000.parquet /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_25000.parquet /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_10000.parquet /gscratch/comdata/output/reddit_similarity/comment_terms_10000_weekly.parquet
|
||||||
|
|
||||||
|
${similarity_weekly_data}/comment_terms.parquet: weekly_cosine_similarities.py similarities_helper.py /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv ${tfidf_weekly_data}/comment_terms.parquet
|
||||||
|
${srun} python3 weekly_cosine_similarities.py terms --topN=10000 --outfile=${similarity_weekly_data}/comment_terms.parquet
|
||||||
|
|
||||||
# /gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_25000.parquet: cosine_similarities.py /gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet
|
${similarity_data}/subreddit_comment_terms_10k.feather: ${tfidf_data}/comment_terms_100k.parquet similarities_helper.py
|
||||||
# start_spark_and_run.sh 1 cosine_similarities.py author --outfile=/gscratch/comdata/output/reddit_similarity/subreddit_comment_authors_25000.feather
|
${srun} python3 cosine_similarities.py term --outfile=${similarity_data}/subreddit_comment_terms_10k.feather --topN=10000
|
||||||
|
|
||||||
/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms.parquet: tfidf.py similarities_helper.py /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet /gscratch/comdata/output/reddit_similarity/subreddits_by_num_comments.csv
|
${similarity_data}/subreddit_comment_terms_10k_LSI: ${tfidf_data}/comment_terms_100k.parquet similarities_helper.py
|
||||||
start_spark_and_run.sh 1 tfidf.py terms --topN=10000
|
${srun_huge} python3 lsi_similarities.py term --outfile=${similarity_data}/subreddit_comment_terms_10k_LSI --topN=10000 --n_components=${lsi_components} --min_df=200
|
||||||
|
|
||||||
/gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet: tfidf.py similarities_helper.py /gscratch/comdata/output/reddit_ngrams/comment_authors.parquet /gscratch/comdata/output/reddit_similarity/subreddits_by_num_comments.csv
|
${similarity_data}/subreddit_comment_terms_30k_LSI: ${tfidf_data}/comment_terms_100k.parquet similarities_helper.py
|
||||||
start_spark_and_run.sh 1 tfidf.py authors --topN=10000
|
${srun_huge} python3 lsi_similarities.py term --outfile=${similarity_data}/subreddit_comment_terms_30k_LSI --topN=30000 --n_components=${lsi_components} --min_df=200 --inpath=$<
|
||||||
|
|
||||||
/gscratch/comdata/output/reddit_similarity/comment_authors_10000.parquet: cosine_similarities.py similarities_helper.py /gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet /gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet
|
${similarity_data}/subreddit_comment_terms_30k.feather: ${tfidf_data}/comment_terms_30k.parquet similarities_helper.py
|
||||||
start_spark_and_run.sh 1 cosine_similarities.py author --outfile=/gscratch/comdata/output/reddit_similarity/comment_authors_10000.feather
|
${srun_huge} python3 cosine_similarities.py term --outfile=${similarity_data}/subreddit_comment_terms_30k.feather --topN=30000 --inpath=$<
|
||||||
|
|
||||||
/gscratch/comdata/output/reddit_similarity/comment_terms.parquet: cosine_similarities.py similarities_helper.py /gscratch/comdata/output/reddit_similarity/tfidf/comment_terms.parquet
|
${similarity_data}/subreddit_comment_authors_30k.feather: ${tfidf_data}/comment_authors_30k.parquet similarities_helper.py
|
||||||
start_spark_and_run.sh 1 cosine_similarities.py term --outfile=/gscratch/comdata/output/reddit_similarity/comment_terms_10000.feather
|
${srun_huge} python3 cosine_similarities.py author --outfile=${similarity_data}/subreddit_comment_authors_30k.feather --topN=30000 --inpath=$<
|
||||||
|
|
||||||
# /gscratch/comdata/output/reddit_similarity/comment_terms_10000_weekly.parquet: cosine_similarities.py /gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_authors.parquet
|
${similarity_data}/subreddit_comment_authors_10k.feather: ${tfidf_data}/comment_authors_10k.parquet similarities_helper.py
|
||||||
|
${srun_huge} python3 cosine_similarities.py author --outfile=${similarity_data}/subreddit_comment_authors_10k.feather --topN=10000 --inpath=$<
|
||||||
|
|
||||||
|
${similarity_data}/subreddit_comment_authors_10k_LSI: ${tfidf_data}/comment_authors_100k.parquet similarities_helper.py
|
||||||
|
${srun_huge} python3 lsi_similarities.py author --outfile=${similarity_data}/subreddit_comment_authors_10k_LSI --topN=10000 --n_components=${lsi_components} --min_df=10 --inpath=$<
|
||||||
|
|
||||||
|
${similarity_data}/subreddit_comment_authors_30k_LSI: ${tfidf_data}/comment_authors_100k.parquet similarities_helper.py
|
||||||
|
${srun_huge} python3 lsi_similarities.py author --outfile=${similarity_data}/subreddit_comment_authors_30k_LSI --topN=30000 --n_components=${lsi_components} --min_df=10 --inpath=$<
|
||||||
|
|
||||||
|
${similarity_data}/subreddit_comment_authors-tf_30k.feather: ${tfidf_data}/comment_authors_100k.parquet similarities_helper.py
|
||||||
|
${srun} python3 cosine_similarities.py author-tf --outfile=${similarity_data}/subreddit_comment_authors-tf_30k.feather --topN=30000 --inpath=$<
|
||||||
|
|
||||||
|
${similarity_data}/subreddit_comment_authors-tf_10k.feather: ${tfidf_data}/comment_authors_100k.parquet similarities_helper.py
|
||||||
|
${srun} python3 cosine_similarities.py author-tf --outfile=${similarity_data}/subreddit_comment_authors-tf_10k.feather --topN=10000
|
||||||
|
|
||||||
|
${similarity_data}/subreddit_comment_authors-tf_10k_LSI: ${tfidf_data}/comment_authors_100k.parquet similarities_helper.py
|
||||||
|
${srun_huge} python3 lsi_similarities.py author-tf --outfile=${similarity_data}/subreddit_comment_authors-tf_10k_LSI --topN=10000 --n_components=${lsi_components} --min_df=10 --inpath=$<
|
||||||
|
|
||||||
|
${similarity_data}/subreddit_comment_authors-tf_30k_LSI: ${tfidf_data}/comment_authors_100k.parquet similarities_helper.py
|
||||||
|
${srun_huge} python3 lsi_similarities.py author-tf --outfile=${similarity_data}/subreddit_comment_authors-tf_30k_LSI --topN=30000 --n_components=${lsi_components} --min_df=10 --inpath=$<
|
||||||
|
|
||||||
|
${similarity_data}/subreddit_comment_terms_100k.feather: ${tfidf_data}/comment_terms_100k.parquet similarities_helper.py
|
||||||
|
${srun} python3 cosine_similarities.py term --outfile=${similarity_data}/subreddit_comment_terms_100k.feather --topN=100000
|
||||||
|
|
||||||
|
${similarity_data}/subreddit_comment_authors_100k.feather: ${tfidf_data}/comment_authors_100k.parquet similarities_helper.py
|
||||||
|
${srun} python3 cosine_similarities.py author --outfile=${similarity_data}/subreddit_comment_authors_100k.feather --topN=100000
|
||||||
|
|
||||||
|
${similarity_data}/subreddit_comment_authors-tf_100k.feather: ${tfidf_data}/comment_authors_100k.parquet similarities_helper.py
|
||||||
|
${srun} python3 cosine_similarities.py author-tf --outfile=${similarity_data}/subreddit_comment_authors-tf_100k.feather --topN=100000
|
||||||
|
|
||||||
|
${similarity_data}/subreddits_by_num_comments_nonsfw.csv:
|
||||||
|
start_spark_and_run.sh 3 top_subreddits_by_comments.py
|
||||||
|
|
||||||
|
${tfidf_data}/comment_terms_100k.parquet: /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv
|
||||||
|
# mkdir -p ${tfidf_data}/
|
||||||
|
start_spark_and_run.sh 3 tfidf.py terms --topN=100000 --inpath=$< --outpath=${tfidf_data}/comment_terms_100k.parquet
|
||||||
|
|
||||||
|
${tfidf_data}/comment_terms_30k.feather: /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv
|
||||||
|
# mkdir -p ${tfidf_data}/
|
||||||
|
start_spark_and_run.sh 3 tfidf.py terms --topN=30000 --inpath=$< --outpath=${tfidf_data}/comment_terms_30k.feather
|
||||||
|
|
||||||
|
${tfidf_data}/comment_terms_10k.feather: /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv
|
||||||
|
# mkdir -p ${tfidf_data}/
|
||||||
|
start_spark_and_run.sh 3 tfidf.py terms --topN=10000 --inpath=$< --outpath=${tfidf_data}/comment_terms_10k.feather
|
||||||
|
|
||||||
|
${tfidf_data}/comment_authors_100k.parquet: /gscratch/comdata/output/reddit_ngrams/comment_authors.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv
|
||||||
|
# mkdir -p ${tfidf_data}/
|
||||||
|
start_spark_and_run.sh 3 tfidf.py authors --topN=100000 --inpath=$< --outpath=${tfidf_data}/comment_authors_100k.parquet
|
||||||
|
|
||||||
|
${tfidf_data}/comment_authors_10k.parquet: /gscratch/comdata/output/reddit_ngrams/comment_authors.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv
|
||||||
|
# mkdir -p ${tfidf_data}/
|
||||||
|
start_spark_and_run.sh 3 tfidf.py authors --topN=10000 --inpath=$< --outpath=${tfidf_data}/comment_authors_10k.parquet
|
||||||
|
|
||||||
|
${tfidf_data}/comment_authors_30k.parquet: /gscratch/comdata/output/reddit_ngrams/comment_authors.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv
|
||||||
|
# mkdir -p ${tfidf_data}/
|
||||||
|
start_spark_and_run.sh 3 tfidf.py authors --topN=30000 --inpath=$< --outpath=${tfidf_data}/comment_authors_30k.parquet
|
||||||
|
|
||||||
|
${tfidf_data}/tfidf_weekly/comment_terms_100k.parquet: /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv
|
||||||
|
start_spark_and_run.sh 3 tfidf.py terms_weekly --topN=100000 --outpath=${similarity_data}/tfidf_weekly/comment_authors_100k.parquet
|
||||||
|
|
||||||
|
${tfidf_data}/tfidf_weekly/comment_authors_100k.parquet: /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet ${similarity_data}/subreddits_by_ppnum_comments.csv
|
||||||
|
start_spark_and_run.sh 3 tfidf.py authors_weekly --topN=100000 --inpath=$< --outpath=${tfidf_weekly_data}/comment_authors_100k.parquet
|
||||||
|
|
||||||
|
${tfidf_weekly_data}/comment_terms_30k.parquet: /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv
|
||||||
|
start_spark_and_run.sh 2 tfidf.py terms_weekly --topN=30000 --inpath=$< --outpath=${tfidf_weekly_data}/comment_authors_30k.parquet
|
||||||
|
|
||||||
|
${tfidf_weekly_data}/comment_authors_30k.parquet: /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv
|
||||||
|
start_spark_and_run.sh 3 tfidf.py authors_weekly --topN=30000 --inpath=$< --outpath=${tfidf_weekly_data}/comment_authors_30k.parquet
|
||||||
|
|
||||||
|
${similarity_weekly_data}/comment_terms_100k.parquet: weekly_cosine_similarities.py similarities_helper.py ${tfidf_weekly_data}/comment_terms_100k.parquet
|
||||||
|
${srun} python3 weekly_cosine_similarities.py terms --topN=100000 --outfile=${similarity_weekly_data}/comment_terms_100k.parquet
|
||||||
|
|
||||||
|
${similarity_weekly_data}/comment_authors_100k.parquet: weekly_cosine_similarities.py similarities_helper.py /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv ${tfidf_weekly_data}/comment_authors_100k.parquet
|
||||||
|
${srun} python3 weekly_cosine_similarities.py authors --topN=100000 --outfile=${similarity_weekly_data}/comment_authors_100k.parquet
|
||||||
|
|
||||||
|
${similarity_weekly_data}/comment_terms_30k.parquet: weekly_cosine_similarities.py similarities_helper.py /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv ${tfidf_weekly_data}/comment_terms_30k.parquet
|
||||||
|
${srun} python3 weekly_cosine_similarities.py terms --topN=30000 --outfile=${similarity_weekly_data}/comment_authors_30k.parquet
|
||||||
|
|
||||||
|
,${similarity_weekly_data}/comment_authors_30k.parquet: weekly_cosine_similarities.py similarities_helper.py /gscratch/comdata/output/reddit_ngrams/comment_terms.parquet ${similarity_data}/subreddits_by_num_comments_nonsfw.csv ${tfidf_weekly_data}/comment_authors_30k.parquet
|
||||||
|
${srun} python3 weekly_cosine_similarities.py authors --topN=30000 --outfile=${similarity_weekly_data}/comment_authors_30k.parquet
|
||||||
|
|
||||||
|
# ${tfidf_weekly_data}/comment_authors_130k.parquet: tfidf.py similarities_helper.py /gscratch/comdata/output/reddit_ngrams/comment_authors.parquet /gscratch/comdata/output/reddit_similarity/subreddits_by_num_comments_nonsfw.csv
|
||||||
|
# start_spark_and_run.sh 1 tfidf.py authors_weekly --topN=130000
|
||||||
|
|
||||||
|
# /gscratch/comdata/output/reddit_similarity/comment_authors_10000.parquet: cosine_similarities.py similarities_helper.py /gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet /gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet
|
||||||
|
# start_spark_and_run.sh 1 cosine_similarities.py author --outfile=/gscratch/comdata/output/reddit_similarity/comment_authors_10000.feather
|
||||||
|
|
||||||
|
# /gscratch/comdata/output/reddit_similarity/comment_terms.parquet: cosine_similarities.py similarities_helper.py /gscratch/comdata/output/reddit_similarity/tfidf/comment_terms.parquet
|
||||||
|
# start_spark_and_run.sh 1 cosine_similarities.py term --outfile=/gscratch/comdata/output/reddit_similarity/comment_terms_10000.feather
|
||||||
|
|
||||||
|
# /gscratch/comdata/output/reddit_similarity/comment_terms_10000_weekly.parquet: cosine_similarities.py ${tfidf_weekly_data}/comment_authors.parquet
|
||||||
# start_spark_and_run.sh 1 weekly_cosine_similarities.py term --outfile=/gscratch/comdata/output/reddit_similarity/subreddit_comment_terms_10000_weely.parquet
|
# start_spark_and_run.sh 1 weekly_cosine_similarities.py term --outfile=/gscratch/comdata/output/reddit_similarity/subreddit_comment_terms_10000_weely.parquet
|
||||||
|
|
||||||
/gscratch/comdata/output/reddit_similarity/subreddit_author_tf_similarities_10000.parquet: cosine_similarities.py similarities_helper.py /gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet /gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet
|
# /gscratch/comdata/output/reddit_similarity/subreddit_author_tf_similarities_10000.parquet: cosine_similarities.py similarities_helper.py /gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet /gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet
|
||||||
start_spark_and_run.sh 1 cosine_similarities.py author-tf --outfile=/gscratch/comdata/output/reddit_similarity/subreddit_author_tf_similarities_10000.parquet
|
# start_spark_and_run.sh 1 cosine_similarities.py author-tf --outfile=/gscratch/comdata/output/reddit_similarity/subreddit_author_tf_similarities_10000.parquet
|
||||||
|
|||||||
@@ -2,11 +2,14 @@ import pandas as pd
|
|||||||
import fire
|
import fire
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from similarities_helper import similarities, column_similarities
|
from similarities_helper import similarities, column_similarities
|
||||||
|
from functools import partial
|
||||||
|
|
||||||
def cosine_similarities(infile, term_colname, outfile, min_df=None, max_df=None, included_subreddits=None, topN=500, exclude_phrases=False, from_date=None, to_date=None, tfidf_colname='tf_idf'):
|
def cosine_similarities(infile, term_colname, outfile, min_df=None, max_df=None, included_subreddits=None, topN=500, exclude_phrases=False, from_date=None, to_date=None, tfidf_colname='tf_idf'):
|
||||||
|
|
||||||
return similarities(infile=infile, simfunc=column_similarities, term_colname=term_colname, outfile=outfile, min_df=min_df, max_df=max_df, included_subreddits=included_subreddits, topN=topN, exclude_phrases=exclude_phrases,from_date=from_date, to_date=to_date, tfidf_colname=tfidf_colname)
|
return similarities(infile=infile, simfunc=column_similarities, term_colname=term_colname, outfile=outfile, min_df=min_df, max_df=max_df, included_subreddits=included_subreddits, topN=topN, exclude_phrases=exclude_phrases,from_date=from_date, to_date=to_date, tfidf_colname=tfidf_colname)
|
||||||
|
|
||||||
|
# change so that these take in an input as an optional argument (for speed, but also for idf).
|
||||||
|
def term_cosine_similarities(outfile, min_df=None, max_df=None, included_subreddits=None, topN=500, exclude_phrases=False, from_date=None, to_date=None):
|
||||||
|
|
||||||
def term_cosine_similarities(outfile, infile='/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms_100k.parquet', min_df=None, max_df=None, included_subreddits=None, topN=500, exclude_phrases=False, from_date=None, to_date=None):
|
def term_cosine_similarities(outfile, infile='/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms_100k.parquet', min_df=None, max_df=None, included_subreddits=None, topN=500, exclude_phrases=False, from_date=None, to_date=None):
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/bash
|
#!/usr/bin/bash
|
||||||
start_spark_cluster.sh
|
start_spark_cluster.sh
|
||||||
spark-submit --master spark://$(hostname):18899 cosine_similarities.py term --outfile=/gscratch/comdata/output/reddit_similarity/comment_terms_10000.feather
|
singularity exec /gscratch/comdata/users/nathante/containers/nathante.sif spark-submit --master spark://$(hostname):7077 tfidf.py authors --topN=100000 --inpath=/gscratch/comdata/output/reddit_ngrams/comment_authors.parquet --outpath=/gscratch/scrubbed/comdata/reddit_similarity/tfidf/comment_authors_100k.parquet
|
||||||
stop-all.sh
|
singularity exec /gscratch/comdata/users/nathante/containers/nathante.sif stop-all.sh
|
||||||
|
|||||||
86
similarities/lsi_similarities.py
Normal file
86
similarities/lsi_similarities.py
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
import pandas as pd
|
||||||
|
import fire
|
||||||
|
from pathlib import Path
|
||||||
|
from similarities_helper import *
|
||||||
|
#from similarities_helper import similarities, lsi_column_similarities
|
||||||
|
from functools import partial
|
||||||
|
|
||||||
|
# inpath = "/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/tfidf/comment_authors_compex.parquet"
|
||||||
|
# term_colname='authors'
|
||||||
|
# outfile='/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/similarity/comment_test_compex_LSI'
|
||||||
|
# n_components=[10,50,100]
|
||||||
|
# included_subreddits="/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/included_subreddits.txt"
|
||||||
|
# n_iter=5
|
||||||
|
# random_state=1968
|
||||||
|
# algorithm='randomized'
|
||||||
|
# topN = None
|
||||||
|
# from_date=None
|
||||||
|
# to_date=None
|
||||||
|
# min_df=None
|
||||||
|
# max_df=None
|
||||||
|
|
||||||
|
def lsi_similarities(inpath, term_colname, outfile, min_df=None, max_df=None, included_subreddits=None, topN=None, from_date=None, to_date=None, tfidf_colname='tf_idf',n_components=100,n_iter=5,random_state=1968,algorithm='arpack',lsi_model=None):
|
||||||
|
print(n_components,flush=True)
|
||||||
|
|
||||||
|
|
||||||
|
if lsi_model is None:
|
||||||
|
if type(n_components) == list:
|
||||||
|
lsi_model = Path(outfile) / f'{max(n_components)}_{term_colname}_LSIMOD.pkl'
|
||||||
|
else:
|
||||||
|
lsi_model = Path(outfile) / f'{n_components}_{term_colname}_LSIMOD.pkl'
|
||||||
|
|
||||||
|
simfunc = partial(lsi_column_similarities,n_components=n_components,n_iter=n_iter,random_state=random_state,algorithm=algorithm,lsi_model_save=lsi_model)
|
||||||
|
|
||||||
|
return similarities(inpath=inpath, simfunc=simfunc, term_colname=term_colname, outfile=outfile, min_df=min_df, max_df=max_df, included_subreddits=included_subreddits, topN=topN, from_date=from_date, to_date=to_date, tfidf_colname=tfidf_colname)
|
||||||
|
|
||||||
|
# change so that these take in an input as an optional argument (for speed, but also for idf).
|
||||||
|
def term_lsi_similarities(inpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms_100k.parquet',outfile=None, min_df=None, max_df=None, included_subreddits=None, topN=None, from_date=None, to_date=None, algorithm='arpack', n_components=300,n_iter=5,random_state=1968):
|
||||||
|
|
||||||
|
res = lsi_similarities(inpath,
|
||||||
|
'term',
|
||||||
|
outfile,
|
||||||
|
min_df,
|
||||||
|
max_df,
|
||||||
|
included_subreddits,
|
||||||
|
topN,
|
||||||
|
from_date,
|
||||||
|
to_date,
|
||||||
|
n_components=n_components,
|
||||||
|
algorithm = algorithm
|
||||||
|
)
|
||||||
|
return res
|
||||||
|
|
||||||
|
def author_lsi_similarities(inpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_authors_100k.parquet',outfile=None, min_df=2, max_df=None, included_subreddits=None, topN=None, from_date=None, to_date=None,algorithm='arpack',n_components=300,n_iter=5,random_state=1968):
|
||||||
|
return lsi_similarities(inpath,
|
||||||
|
'author',
|
||||||
|
outfile,
|
||||||
|
min_df,
|
||||||
|
max_df,
|
||||||
|
included_subreddits,
|
||||||
|
topN,
|
||||||
|
from_date=from_date,
|
||||||
|
to_date=to_date,
|
||||||
|
n_components=n_components
|
||||||
|
)
|
||||||
|
|
||||||
|
def author_tf_similarities(inpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_authors_100k.parquet',outfile=None, min_df=2, max_df=None, included_subreddits=None, topN=None, from_date=None, to_date=None,algorithm='arpack',n_components=300,n_iter=5,random_state=1968):
|
||||||
|
return lsi_similarities(inpath,
|
||||||
|
'author',
|
||||||
|
outfile,
|
||||||
|
min_df,
|
||||||
|
max_df,
|
||||||
|
included_subreddits,
|
||||||
|
topN,
|
||||||
|
from_date=from_date,
|
||||||
|
to_date=to_date,
|
||||||
|
tfidf_colname='relative_tf',
|
||||||
|
n_components=n_components,
|
||||||
|
algorithm=algorithm
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
fire.Fire({'term':term_lsi_similarities,
|
||||||
|
'author':author_lsi_similarities,
|
||||||
|
'author-tf':author_tf_similarities})
|
||||||
|
|
||||||
@@ -2,143 +2,199 @@ from pyspark.sql import SparkSession
|
|||||||
from pyspark.sql import Window
|
from pyspark.sql import Window
|
||||||
from pyspark.sql import functions as f
|
from pyspark.sql import functions as f
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
|
from multiprocessing import cpu_count, Pool
|
||||||
from pyspark.mllib.linalg.distributed import CoordinateMatrix
|
from pyspark.mllib.linalg.distributed import CoordinateMatrix
|
||||||
from tempfile import TemporaryDirectory
|
from tempfile import TemporaryDirectory
|
||||||
import pyarrow
|
import pyarrow
|
||||||
import pyarrow.dataset as ds
|
import pyarrow.dataset as ds
|
||||||
|
from sklearn.metrics import pairwise_distances
|
||||||
from scipy.sparse import csr_matrix, issparse
|
from scipy.sparse import csr_matrix, issparse
|
||||||
|
from sklearn.decomposition import TruncatedSVD
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import pathlib
|
import pathlib
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
import pickle
|
||||||
|
|
||||||
class tf_weight(Enum):
|
class tf_weight(Enum):
|
||||||
MaxTF = 1
|
MaxTF = 1
|
||||||
Norm05 = 2
|
Norm05 = 2
|
||||||
|
|
||||||
infile = "/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_authors.parquet"
|
# infile = "/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_terms.parquet"
|
||||||
|
# cache_file = "/gscratch/comdata/users/nathante/cdsc_reddit/similarities/term_tfidf_entries_bak.parquet"
|
||||||
|
|
||||||
def reindex_tfidf_time_interval(infile, term_colname, min_df=None, max_df=None, included_subreddits=None, topN=500, exclude_phrases=False, from_date=None, to_date=None):
|
# subreddits missing after this step don't have any terms that have a high enough idf
|
||||||
term = term_colname
|
# try rewriting without merges
|
||||||
term_id = term + '_id'
|
|
||||||
term_id_new = term + '_id_new'
|
|
||||||
|
|
||||||
spark = SparkSession.builder.getOrCreate()
|
# does reindex_tfidf, but without reindexing.
|
||||||
conf = spark.sparkContext.getConf()
|
def reindex_tfidf(*args, **kwargs):
|
||||||
print(exclude_phrases)
|
df, tfidf_ds, ds_filter = _pull_or_reindex_tfidf(*args, **kwargs, reindex=True)
|
||||||
tfidf_weekly = spark.read.parquet(infile)
|
|
||||||
|
|
||||||
# create the time interval
|
print("assigning names")
|
||||||
if from_date is not None:
|
subreddit_names = tfidf_ds.to_table(filter=ds_filter,columns=['subreddit','subreddit_id'])
|
||||||
if type(from_date) is str:
|
batches = subreddit_names.to_batches()
|
||||||
from_date = datetime.fromisoformat(from_date)
|
|
||||||
|
with Pool(cpu_count()) as pool:
|
||||||
|
chunks = pool.imap_unordered(pull_names,batches)
|
||||||
|
subreddit_names = pd.concat(chunks,copy=False).drop_duplicates()
|
||||||
|
subreddit_names = subreddit_names.set_index("subreddit_id")
|
||||||
|
|
||||||
tfidf_weekly = tfidf_weekly.filter(tfidf_weekly.week >= from_date)
|
new_ids = df.loc[:,['subreddit_id','subreddit_id_new']].drop_duplicates()
|
||||||
|
new_ids = new_ids.set_index('subreddit_id')
|
||||||
if to_date is not None:
|
subreddit_names = subreddit_names.join(new_ids,on='subreddit_id').reset_index()
|
||||||
if type(to_date) is str:
|
subreddit_names = subreddit_names.drop("subreddit_id",1)
|
||||||
to_date = datetime.fromisoformat(to_date)
|
|
||||||
tfidf_weekly = tfidf_weekly.filter(tfidf_weekly.week < to_date)
|
|
||||||
|
|
||||||
tfidf = tfidf_weekly.groupBy(["subreddit","week", term_id, term]).agg(f.sum("tf").alias("tf"))
|
|
||||||
tfidf = _calc_tfidf(tfidf, term_colname, tf_weight.Norm05)
|
|
||||||
tempdir = prep_tfidf_entries(tfidf, term_colname, min_df, max_df, included_subreddits)
|
|
||||||
tfidf = spark.read_parquet(tempdir.name)
|
|
||||||
subreddit_names = tfidf.select(['subreddit','subreddit_id_new']).distinct().toPandas()
|
|
||||||
subreddit_names = subreddit_names.sort_values("subreddit_id_new")
|
subreddit_names = subreddit_names.sort_values("subreddit_id_new")
|
||||||
subreddit_names['subreddit_id_new'] = subreddit_names['subreddit_id_new'] - 1
|
return(df, subreddit_names)
|
||||||
return(tempdir, subreddit_names)
|
|
||||||
|
|
||||||
def reindex_tfidf(infile, term_colname, min_df=None, max_df=None, included_subreddits=None, topN=500, exclude_phrases=False):
|
def pull_tfidf(*args, **kwargs):
|
||||||
spark = SparkSession.builder.getOrCreate()
|
df, _, _ = _pull_or_reindex_tfidf(*args, **kwargs, reindex=False)
|
||||||
conf = spark.sparkContext.getConf()
|
return df
|
||||||
print(exclude_phrases)
|
|
||||||
|
|
||||||
tfidf = spark.read.parquet(infile)
|
def _pull_or_reindex_tfidf(infile, term_colname, min_df=None, max_df=None, included_subreddits=None, topN=500, week=None, from_date=None, to_date=None, rescale_idf=True, tf_family=tf_weight.MaxTF, reindex=True):
|
||||||
|
print(f"loading tfidf {infile}", flush=True)
|
||||||
|
if week is not None:
|
||||||
|
tfidf_ds = ds.dataset(infile, partitioning='hive')
|
||||||
|
else:
|
||||||
|
tfidf_ds = ds.dataset(infile)
|
||||||
|
|
||||||
if included_subreddits is None:
|
if included_subreddits is None:
|
||||||
included_subreddits = select_topN_subreddits(topN)
|
included_subreddits = select_topN_subreddits(topN)
|
||||||
else:
|
else:
|
||||||
included_subreddits = set(map(str.strip,map(str.lower,open(included_subreddits))))
|
included_subreddits = set(map(str.strip,open(included_subreddits)))
|
||||||
|
|
||||||
if exclude_phrases == True:
|
ds_filter = ds.field("subreddit").isin(included_subreddits)
|
||||||
tfidf = tfidf.filter(~f.col(term_colname).contains("_"))
|
|
||||||
|
|
||||||
print("creating temporary parquet with matrix indicies")
|
if min_df is not None:
|
||||||
tempdir = prep_tfidf_entries(tfidf, term_colname, min_df, max_df, included_subreddits)
|
ds_filter &= ds.field("count") >= min_df
|
||||||
|
|
||||||
tfidf = spark.read.parquet(tempdir.name)
|
if max_df is not None:
|
||||||
subreddit_names = tfidf.select(['subreddit','subreddit_id_new']).distinct().toPandas()
|
ds_filter &= ds.field("count") <= max_df
|
||||||
|
|
||||||
|
if week is not None:
|
||||||
|
ds_filter &= ds.field("week") == week
|
||||||
|
|
||||||
|
if from_date is not None:
|
||||||
|
ds_filter &= ds.field("week") >= from_date
|
||||||
|
|
||||||
|
if to_date is not None:
|
||||||
|
ds_filter &= ds.field("week") <= to_date
|
||||||
|
|
||||||
|
term = term_colname
|
||||||
|
term_id = term + '_id'
|
||||||
|
term_id_new = term + '_id_new'
|
||||||
|
|
||||||
|
projection = {
|
||||||
|
'subreddit_id':ds.field('subreddit_id'),
|
||||||
|
term_id:ds.field(term_id),
|
||||||
|
'relative_tf':ds.field("relative_tf").cast('float32')
|
||||||
|
}
|
||||||
|
|
||||||
|
if not rescale_idf:
|
||||||
|
projection = {
|
||||||
|
'subreddit_id':ds.field('subreddit_id'),
|
||||||
|
term_id:ds.field(term_id),
|
||||||
|
'relative_tf':ds.field('relative_tf').cast('float32'),
|
||||||
|
'tf_idf':ds.field('tf_idf').cast('float32')}
|
||||||
|
|
||||||
|
print(projection)
|
||||||
|
|
||||||
|
df = tfidf_ds.to_table(filter=ds_filter,columns=projection)
|
||||||
|
|
||||||
|
df = df.to_pandas(split_blocks=True,self_destruct=True)
|
||||||
|
print("assigning indexes",flush=True)
|
||||||
|
if reindex:
|
||||||
|
df['subreddit_id_new'] = df.groupby("subreddit_id").ngroup()
|
||||||
|
else:
|
||||||
|
df['subreddit_id_new'] = df['subreddit_id']
|
||||||
|
|
||||||
|
if reindex:
|
||||||
|
grouped = df.groupby(term_id)
|
||||||
|
df[term_id_new] = grouped.ngroup()
|
||||||
|
else:
|
||||||
|
df[term_id_new] = df[term_id]
|
||||||
|
|
||||||
|
if rescale_idf:
|
||||||
|
print("computing idf", flush=True)
|
||||||
|
df['new_count'] = grouped[term_id].transform('count')
|
||||||
|
N_docs = df.subreddit_id_new.max() + 1
|
||||||
|
df['idf'] = np.log(N_docs/(1+df.new_count),dtype='float32') + 1
|
||||||
|
if tf_family == tf_weight.MaxTF:
|
||||||
|
df["tf_idf"] = df.relative_tf * df.idf
|
||||||
|
else: # tf_fam = tf_weight.Norm05
|
||||||
|
df["tf_idf"] = (0.5 + 0.5 * df.relative_tf) * df.idf
|
||||||
|
|
||||||
|
return (df, tfidf_ds, ds_filter)
|
||||||
|
|
||||||
|
with Pool(cpu_count()) as pool:
|
||||||
|
chunks = pool.imap_unordered(pull_names,batches)
|
||||||
|
subreddit_names = pd.concat(chunks,copy=False).drop_duplicates()
|
||||||
|
|
||||||
|
subreddit_names = subreddit_names.set_index("subreddit_id")
|
||||||
|
new_ids = df.loc[:,['subreddit_id','subreddit_id_new']].drop_duplicates()
|
||||||
|
new_ids = new_ids.set_index('subreddit_id')
|
||||||
|
subreddit_names = subreddit_names.join(new_ids,on='subreddit_id').reset_index()
|
||||||
|
subreddit_names = subreddit_names.drop("subreddit_id",1)
|
||||||
subreddit_names = subreddit_names.sort_values("subreddit_id_new")
|
subreddit_names = subreddit_names.sort_values("subreddit_id_new")
|
||||||
subreddit_names['subreddit_id_new'] = subreddit_names['subreddit_id_new'] - 1
|
return(df, subreddit_names)
|
||||||
spark.stop()
|
|
||||||
return (tempdir, subreddit_names)
|
|
||||||
|
|
||||||
|
def pull_names(batch):
|
||||||
|
return(batch.to_pandas().drop_duplicates())
|
||||||
|
|
||||||
def similarities(infile, simfunc, term_colname, outfile, min_df=None, max_df=None, included_subreddits=None, topN=500, exclude_phrases=False, from_date=None, to_date=None, tfidf_colname='tf_idf'):
|
def similarities(inpath, simfunc, term_colname, outfile, min_df=None, max_df=None, included_subreddits=None, topN=500, from_date=None, to_date=None, tfidf_colname='tf_idf'):
|
||||||
'''
|
'''
|
||||||
tfidf_colname: set to 'relative_tf' to use normalized term frequency instead of tf-idf, which can be useful for author-based similarities.
|
tfidf_colname: set to 'relative_tf' to use normalized term frequency instead of tf-idf, which can be useful for author-based similarities.
|
||||||
'''
|
'''
|
||||||
if from_date is not None or to_date is not None:
|
|
||||||
tempdir, subreddit_names = reindex_tfidf_time_interval(infile, term_colname=term_colname, min_df=min_df, max_df=max_df, included_subreddits=included_subreddits, topN=topN, exclude_phrases=False, from_date=from_date, to_date=to_date)
|
|
||||||
|
|
||||||
else:
|
|
||||||
tempdir, subreddit_names = reindex_tfidf(infile, term_colname=term_colname, min_df=min_df, max_df=max_df, included_subreddits=included_subreddits, topN=topN, exclude_phrases=False)
|
|
||||||
|
|
||||||
print("loading matrix")
|
def proc_sims(sims, outfile):
|
||||||
|
if issparse(sims):
|
||||||
|
sims = sims.todense()
|
||||||
|
|
||||||
|
print(f"shape of sims:{sims.shape}")
|
||||||
|
print(f"len(subreddit_names.subreddit.values):{len(subreddit_names.subreddit.values)}",flush=True)
|
||||||
|
sims = pd.DataFrame(sims)
|
||||||
|
sims = sims.rename({i:sr for i, sr in enumerate(subreddit_names.subreddit.values)}, axis=1)
|
||||||
|
sims['_subreddit'] = subreddit_names.subreddit.values
|
||||||
|
|
||||||
|
p = Path(outfile)
|
||||||
|
|
||||||
|
output_feather = Path(str(p).replace("".join(p.suffixes), ".feather"))
|
||||||
|
output_csv = Path(str(p).replace("".join(p.suffixes), ".csv"))
|
||||||
|
output_parquet = Path(str(p).replace("".join(p.suffixes), ".parquet"))
|
||||||
|
p.parent.mkdir(exist_ok=True, parents=True)
|
||||||
|
|
||||||
|
sims.to_feather(outfile)
|
||||||
|
|
||||||
|
term = term_colname
|
||||||
|
term_id = term + '_id'
|
||||||
|
term_id_new = term + '_id_new'
|
||||||
|
|
||||||
|
entries, subreddit_names = reindex_tfidf(inpath, term_colname=term_colname, min_df=min_df, max_df=max_df, included_subreddits=included_subreddits, topN=topN,from_date=from_date,to_date=to_date)
|
||||||
|
mat = csr_matrix((entries[tfidf_colname],(entries[term_id_new], entries.subreddit_id_new)))
|
||||||
|
|
||||||
|
print("loading matrix")
|
||||||
|
|
||||||
# mat = read_tfidf_matrix("term_tfidf_entries7ejhvnvl.parquet", term_colname)
|
# mat = read_tfidf_matrix("term_tfidf_entries7ejhvnvl.parquet", term_colname)
|
||||||
mat = read_tfidf_matrix(tempdir.name, term_colname, tfidf_colname)
|
|
||||||
print(f'computing similarities on mat. mat.shape:{mat.shape}')
|
print(f'computing similarities on mat. mat.shape:{mat.shape}')
|
||||||
print(f"size of mat is:{mat.data.nbytes}")
|
print(f"size of mat is:{mat.data.nbytes}",flush=True)
|
||||||
sims = simfunc(mat)
|
sims = simfunc(mat)
|
||||||
del mat
|
del mat
|
||||||
|
|
||||||
if issparse(sims):
|
if hasattr(sims,'__next__'):
|
||||||
sims = sims.todense()
|
for simmat, name in sims:
|
||||||
|
proc_sims(simmat, Path(outfile)/(str(name) + ".feather"))
|
||||||
print(f"shape of sims:{sims.shape}")
|
else:
|
||||||
print(f"len(subreddit_names.subreddit.values):{len(subreddit_names.subreddit.values)}")
|
proc_sims(sims, outfile)
|
||||||
sims = pd.DataFrame(sims)
|
|
||||||
sims = sims.rename({i:sr for i, sr in enumerate(subreddit_names.subreddit.values)}, axis=1)
|
|
||||||
sims['subreddit'] = subreddit_names.subreddit.values
|
|
||||||
|
|
||||||
p = Path(outfile)
|
|
||||||
|
|
||||||
output_feather = Path(str(p).replace("".join(p.suffixes), ".feather"))
|
|
||||||
output_csv = Path(str(p).replace("".join(p.suffixes), ".csv"))
|
|
||||||
output_parquet = Path(str(p).replace("".join(p.suffixes), ".parquet"))
|
|
||||||
|
|
||||||
sims.to_feather(outfile)
|
|
||||||
tempdir.cleanup()
|
|
||||||
|
|
||||||
def read_tfidf_matrix_weekly(path, term_colname, week, tfidf_colname='tf_idf'):
|
|
||||||
term = term_colname
|
|
||||||
term_id = term + '_id'
|
|
||||||
term_id_new = term + '_id_new'
|
|
||||||
|
|
||||||
dataset = ds.dataset(path,format='parquet')
|
|
||||||
entries = dataset.to_table(columns=[tfidf_colname,'subreddit_id_new', term_id_new],filter=ds.field('week')==week).to_pandas()
|
|
||||||
return(csr_matrix((entries[tfidf_colname], (entries[term_id_new]-1, entries.subreddit_id_new-1))))
|
|
||||||
|
|
||||||
def read_tfidf_matrix(path, term_colname, tfidf_colname='tf_idf'):
|
|
||||||
term = term_colname
|
|
||||||
term_id = term + '_id'
|
|
||||||
term_id_new = term + '_id_new'
|
|
||||||
dataset = ds.dataset(path,format='parquet')
|
|
||||||
print(f"tfidf_colname:{tfidf_colname}")
|
|
||||||
entries = dataset.to_table(columns=[tfidf_colname, 'subreddit_id_new',term_id_new]).to_pandas()
|
|
||||||
return(csr_matrix((entries[tfidf_colname],(entries[term_id_new]-1, entries.subreddit_id_new-1))))
|
|
||||||
|
|
||||||
|
|
||||||
def write_weekly_similarities(path, sims, week, names):
|
def write_weekly_similarities(path, sims, week, names):
|
||||||
sims['week'] = week
|
sims['week'] = week
|
||||||
p = pathlib.Path(path)
|
p = pathlib.Path(path)
|
||||||
if not p.is_dir():
|
if not p.is_dir():
|
||||||
p.mkdir()
|
p.mkdir(exist_ok=True,parents=True)
|
||||||
|
|
||||||
# reformat as a pairwise list
|
# reformat as a pairwise list
|
||||||
sims = sims.melt(id_vars=['subreddit','week'],value_vars=names.subreddit.values)
|
sims = sims.melt(id_vars=['_subreddit','week'],value_vars=names.subreddit.values)
|
||||||
sims.to_parquet(p / week.isoformat())
|
sims.to_parquet(p / week.isoformat())
|
||||||
|
|
||||||
def column_overlaps(mat):
|
def column_overlaps(mat):
|
||||||
@@ -150,136 +206,76 @@ def column_overlaps(mat):
|
|||||||
|
|
||||||
return intersection / den
|
return intersection / den
|
||||||
|
|
||||||
|
def test_lsi_sims():
|
||||||
|
term = "term"
|
||||||
|
term_id = term + '_id'
|
||||||
|
term_id_new = term + '_id_new'
|
||||||
|
|
||||||
|
t1 = time.perf_counter()
|
||||||
|
entries, subreddit_names = reindex_tfidf("/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms_100k_repartitioned.parquet",
|
||||||
|
term_colname='term',
|
||||||
|
min_df=2000,
|
||||||
|
topN=10000
|
||||||
|
)
|
||||||
|
t2 = time.perf_counter()
|
||||||
|
print(f"first load took:{t2 - t1}s")
|
||||||
|
|
||||||
|
entries, subreddit_names = reindex_tfidf("/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms_100k.parquet",
|
||||||
|
term_colname='term',
|
||||||
|
min_df=2000,
|
||||||
|
topN=10000
|
||||||
|
)
|
||||||
|
t3=time.perf_counter()
|
||||||
|
|
||||||
|
print(f"second load took:{t3 - t2}s")
|
||||||
|
|
||||||
|
mat = csr_matrix((entries['tf_idf'],(entries[term_id_new], entries.subreddit_id_new)))
|
||||||
|
sims = list(lsi_column_similarities(mat, [10,50]))
|
||||||
|
sims_og = sims
|
||||||
|
sims_test = list(lsi_column_similarities(mat,[10,50],algorithm='randomized',n_iter=10))
|
||||||
|
|
||||||
|
# n_components is the latent dimensionality. sklearn recommends 100. More might be better
|
||||||
|
# if n_components is a list we'll return a list of similarities with different latent dimensionalities
|
||||||
|
# if algorithm is 'randomized' instead of 'arpack' then n_iter gives the number of iterations.
|
||||||
|
# this function takes the svd and then the column similarities of it
|
||||||
|
def lsi_column_similarities(tfidfmat,n_components=300,n_iter=10,random_state=1968,algorithm='randomized',lsi_model_save=None,lsi_model_load=None):
|
||||||
|
# first compute the lsi of the matrix
|
||||||
|
# then take the column similarities
|
||||||
|
|
||||||
|
if type(n_components) is int:
|
||||||
|
n_components = [n_components]
|
||||||
|
|
||||||
|
n_components = sorted(n_components,reverse=True)
|
||||||
|
|
||||||
|
svd_components = n_components[0]
|
||||||
|
|
||||||
|
if lsi_model_load is not None and Path(lsi_model_load).exists():
|
||||||
|
print("loading LSI")
|
||||||
|
mod = pickle.load(open(lsi_model_load ,'rb'))
|
||||||
|
lsi_model_save = lsi_model_load
|
||||||
|
|
||||||
|
else:
|
||||||
|
print("running LSI",flush=True)
|
||||||
|
|
||||||
|
svd = TruncatedSVD(n_components=svd_components,random_state=random_state,algorithm=algorithm,n_iter=n_iter)
|
||||||
|
mod = svd.fit(tfidfmat.T)
|
||||||
|
|
||||||
|
lsimat = mod.transform(tfidfmat.T)
|
||||||
|
if lsi_model_save is not None:
|
||||||
|
Path(lsi_model_save).parent.mkdir(exist_ok=True, parents=True)
|
||||||
|
pickle.dump(mod, open(lsi_model_save,'wb'))
|
||||||
|
|
||||||
|
sims_list = []
|
||||||
|
for n_dims in n_components:
|
||||||
|
sims = column_similarities(lsimat[:,np.arange(n_dims)])
|
||||||
|
if len(n_components) > 1:
|
||||||
|
yield (sims, n_dims)
|
||||||
|
else:
|
||||||
|
return sims
|
||||||
|
|
||||||
|
|
||||||
def column_similarities(mat):
|
def column_similarities(mat):
|
||||||
norm = np.matrix(np.power(mat.power(2).sum(axis=0),0.5,dtype=np.float32))
|
return 1 - pairwise_distances(mat,metric='cosine')
|
||||||
mat = mat.multiply(1/norm)
|
|
||||||
sims = mat.T @ mat
|
|
||||||
return(sims)
|
|
||||||
|
|
||||||
|
|
||||||
def prep_tfidf_entries_weekly(tfidf, term_colname, min_df, max_df, included_subreddits):
|
|
||||||
term = term_colname
|
|
||||||
term_id = term + '_id'
|
|
||||||
term_id_new = term + '_id_new'
|
|
||||||
|
|
||||||
if min_df is None:
|
|
||||||
min_df = 0.1 * len(included_subreddits)
|
|
||||||
tfidf = tfidf.filter(f.col('count') >= min_df)
|
|
||||||
if max_df is not None:
|
|
||||||
tfidf = tfidf.filter(f.col('count') <= max_df)
|
|
||||||
|
|
||||||
tfidf = tfidf.filter(f.col("subreddit").isin(included_subreddits))
|
|
||||||
|
|
||||||
# we might not have the same terms or subreddits each week, so we need to make unique ids for each week.
|
|
||||||
sub_ids = tfidf.select(['subreddit_id','week']).distinct()
|
|
||||||
sub_ids = sub_ids.withColumn("subreddit_id_new",f.row_number().over(Window.partitionBy('week').orderBy("subreddit_id")))
|
|
||||||
tfidf = tfidf.join(sub_ids,['subreddit_id','week'])
|
|
||||||
|
|
||||||
# only use terms in at least min_df included subreddits in a given week
|
|
||||||
new_count = tfidf.groupBy([term_id,'week']).agg(f.count(term_id).alias('new_count'))
|
|
||||||
tfidf = tfidf.join(new_count,[term_id,'week'],how='inner')
|
|
||||||
|
|
||||||
# reset the term ids
|
|
||||||
term_ids = tfidf.select([term_id,'week']).distinct()
|
|
||||||
term_ids = term_ids.withColumn(term_id_new,f.row_number().over(Window.partitionBy('week').orderBy(term_id)))
|
|
||||||
tfidf = tfidf.join(term_ids,[term_id,'week'])
|
|
||||||
|
|
||||||
tfidf = tfidf.withColumnRenamed("tf_idf","tf_idf_old")
|
|
||||||
tfidf = tfidf.withColumn("tf_idf", (tfidf.relative_tf * tfidf.idf).cast('float'))
|
|
||||||
|
|
||||||
tempdir =TemporaryDirectory(suffix='.parquet',prefix='term_tfidf_entries',dir='.')
|
|
||||||
|
|
||||||
tfidf = tfidf.repartition('week')
|
|
||||||
|
|
||||||
tfidf.write.parquet(tempdir.name,mode='overwrite',compression='snappy')
|
|
||||||
return(tempdir)
|
|
||||||
|
|
||||||
|
|
||||||
def prep_tfidf_entries(tfidf, term_colname, min_df, max_df, included_subreddits):
|
|
||||||
term = term_colname
|
|
||||||
term_id = term + '_id'
|
|
||||||
term_id_new = term + '_id_new'
|
|
||||||
|
|
||||||
if min_df is None:
|
|
||||||
min_df = 0.1 * len(included_subreddits)
|
|
||||||
tfidf = tfidf.filter(f.col('count') >= min_df)
|
|
||||||
if max_df is not None:
|
|
||||||
tfidf = tfidf.filter(f.col('count') <= max_df)
|
|
||||||
|
|
||||||
tfidf = tfidf.filter(f.col("subreddit").isin(included_subreddits))
|
|
||||||
|
|
||||||
# reset the subreddit ids
|
|
||||||
sub_ids = tfidf.select('subreddit_id').distinct()
|
|
||||||
sub_ids = sub_ids.withColumn("subreddit_id_new", f.row_number().over(Window.orderBy("subreddit_id")))
|
|
||||||
tfidf = tfidf.join(sub_ids,'subreddit_id')
|
|
||||||
|
|
||||||
# only use terms in at least min_df included subreddits
|
|
||||||
new_count = tfidf.groupBy(term_id).agg(f.count(term_id).alias('new_count'))
|
|
||||||
tfidf = tfidf.join(new_count,term_id,how='inner')
|
|
||||||
|
|
||||||
# reset the term ids
|
|
||||||
term_ids = tfidf.select([term_id]).distinct()
|
|
||||||
term_ids = term_ids.withColumn(term_id_new,f.row_number().over(Window.orderBy(term_id)))
|
|
||||||
tfidf = tfidf.join(term_ids,term_id)
|
|
||||||
|
|
||||||
tfidf = tfidf.withColumnRenamed("tf_idf","tf_idf_old")
|
|
||||||
tfidf = tfidf.withColumn("tf_idf", (tfidf.relative_tf * tfidf.idf).cast('float'))
|
|
||||||
|
|
||||||
tempdir =TemporaryDirectory(suffix='.parquet',prefix='term_tfidf_entries',dir='.')
|
|
||||||
|
|
||||||
tfidf.write.parquet(tempdir.name,mode='overwrite',compression='snappy')
|
|
||||||
return tempdir
|
|
||||||
|
|
||||||
|
|
||||||
# try computing cosine similarities using spark
|
|
||||||
def spark_cosine_similarities(tfidf, term_colname, min_df, included_subreddits, similarity_threshold):
|
|
||||||
term = term_colname
|
|
||||||
term_id = term + '_id'
|
|
||||||
term_id_new = term + '_id_new'
|
|
||||||
|
|
||||||
if min_df is None:
|
|
||||||
min_df = 0.1 * len(included_subreddits)
|
|
||||||
|
|
||||||
tfidf = tfidf.filter(f.col("subreddit").isin(included_subreddits))
|
|
||||||
tfidf = tfidf.cache()
|
|
||||||
|
|
||||||
# reset the subreddit ids
|
|
||||||
sub_ids = tfidf.select('subreddit_id').distinct()
|
|
||||||
sub_ids = sub_ids.withColumn("subreddit_id_new",f.row_number().over(Window.orderBy("subreddit_id")))
|
|
||||||
tfidf = tfidf.join(sub_ids,'subreddit_id')
|
|
||||||
|
|
||||||
# only use terms in at least min_df included subreddits
|
|
||||||
new_count = tfidf.groupBy(term_id).agg(f.count(term_id).alias('new_count'))
|
|
||||||
tfidf = tfidf.join(new_count,term_id,how='inner')
|
|
||||||
|
|
||||||
# reset the term ids
|
|
||||||
term_ids = tfidf.select([term_id]).distinct()
|
|
||||||
term_ids = term_ids.withColumn(term_id_new,f.row_number().over(Window.orderBy(term_id)))
|
|
||||||
tfidf = tfidf.join(term_ids,term_id)
|
|
||||||
|
|
||||||
tfidf = tfidf.withColumnRenamed("tf_idf","tf_idf_old")
|
|
||||||
tfidf = tfidf.withColumn("tf_idf", tfidf.relative_tf * tfidf.idf)
|
|
||||||
|
|
||||||
# step 1 make an rdd of entires
|
|
||||||
# sorted by (dense) spark subreddit id
|
|
||||||
n_partitions = int(len(included_subreddits)*2 / 5)
|
|
||||||
|
|
||||||
entries = tfidf.select(f.col(term_id_new)-1,f.col("subreddit_id_new")-1,"tf_idf").rdd.repartition(n_partitions)
|
|
||||||
|
|
||||||
# put like 10 subredis in each partition
|
|
||||||
|
|
||||||
# step 2 make it into a distributed.RowMatrix
|
|
||||||
coordMat = CoordinateMatrix(entries)
|
|
||||||
|
|
||||||
coordMat = CoordinateMatrix(coordMat.entries.repartition(n_partitions))
|
|
||||||
|
|
||||||
# this needs to be an IndexedRowMatrix()
|
|
||||||
mat = coordMat.toRowMatrix()
|
|
||||||
|
|
||||||
#goal: build a matrix of subreddit columns and tf-idfs rows
|
|
||||||
sim_dist = mat.columnSimilarities(threshold=similarity_threshold)
|
|
||||||
|
|
||||||
return (sim_dist, tfidf)
|
|
||||||
|
|
||||||
|
|
||||||
def build_weekly_tfidf_dataset(df, include_subs, term_colname, tf_family=tf_weight.Norm05):
|
def build_weekly_tfidf_dataset(df, include_subs, term_colname, tf_family=tf_weight.Norm05):
|
||||||
@@ -306,20 +302,20 @@ def build_weekly_tfidf_dataset(df, include_subs, term_colname, tf_family=tf_weig
|
|||||||
idf = idf.withColumn('idf',f.log(idf.subreddits_in_week) / (1+f.col('count'))+1)
|
idf = idf.withColumn('idf',f.log(idf.subreddits_in_week) / (1+f.col('count'))+1)
|
||||||
|
|
||||||
# collect the dictionary to make a pydict of terms to indexes
|
# collect the dictionary to make a pydict of terms to indexes
|
||||||
terms = idf.select([term,'week']).distinct() # terms are distinct
|
terms = idf.select([term]).distinct() # terms are distinct
|
||||||
|
|
||||||
terms = terms.withColumn(term_id,f.row_number().over(Window.partitionBy('week').orderBy(term))) # term ids are distinct
|
terms = terms.withColumn(term_id,f.row_number().over(Window.orderBy(term))) # term ids are distinct
|
||||||
|
|
||||||
# make subreddit ids
|
# make subreddit ids
|
||||||
subreddits = df.select(['subreddit','week']).distinct()
|
subreddits = df.select(['subreddit']).distinct()
|
||||||
subreddits = subreddits.withColumn('subreddit_id',f.row_number().over(Window.partitionBy("week").orderBy("subreddit")))
|
subreddits = subreddits.withColumn('subreddit_id',f.row_number().over(Window.orderBy("subreddit")))
|
||||||
|
|
||||||
df = df.join(subreddits,on=['subreddit','week'])
|
df = df.join(subreddits,on=['subreddit'])
|
||||||
|
|
||||||
# map terms to indexes in the tfs and the idfs
|
# map terms to indexes in the tfs and the idfs
|
||||||
df = df.join(terms,on=[term,'week']) # subreddit-term-id is unique
|
df = df.join(terms,on=[term]) # subreddit-term-id is unique
|
||||||
|
|
||||||
idf = idf.join(terms,on=[term,'week'])
|
idf = idf.join(terms,on=[term])
|
||||||
|
|
||||||
# join on subreddit/term to create tf/dfs indexed by term
|
# join on subreddit/term to create tf/dfs indexed by term
|
||||||
df = df.join(idf, on=[term_id, term,'week'])
|
df = df.join(idf, on=[term_id, term,'week'])
|
||||||
@@ -331,7 +327,9 @@ def build_weekly_tfidf_dataset(df, include_subs, term_colname, tf_family=tf_weig
|
|||||||
else: # tf_fam = tf_weight.Norm05
|
else: # tf_fam = tf_weight.Norm05
|
||||||
df = df.withColumn("tf_idf", (0.5 + 0.5 * df.relative_tf) * df.idf)
|
df = df.withColumn("tf_idf", (0.5 + 0.5 * df.relative_tf) * df.idf)
|
||||||
|
|
||||||
return df
|
df = df.repartition(400,'subreddit','week')
|
||||||
|
dfwriter = df.write.partitionBy("week")
|
||||||
|
return dfwriter
|
||||||
|
|
||||||
def _calc_tfidf(df, term_colname, tf_family):
|
def _calc_tfidf(df, term_colname, tf_family):
|
||||||
term = term_colname
|
term = term_colname
|
||||||
@@ -342,7 +340,7 @@ def _calc_tfidf(df, term_colname, tf_family):
|
|||||||
|
|
||||||
df = df.join(max_subreddit_terms, on='subreddit')
|
df = df.join(max_subreddit_terms, on='subreddit')
|
||||||
|
|
||||||
df = df.withColumn("relative_tf", df.tf / df.sr_max_tf)
|
df = df.withColumn("relative_tf", (df.tf / df.sr_max_tf))
|
||||||
|
|
||||||
# group by term. term is unique
|
# group by term. term is unique
|
||||||
idf = df.groupby([term]).count()
|
idf = df.groupby([term]).count()
|
||||||
@@ -377,7 +375,7 @@ def _calc_tfidf(df, term_colname, tf_family):
|
|||||||
return df
|
return df
|
||||||
|
|
||||||
|
|
||||||
def build_tfidf_dataset(df, include_subs, term_colname, tf_family=tf_weight.Norm05):
|
def tfidf_dataset(df, include_subs, term_colname, tf_family=tf_weight.Norm05):
|
||||||
term = term_colname
|
term = term_colname
|
||||||
term_id = term + '_id'
|
term_id = term + '_id'
|
||||||
# aggregate counts by week. now subreddit-term is distinct
|
# aggregate counts by week. now subreddit-term is distinct
|
||||||
@@ -385,10 +383,28 @@ def build_tfidf_dataset(df, include_subs, term_colname, tf_family=tf_weight.Norm
|
|||||||
df = df.groupBy(['subreddit',term]).agg(f.sum('tf').alias('tf'))
|
df = df.groupBy(['subreddit',term]).agg(f.sum('tf').alias('tf'))
|
||||||
|
|
||||||
df = _calc_tfidf(df, term_colname, tf_family)
|
df = _calc_tfidf(df, term_colname, tf_family)
|
||||||
|
df = df.repartition('subreddit')
|
||||||
return df
|
dfwriter = df.write
|
||||||
|
return dfwriter
|
||||||
|
|
||||||
def select_topN_subreddits(topN, path="/gscratch/comdata/output/reddit_similarity/subreddits_by_num_comments_nonsfw.csv"):
|
def select_topN_subreddits(topN, path="/gscratch/comdata/output/reddit_similarity/subreddits_by_num_comments_nonsfw.csv"):
|
||||||
rankdf = pd.read_csv(path)
|
rankdf = pd.read_csv(path)
|
||||||
included_subreddits = set(rankdf.loc[rankdf.comments_rank <= topN,'subreddit'].values)
|
included_subreddits = set(rankdf.loc[rankdf.comments_rank <= topN,'subreddit'].values)
|
||||||
return included_subreddits
|
return included_subreddits
|
||||||
|
|
||||||
|
|
||||||
|
def repartition_tfidf(inpath="/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms_100k.parquet",
|
||||||
|
outpath="/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms_100k_repartitioned.parquet"):
|
||||||
|
spark = SparkSession.builder.getOrCreate()
|
||||||
|
df = spark.read.parquet(inpath)
|
||||||
|
df = df.repartition(400,'subreddit')
|
||||||
|
df.write.parquet(outpath,mode='overwrite')
|
||||||
|
|
||||||
|
|
||||||
|
def repartition_tfidf_weekly(inpath="/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_terms.parquet",
|
||||||
|
outpath="/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms_repartitioned.parquet"):
|
||||||
|
spark = SparkSession.builder.getOrCreate()
|
||||||
|
df = spark.read.parquet(inpath)
|
||||||
|
df = df.repartition(400,'subreddit','week')
|
||||||
|
dfwriter = df.write.partitionBy("week")
|
||||||
|
dfwriter.parquet(outpath,mode='overwrite')
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
import fire
|
import fire
|
||||||
from pyspark.sql import SparkSession
|
from pyspark.sql import SparkSession
|
||||||
from pyspark.sql import functions as f
|
from pyspark.sql import functions as f
|
||||||
from similarities_helper import build_tfidf_dataset, build_weekly_tfidf_dataset, select_topN_subreddits
|
from similarities_helper import tfidf_dataset, build_weekly_tfidf_dataset, select_topN_subreddits
|
||||||
|
from functools import partial
|
||||||
|
|
||||||
def _tfidf_wrapper(func, inpath, outpath, topN, term_colname, exclude, included_subreddits):
|
inpath = '/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/tfidf/comment_authors_compex.parquet'
|
||||||
|
# include_terms is a path to a parquet file that contains a column of term_colname + '_id' to include.
|
||||||
|
def _tfidf_wrapper(func, inpath, outpath, topN, term_colname, exclude, included_subreddits, included_terms=None, min_df=None, max_df=None):
|
||||||
spark = SparkSession.builder.getOrCreate()
|
spark = SparkSession.builder.getOrCreate()
|
||||||
|
|
||||||
df = spark.read.parquet(inpath)
|
df = spark.read.parquet(inpath)
|
||||||
@@ -11,65 +14,91 @@ def _tfidf_wrapper(func, inpath, outpath, topN, term_colname, exclude, included_
|
|||||||
df = df.filter(~ f.col(term_colname).isin(exclude))
|
df = df.filter(~ f.col(term_colname).isin(exclude))
|
||||||
|
|
||||||
if included_subreddits is not None:
|
if included_subreddits is not None:
|
||||||
include_subs = set(map(str.strip,map(str.lower, open(included_subreddits))))
|
include_subs = set(map(str.strip,open(included_subreddits)))
|
||||||
else:
|
else:
|
||||||
include_subs = select_topN_subreddits(topN)
|
include_subs = select_topN_subreddits(topN)
|
||||||
|
|
||||||
df = func(df, include_subs, term_colname)
|
include_subs = spark.sparkContext.broadcast(include_subs)
|
||||||
|
|
||||||
df.write.parquet(outpath,mode='overwrite',compression='snappy')
|
# term_id = term_colname + "_id"
|
||||||
|
|
||||||
|
if included_terms is not None:
|
||||||
|
terms_df = spark.read.parquet(included_terms)
|
||||||
|
terms_df = terms_df.select(term_colname).distinct()
|
||||||
|
df = df.join(terms_df, on=term_colname, how='left_semi')
|
||||||
|
|
||||||
|
dfwriter = func(df, include_subs.value, term_colname)
|
||||||
|
|
||||||
|
dfwriter.parquet(outpath,mode='overwrite',compression='snappy')
|
||||||
spark.stop()
|
spark.stop()
|
||||||
|
|
||||||
def tfidf(inpath, outpath, topN, term_colname, exclude, included_subreddits):
|
def tfidf(inpath, outpath, topN, term_colname, exclude, included_subreddits, min_df, max_df):
|
||||||
return _tfidf_wrapper(build_tfidf_dataset, inpath, outpath, topN, term_colname, exclude, included_subreddits)
|
tfidf_func = partial(tfidf_dataset, max_df=max_df, min_df=min_df)
|
||||||
|
return _tfidf_wrapper(tfidf_func, inpath, outpath, topN, term_colname, exclude, included_subreddits)
|
||||||
|
|
||||||
def tfidf_weekly(inpath, outpath, topN, term_colname, exclude, included_subreddits):
|
def tfidf_weekly(inpath, outpath, static_tfidf_path, topN, term_colname, exclude, included_subreddits):
|
||||||
return _tfidf_wrapper(build_weekly_tfidf_dataset, inpath, outpath, topN, term_colname, exclude, included_subreddits)
|
return _tfidf_wrapper(build_weekly_tfidf_dataset, inpath, outpath, topN, term_colname, exclude, included_subreddits, included_terms=static_tfidf_path)
|
||||||
|
|
||||||
def tfidf_authors(outpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet',
|
|
||||||
topN=25000,
|
|
||||||
included_subreddits=None):
|
|
||||||
|
|
||||||
return tfidf("/gscratch/comdata/output/reddit_ngrams/comment_authors.parquet",
|
def tfidf_authors(inpath="/gscratch/comdata/output/reddit_ngrams/comment_authors.parquet",
|
||||||
|
outpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet',
|
||||||
|
topN=None,
|
||||||
|
included_subreddits=None,
|
||||||
|
min_df=None,
|
||||||
|
max_df=None):
|
||||||
|
|
||||||
|
return tfidf(inpath,
|
||||||
outpath,
|
outpath,
|
||||||
topN,
|
topN,
|
||||||
'author',
|
'author',
|
||||||
['[deleted]','AutoModerator'],
|
['[deleted]','AutoModerator'],
|
||||||
included_subreddits=included_subreddits
|
included_subreddits=included_subreddits,
|
||||||
|
min_df=min_df,
|
||||||
|
max_df=max_df
|
||||||
)
|
)
|
||||||
|
|
||||||
def tfidf_terms(outpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms.parquet',
|
def tfidf_terms(inpath="/gscratch/comdata/output/reddit_ngrams/comment_terms.parquet",
|
||||||
topN=25000,
|
outpath='/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms.parquet',
|
||||||
included_subreddits=None):
|
topN=None,
|
||||||
|
included_subreddits=None,
|
||||||
|
min_df=None,
|
||||||
|
max_df=None):
|
||||||
|
|
||||||
return tfidf("/gscratch/comdata/output/reddit_ngrams/comment_terms.parquet",
|
return tfidf(inpath,
|
||||||
outpath,
|
outpath,
|
||||||
topN,
|
topN,
|
||||||
'term',
|
'term',
|
||||||
[],
|
[],
|
||||||
included_subreddits=included_subreddits
|
included_subreddits=included_subreddits,
|
||||||
|
min_df=min_df,
|
||||||
|
max_df=max_df
|
||||||
)
|
)
|
||||||
|
|
||||||
def tfidf_authors_weekly(outpath='/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_authors.parquet',
|
def tfidf_authors_weekly(inpath="/gscratch/comdata/output/reddit_ngrams/comment_authors.parquet",
|
||||||
topN=25000,
|
static_tfidf_path="/gscratch/comdata/output/reddit_similarity/tfidf/comment_authors.parquet",
|
||||||
|
outpath='/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_authors.parquet',
|
||||||
|
topN=None,
|
||||||
included_subreddits=None):
|
included_subreddits=None):
|
||||||
|
|
||||||
return tfidf_weekly("/gscratch/comdata/output/reddit_ngrams/comment_authors.parquet",
|
return tfidf_weekly(inpath,
|
||||||
outpath,
|
outpath,
|
||||||
|
static_tfidf_path,
|
||||||
topN,
|
topN,
|
||||||
'author',
|
'author',
|
||||||
['[deleted]','AutoModerator'],
|
['[deleted]','AutoModerator'],
|
||||||
included_subreddits=included_subreddits
|
included_subreddits=included_subreddits
|
||||||
)
|
)
|
||||||
|
|
||||||
def tfidf_terms_weekly(outpath='/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_terms.parquet',
|
def tfidf_terms_weekly(inpath="/gscratch/comdata/output/reddit_ngrams/comment_terms.parquet",
|
||||||
topN=25000,
|
static_tfidf_path="/gscratch/comdata/output/reddit_similarity/tfidf/comment_terms.parquet",
|
||||||
|
outpath='/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_terms.parquet',
|
||||||
|
topN=None,
|
||||||
included_subreddits=None):
|
included_subreddits=None):
|
||||||
|
|
||||||
|
|
||||||
return tfidf_weekly("/gscratch/comdata/output/reddit_ngrams/comment_terms.parquet",
|
return tfidf_weekly(inpath,
|
||||||
outpath,
|
outpath,
|
||||||
|
static_tfidf_path,
|
||||||
topN,
|
topN,
|
||||||
'term',
|
'term',
|
||||||
[],
|
[],
|
||||||
|
|||||||
@@ -26,4 +26,4 @@ df = df.toPandas()
|
|||||||
|
|
||||||
df = df.sort_values("n_comments")
|
df = df.sort_values("n_comments")
|
||||||
|
|
||||||
df.to_csv('/gscratch/comdata/output/reddit_similarity/subreddits_by_num_comments.csv', index=False)
|
df.to_csv('/gscratch/scrubbed/comdata/reddit_similarity/subreddits_by_num_comments_nonsfw.csv', index=False)
|
||||||
|
|||||||
174
similarities/weekly_cosine_similarities.py
Normal file → Executable file
174
similarities/weekly_cosine_similarities.py
Normal file → Executable file
@@ -1,81 +1,149 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
from pyspark.sql import functions as f
|
from pyspark.sql import functions as f
|
||||||
from pyspark.sql import SparkSession
|
from pyspark.sql import SparkSession
|
||||||
from pyspark.sql import Window
|
from pyspark.sql import Window
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import pyarrow
|
import pyarrow
|
||||||
|
import pyarrow.dataset as ds
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import fire
|
import fire
|
||||||
from itertools import islice
|
from itertools import islice, chain
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from similarities_helper import *
|
from similarities_helper import pull_tfidf, column_similarities, write_weekly_similarities, lsi_column_similarities
|
||||||
|
from scipy.sparse import csr_matrix
|
||||||
from multiprocessing import Pool, cpu_count
|
from multiprocessing import Pool, cpu_count
|
||||||
|
from functools import partial
|
||||||
|
import pickle
|
||||||
|
|
||||||
def _week_similarities(tempdir, term_colname, week):
|
# tfidf_path = "/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/similarity_weekly/comment_authors_tfidf.parquet"
|
||||||
print(f"loading matrix: {week}")
|
# #tfidf_path = "/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data//comment_authors_compex.parquet"
|
||||||
mat = read_tfidf_matrix_weekly(tempdir.name, term_colname, week)
|
# min_df=2
|
||||||
print('computing similarities')
|
# included_subreddits="/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/included_subreddits.txt"
|
||||||
sims = column_similarities(mat)
|
# max_df = None
|
||||||
del mat
|
# topN=100
|
||||||
|
# term_colname='author'
|
||||||
|
# # outfile = '/gscratch/comdata/output/reddit_similarity/weekly/comment_authors_test.parquet'
|
||||||
|
# # included_subreddits=None
|
||||||
|
outfile="/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/similarity_weekly/comment_authors.parquet"; infile="/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/tfidf_weekly/comment_authors_tfidf.parquet"; included_subreddits="/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/included_subreddits.txt"; lsi_model="/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/similarity/comment_authors_compex_LSI/2000_authors_LSIMOD.pkl"; n_components=1500; algorithm="randomized"; term_colname='author'; tfidf_path=infile; random_state=1968;
|
||||||
|
|
||||||
names = subreddit_names.loc[subreddit_names.week == week]
|
# static_tfidf = "/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/tfidf/comment_authors_compex.parquet"
|
||||||
sims = pd.DataFrame(sims.todense())
|
# dftest = spark.read.parquet(static_tfidf)
|
||||||
|
|
||||||
sims = sims.rename({i: sr for i, sr in enumerate(names.subreddit.values)}, axis=1)
|
def _week_similarities(week, simfunc, tfidf_path, term_colname, included_subreddits, outdir:Path, subreddit_names, nterms, topN=None, min_df=None, max_df=None):
|
||||||
sims['_subreddit'] = names.subreddit.values
|
term = term_colname
|
||||||
|
term_id = term + '_id'
|
||||||
|
term_id_new = term + '_id_new'
|
||||||
|
print(f"loading matrix: {week}")
|
||||||
|
|
||||||
write_weekly_similarities(outfile, sims, week, names)
|
entries = pull_tfidf(infile = tfidf_path,
|
||||||
|
term_colname=term_colname,
|
||||||
|
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]))
|
||||||
|
print('computing similarities')
|
||||||
|
print(simfunc)
|
||||||
|
sims = simfunc(mat)
|
||||||
|
del mat
|
||||||
|
sims = next(sims)[0]
|
||||||
|
sims = pd.DataFrame(sims)
|
||||||
|
sims = sims.rename({i: sr for i, sr in enumerate(subreddit_names.subreddit.values)}, axis=1)
|
||||||
|
sims['_subreddit'] = subreddit_names.subreddit.values
|
||||||
|
outfile = str(Path(outdir) / str(week))
|
||||||
|
write_weekly_similarities(outfile, sims, week, subreddit_names)
|
||||||
|
|
||||||
|
def pull_weeks(batch):
|
||||||
|
return set(batch.to_pandas()['week'])
|
||||||
|
|
||||||
|
# This requires a prefit LSI model, since we shouldn't fit different LSI models for every week.
|
||||||
|
def cosine_similarities_weekly_lsi(*args, n_components=100, lsi_model=None, **kwargs):
|
||||||
|
print(args)
|
||||||
|
print(kwargs)
|
||||||
|
term_colname= kwargs.get('term_colname')
|
||||||
|
# lsi_model = "/gscratch/comdata/users/nathante/competitive_exclusion_reddit/data/similarity/comment_authors_compex_LSI/1000_author_LSIMOD.pkl"
|
||||||
|
|
||||||
|
lsi_model = pickle.load(open(lsi_model,'rb'))
|
||||||
|
#simfunc = partial(lsi_column_similarities,n_components=n_components,random_state=random_state,algorithm='randomized',lsi_model=lsi_model)
|
||||||
|
simfunc = partial(lsi_column_similarities,n_components=n_components,random_state=kwargs.get('random_state'),lsi_model=lsi_model)
|
||||||
|
|
||||||
|
return cosine_similarities_weekly(*args, simfunc=simfunc, **kwargs)
|
||||||
|
|
||||||
#tfidf = spark.read.parquet('/gscratch/comdata/users/nathante/subreddit_tfidf_weekly.parquet')
|
#tfidf = spark.read.parquet('/gscratch/comdata/users/nathante/subreddit_tfidf_weekly.parquet')
|
||||||
def cosine_similarities_weekly(tfidf_path, outfile, term_colname, min_df = None, included_subreddits = None, topN = 500):
|
def cosine_similarities_weekly(tfidf_path, outfile, term_colname, included_subreddits = None, topN = None, simfunc=column_similarities, min_df=None,max_df=None):
|
||||||
spark = SparkSession.builder.getOrCreate()
|
|
||||||
conf = spark.sparkContext.getConf()
|
|
||||||
print(outfile)
|
print(outfile)
|
||||||
tfidf = spark.read.parquet(tfidf_path)
|
|
||||||
|
|
||||||
if included_subreddits is None:
|
|
||||||
included_subreddits = select_topN_subreddits(topN)
|
|
||||||
else:
|
|
||||||
included_subreddits = set(open(included_subreddits))
|
|
||||||
|
|
||||||
print(f"computing weekly similarities for {len(included_subreddits)} subreddits")
|
|
||||||
|
|
||||||
print("creating temporary parquet with matrix indicies")
|
|
||||||
tempdir = prep_tfidf_entries_weekly(tfidf, term_colname, min_df, max_df=None, included_subreddits=included_subreddits)
|
|
||||||
|
|
||||||
tfidf = spark.read.parquet(tempdir.name)
|
|
||||||
|
|
||||||
# the ids can change each week.
|
|
||||||
subreddit_names = tfidf.select(['subreddit','subreddit_id_new','week']).distinct().toPandas()
|
|
||||||
subreddit_names = subreddit_names.sort_values("subreddit_id_new")
|
|
||||||
subreddit_names['subreddit_id_new'] = subreddit_names['subreddit_id_new'] - 1
|
|
||||||
spark.stop()
|
|
||||||
|
|
||||||
weeks = sorted(list(subreddit_names.week.drop_duplicates()))
|
|
||||||
# do this step in parallel if we have the memory for it.
|
# do this step in parallel if we have the memory for it.
|
||||||
# should be doable with pool.map
|
# should be doable with pool.map
|
||||||
|
|
||||||
def week_similarities_helper(week):
|
spark = SparkSession.builder.getOrCreate()
|
||||||
_week_similarities(tempdir, term_colname, week)
|
df = spark.read.parquet(tfidf_path)
|
||||||
|
|
||||||
with Pool(cpu_count()) as pool: # maybe it can be done with 40 cores on the huge machine?
|
# load subreddits + topN
|
||||||
list(pool.map(week_similarities_helper,weeks))
|
|
||||||
|
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()
|
||||||
|
|
||||||
def author_cosine_similarities_weekly(outfile, min_df=2 , included_subreddits=None, topN=500):
|
print(f"computing weekly similarities")
|
||||||
return cosine_similarities_weekly('/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_authors.parquet',
|
week_similarities_helper = partial(_week_similarities,simfunc=simfunc, tfidf_path=tfidf_path, term_colname=term_colname, outdir=outfile, min_df=min_df, max_df=max_df, included_subreddits=included_subreddits, topN=None, subreddit_names=subreddit_names,nterms=nterms)
|
||||||
|
|
||||||
|
for week in weeks:
|
||||||
|
week_similarities_helper(week)
|
||||||
|
# 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?
|
||||||
|
|
||||||
|
|
||||||
|
def author_cosine_similarities_weekly(outfile, infile='/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_authors_test.parquet', min_df=2, max_df=None, included_subreddits=None, topN=500):
|
||||||
|
return cosine_similarities_weekly(infile,
|
||||||
outfile,
|
outfile,
|
||||||
'author',
|
'author',
|
||||||
min_df,
|
max_df,
|
||||||
included_subreddits,
|
included_subreddits,
|
||||||
topN)
|
topN,
|
||||||
|
min_df=2
|
||||||
|
)
|
||||||
|
|
||||||
def term_cosine_similarities_weekly(outfile, min_df=None, included_subreddits=None, topN=500):
|
def term_cosine_similarities_weekly(outfile, infile='/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_terms.parquet', min_df=None, max_df=None, included_subreddits=None, topN=None):
|
||||||
return cosine_similarities_weekly('/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_terms.parquet',
|
return cosine_similarities_weekly(infile,
|
||||||
outfile,
|
outfile,
|
||||||
'term',
|
'term',
|
||||||
min_df,
|
min_df,
|
||||||
included_subreddits,
|
max_df,
|
||||||
topN)
|
included_subreddits,
|
||||||
|
topN)
|
||||||
|
|
||||||
|
|
||||||
|
def author_cosine_similarities_weekly_lsi(outfile, infile = '/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_authors_test.parquet', included_subreddits=None, n_components=100,lsi_model=None):
|
||||||
|
return cosine_similarities_weekly_lsi(infile,
|
||||||
|
outfile,
|
||||||
|
'author',
|
||||||
|
included_subreddits=included_subreddits,
|
||||||
|
n_components=n_components,
|
||||||
|
lsi_model=lsi_model
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def term_cosine_similarities_weekly_lsi(outfile, infile = '/gscratch/comdata/output/reddit_similarity/tfidf_weekly/comment_terms.parquet', included_subreddits=None, n_components=100,lsi_model=None):
|
||||||
|
return cosine_similarities_weekly_lsi(infile,
|
||||||
|
outfile,
|
||||||
|
'term',
|
||||||
|
included_subreddits=included_subreddits,
|
||||||
|
n_components=n_components,
|
||||||
|
lsi_model=lsi_model,
|
||||||
|
)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
fire.Fire({'authors':author_cosine_similarities_weekly,
|
fire.Fire({'authors':author_cosine_similarities_weekly,
|
||||||
'terms':term_cosine_similarities_weekly})
|
'terms':term_cosine_similarities_weekly,
|
||||||
|
'authors-lsi':author_cosine_similarities_weekly_lsi,
|
||||||
|
'terms-lsi':term_cosine_similarities_weekly_lsi
|
||||||
|
})
|
||||||
|
|
||||||
|
|||||||
2
timeseries/__init__.py
Normal file
2
timeseries/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
from .choose_clusters import load_clusters, load_densities
|
||||||
|
from .cluster_timeseries import build_cluster_timeseries
|
||||||
@@ -2,20 +2,16 @@ import pandas as pd
|
|||||||
import numpy as np
|
import numpy as np
|
||||||
from pyspark.sql import functions as f
|
from pyspark.sql import functions as f
|
||||||
from pyspark.sql import SparkSession
|
from pyspark.sql import SparkSession
|
||||||
from choose_clusters import load_clusters, load_densities
|
from .choose_clusters import load_clusters, load_densities
|
||||||
import fire
|
import fire
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
def main(term_clusters_path="/gscratch/comdata/output/reddit_clustering/comment_terms_10000.feather",
|
def build_cluster_timeseries(term_clusters_path="/gscratch/comdata/output/reddit_clustering/comment_terms_10000.feather",
|
||||||
author_clusters_path="/gscratch/comdata/output/reddit_clustering/comment_authors_10000.feather",
|
author_clusters_path="/gscratch/comdata/output/reddit_clustering/comment_authors_10000.feather",
|
||||||
term_densities_path="/gscratch/comdata/output/reddit_density/comment_terms_10000.feather",
|
term_densities_path="/gscratch/comdata/output/reddit_density/comment_terms_10000.feather",
|
||||||
author_densities_path="/gscratch/comdata/output/reddit_density/comment_authors_10000.feather",
|
author_densities_path="/gscratch/comdata/output/reddit_density/comment_authors_10000.feather",
|
||||||
output="data/subreddit_timeseries.parquet"):
|
output="data/subreddit_timeseries.parquet"):
|
||||||
|
|
||||||
|
|
||||||
clusters = load_clusters(term_clusters_path, author_clusters_path)
|
|
||||||
densities = load_densities(term_densities_path, author_densities_path)
|
|
||||||
|
|
||||||
spark = SparkSession.builder.getOrCreate()
|
spark = SparkSession.builder.getOrCreate()
|
||||||
|
|
||||||
df = spark.read.parquet("/gscratch/comdata/output/reddit_comments_by_subreddit.parquet")
|
df = spark.read.parquet("/gscratch/comdata/output/reddit_comments_by_subreddit.parquet")
|
||||||
@@ -26,12 +22,16 @@ def main(term_clusters_path="/gscratch/comdata/output/reddit_clustering/comment_
|
|||||||
ts = df.select(['subreddit','week','author']).distinct().groupby(['subreddit','week']).count()
|
ts = df.select(['subreddit','week','author']).distinct().groupby(['subreddit','week']).count()
|
||||||
|
|
||||||
ts = ts.repartition('subreddit')
|
ts = ts.repartition('subreddit')
|
||||||
spk_clusters = spark.createDataFrame(clusters)
|
|
||||||
|
if term_densities_path is not None and author_densities_path is not None:
|
||||||
|
densities = load_densities(term_densities_path, author_densities_path)
|
||||||
|
spk_densities = spark.createDataFrame(densities)
|
||||||
|
ts = ts.join(spk_densities, on='subreddit', how='inner')
|
||||||
|
|
||||||
|
clusters = load_clusters(term_clusters_path, author_clusters_path)
|
||||||
|
spk_clusters = spark.createDataFrame(clusters)
|
||||||
ts = ts.join(spk_clusters, on='subreddit', how='inner')
|
ts = ts.join(spk_clusters, on='subreddit', how='inner')
|
||||||
spk_densities = spark.createDataFrame(densities)
|
|
||||||
ts = ts.join(spk_densities, on='subreddit', how='inner')
|
|
||||||
ts.write.parquet(output, mode='overwrite')
|
ts.write.parquet(output, mode='overwrite')
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
fire.Fire(main)
|
fire.Fire(build_cluster_timeseries)
|
||||||
|
|||||||
@@ -22,8 +22,12 @@ def base_plot(plot_data):
|
|||||||
#
|
#
|
||||||
# subreddit_select = alt.selection_single(on='click',fields=['subreddit'],bind=subreddit_dropdown,name='subreddit_click')
|
# subreddit_select = alt.selection_single(on='click',fields=['subreddit'],bind=subreddit_dropdown,name='subreddit_click')
|
||||||
|
|
||||||
|
base_scale = alt.Scale(scheme={"name":'category10',
|
||||||
|
"extent":[0,100],
|
||||||
|
"count":10})
|
||||||
|
|
||||||
color = alt.condition(cluster_click_select ,
|
color = alt.condition(cluster_click_select ,
|
||||||
alt.Color(field='color',type='nominal',scale=alt.Scale(scheme='category10')),
|
alt.Color(field='color',type='nominal',scale=base_scale),
|
||||||
alt.value("lightgray"))
|
alt.value("lightgray"))
|
||||||
|
|
||||||
|
|
||||||
@@ -84,6 +88,11 @@ def viewport_plot(plot_data):
|
|||||||
return chart
|
return chart
|
||||||
|
|
||||||
def assign_cluster_colors(tsne_data, clusters, n_colors, n_neighbors = 4):
|
def assign_cluster_colors(tsne_data, clusters, n_colors, n_neighbors = 4):
|
||||||
|
isolate_color = 101
|
||||||
|
|
||||||
|
cluster_sizes = clusters.groupby('cluster').count()
|
||||||
|
singletons = set(cluster_sizes.loc[cluster_sizes.subreddit == 1].reset_index().cluster)
|
||||||
|
|
||||||
tsne_data = tsne_data.merge(clusters,on='subreddit')
|
tsne_data = tsne_data.merge(clusters,on='subreddit')
|
||||||
|
|
||||||
centroids = tsne_data.groupby('cluster').agg({'x':np.mean,'y':np.mean})
|
centroids = tsne_data.groupby('cluster').agg({'x':np.mean,'y':np.mean})
|
||||||
@@ -120,15 +129,17 @@ def assign_cluster_colors(tsne_data, clusters, n_colors, n_neighbors = 4):
|
|||||||
color_assignments = np.repeat(-1,len(centroids))
|
color_assignments = np.repeat(-1,len(centroids))
|
||||||
|
|
||||||
for i in range(len(centroids)):
|
for i in range(len(centroids)):
|
||||||
knn = indices[i]
|
if (centroids.iloc[i].name == -1) or (i in singletons):
|
||||||
knn_colors = color_assignments[knn]
|
color_assignments[i] = isolate_color
|
||||||
available_colors = color_ids[list(set(color_ids) - set(knn_colors))]
|
|
||||||
|
|
||||||
if(len(available_colors) > 0):
|
|
||||||
color_assignments[i] = available_colors[0]
|
|
||||||
else:
|
else:
|
||||||
raise Exception("Can't color this many neighbors with this many colors")
|
knn = indices[i]
|
||||||
|
knn_colors = color_assignments[knn]
|
||||||
|
available_colors = color_ids[list(set(color_ids) - set(knn_colors))]
|
||||||
|
|
||||||
|
if(len(available_colors) > 0):
|
||||||
|
color_assignments[i] = available_colors[0]
|
||||||
|
else:
|
||||||
|
raise Exception("Can't color this many neighbors with this many colors")
|
||||||
|
|
||||||
centroids = centroids.reset_index()
|
centroids = centroids.reset_index()
|
||||||
colors = centroids.loc[:,['cluster']]
|
colors = centroids.loc[:,['cluster']]
|
||||||
@@ -143,12 +154,13 @@ def build_visualization(tsne_data, clusters, output):
|
|||||||
# clusters = "/gscratch/comdata/output/reddit_clustering/subreddit_author_tf_similarities_10000.feather"
|
# clusters = "/gscratch/comdata/output/reddit_clustering/subreddit_author_tf_similarities_10000.feather"
|
||||||
|
|
||||||
tsne_data = pd.read_feather(tsne_data)
|
tsne_data = pd.read_feather(tsne_data)
|
||||||
|
tsne_data = tsne_data.rename(columns={'_subreddit':'subreddit'})
|
||||||
clusters = pd.read_feather(clusters)
|
clusters = pd.read_feather(clusters)
|
||||||
|
|
||||||
tsne_data = assign_cluster_colors(tsne_data,clusters,10,8)
|
tsne_data = assign_cluster_colors(tsne_data,clusters,10,8)
|
||||||
|
|
||||||
# sr_per_cluster = tsne_data.groupby('cluster').subreddit.count().reset_index()
|
sr_per_cluster = tsne_data.groupby('cluster').subreddit.count().reset_index()
|
||||||
# sr_per_cluster = sr_per_cluster.rename(columns={'subreddit':'cluster_size'})
|
sr_per_cluster = sr_per_cluster.rename(columns={'subreddit':'cluster_size'})
|
||||||
|
|
||||||
tsne_data = tsne_data.merge(sr_per_cluster,on='cluster')
|
tsne_data = tsne_data.merge(sr_per_cluster,on='cluster')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user