├── .gitignore ├── .idea ├── .gitignore ├── WWW2023GroupRecBaslines.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── AGREE ├── dataloader.py ├── datautil.py ├── main.py ├── metrics.py └── model.py ├── CubeRec ├── README.md ├── dataloader.py ├── datautil.py ├── main.py ├── metrics.py └── model.py ├── GroupIM ├── dataloader.py ├── datautil.py ├── main.py ├── metrics.py └── model.py ├── HCR └── README.md ├── HHGR ├── README.md ├── dataloader.py ├── main.py ├── metric.py ├── model.py └── utils.py ├── HyperGroup ├── README.md ├── dataloader.py ├── datautil.py ├── main.py ├── metrics.py └── model.py ├── LICENSE ├── README.md └── data ├── CAMRa2011 ├── groupMember.txt ├── groupRatingNegative.txt ├── groupRatingTest.txt ├── groupRatingTrain.txt ├── userRatingNegative.txt ├── userRatingTest.txt └── userRatingTrain.txt └── Mafengwo ├── groupMember.txt ├── groupRatingNegative.txt ├── groupRatingTest.txt ├── groupRatingTrain.txt ├── userFollow.txt ├── userRatingNegative.txt ├── userRatingTest.txt └── userRatingTrain.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/WWW2023GroupRecBaslines.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/.idea/WWW2023GroupRecBaslines.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AGREE/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/AGREE/dataloader.py -------------------------------------------------------------------------------- /AGREE/datautil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/AGREE/datautil.py -------------------------------------------------------------------------------- /AGREE/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/AGREE/main.py -------------------------------------------------------------------------------- /AGREE/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/AGREE/metrics.py -------------------------------------------------------------------------------- /AGREE/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/AGREE/model.py -------------------------------------------------------------------------------- /CubeRec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/CubeRec/README.md -------------------------------------------------------------------------------- /CubeRec/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/CubeRec/dataloader.py -------------------------------------------------------------------------------- /CubeRec/datautil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/CubeRec/datautil.py -------------------------------------------------------------------------------- /CubeRec/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/CubeRec/main.py -------------------------------------------------------------------------------- /CubeRec/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/CubeRec/metrics.py -------------------------------------------------------------------------------- /CubeRec/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/CubeRec/model.py -------------------------------------------------------------------------------- /GroupIM/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/GroupIM/dataloader.py -------------------------------------------------------------------------------- /GroupIM/datautil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/GroupIM/datautil.py -------------------------------------------------------------------------------- /GroupIM/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/GroupIM/main.py -------------------------------------------------------------------------------- /GroupIM/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/GroupIM/metrics.py -------------------------------------------------------------------------------- /GroupIM/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/GroupIM/model.py -------------------------------------------------------------------------------- /HCR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HCR/README.md -------------------------------------------------------------------------------- /HHGR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HHGR/README.md -------------------------------------------------------------------------------- /HHGR/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HHGR/dataloader.py -------------------------------------------------------------------------------- /HHGR/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HHGR/main.py -------------------------------------------------------------------------------- /HHGR/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HHGR/metric.py -------------------------------------------------------------------------------- /HHGR/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HHGR/model.py -------------------------------------------------------------------------------- /HHGR/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HHGR/utils.py -------------------------------------------------------------------------------- /HyperGroup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HyperGroup/README.md -------------------------------------------------------------------------------- /HyperGroup/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HyperGroup/dataloader.py -------------------------------------------------------------------------------- /HyperGroup/datautil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HyperGroup/datautil.py -------------------------------------------------------------------------------- /HyperGroup/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HyperGroup/main.py -------------------------------------------------------------------------------- /HyperGroup/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HyperGroup/metrics.py -------------------------------------------------------------------------------- /HyperGroup/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/HyperGroup/model.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/README.md -------------------------------------------------------------------------------- /data/CAMRa2011/groupMember.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/CAMRa2011/groupMember.txt -------------------------------------------------------------------------------- /data/CAMRa2011/groupRatingNegative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/CAMRa2011/groupRatingNegative.txt -------------------------------------------------------------------------------- /data/CAMRa2011/groupRatingTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/CAMRa2011/groupRatingTest.txt -------------------------------------------------------------------------------- /data/CAMRa2011/groupRatingTrain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/CAMRa2011/groupRatingTrain.txt -------------------------------------------------------------------------------- /data/CAMRa2011/userRatingNegative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/CAMRa2011/userRatingNegative.txt -------------------------------------------------------------------------------- /data/CAMRa2011/userRatingTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/CAMRa2011/userRatingTest.txt -------------------------------------------------------------------------------- /data/CAMRa2011/userRatingTrain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/CAMRa2011/userRatingTrain.txt -------------------------------------------------------------------------------- /data/Mafengwo/groupMember.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/Mafengwo/groupMember.txt -------------------------------------------------------------------------------- /data/Mafengwo/groupRatingNegative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/Mafengwo/groupRatingNegative.txt -------------------------------------------------------------------------------- /data/Mafengwo/groupRatingTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/Mafengwo/groupRatingTest.txt -------------------------------------------------------------------------------- /data/Mafengwo/groupRatingTrain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/Mafengwo/groupRatingTrain.txt -------------------------------------------------------------------------------- /data/Mafengwo/userFollow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/Mafengwo/userFollow.txt -------------------------------------------------------------------------------- /data/Mafengwo/userRatingNegative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/Mafengwo/userRatingNegative.txt -------------------------------------------------------------------------------- /data/Mafengwo/userRatingTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/Mafengwo/userRatingTest.txt -------------------------------------------------------------------------------- /data/Mafengwo/userRatingTrain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FDUDSDE/WWW2023GroupRecBaselines/HEAD/data/Mafengwo/userRatingTrain.txt --------------------------------------------------------------------------------