├── .gitignore ├── README.md ├── construct_ent_attributes.py ├── create_reddit_graph.py ├── eval_movielens.py ├── eval_reddit.py ├── main_movielens.py ├── main_reddit.py ├── model.py ├── multi_proc_test.py ├── paper_trans_e.py ├── parse.py ├── parse_reddit_json.py ├── plot.py ├── preprocess_movie_lens.py ├── tensorboard_logger.py ├── train_reddit.py ├── transD_FB.py ├── transD_movielens.py ├── trans_d.py ├── trans_e.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/README.md -------------------------------------------------------------------------------- /construct_ent_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/construct_ent_attributes.py -------------------------------------------------------------------------------- /create_reddit_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/create_reddit_graph.py -------------------------------------------------------------------------------- /eval_movielens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/eval_movielens.py -------------------------------------------------------------------------------- /eval_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/eval_reddit.py -------------------------------------------------------------------------------- /main_movielens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/main_movielens.py -------------------------------------------------------------------------------- /main_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/main_reddit.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/model.py -------------------------------------------------------------------------------- /multi_proc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/multi_proc_test.py -------------------------------------------------------------------------------- /paper_trans_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/paper_trans_e.py -------------------------------------------------------------------------------- /parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/parse.py -------------------------------------------------------------------------------- /parse_reddit_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/parse_reddit_json.py -------------------------------------------------------------------------------- /plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/plot.py -------------------------------------------------------------------------------- /preprocess_movie_lens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/preprocess_movie_lens.py -------------------------------------------------------------------------------- /tensorboard_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/tensorboard_logger.py -------------------------------------------------------------------------------- /train_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/train_reddit.py -------------------------------------------------------------------------------- /transD_FB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/transD_FB.py -------------------------------------------------------------------------------- /transD_movielens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/transD_movielens.py -------------------------------------------------------------------------------- /trans_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/trans_d.py -------------------------------------------------------------------------------- /trans_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/trans_e.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeybose/Flexible-Fairness-Constraints/HEAD/utils.py --------------------------------------------------------------------------------