Add dataset card and link to paper

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +58 -0
README.md CHANGED
@@ -1,3 +1,61 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - graph-ml
5
+ tags:
6
+ - biology
7
+ - protein-protein-interaction
8
+ - multimodal
9
  ---
10
+
11
+ This repository contains the processed datasets and pre-trained checkpoints for the paper [Enhancing Protein-Protein Interaction Prediction with Hierarchical Motif-based Multimodal Protein Embedding](https://huggingface.co/papers/2606.02629).
12
+
13
+ **Code:** [https://github.com/yzf-code/MMM-PPI](https://github.com/yzf-code/MMM-PPI)
14
+
15
+ ### Dataset Overview
16
+
17
+ MMM-PPI is a Hierarchical Motif-based Multi-Modal protein Encoder for PPI Prediction. It addresses limitations in existing PPI prediction by modeling the hierarchical organization of proteins and integrating sequence, structure, and function modalities across three scales: micro-scale (residues), meso-scale (spatially-informed motifs), and macro-scale (protein level).
18
+
19
+ ### Download Instructions
20
+
21
+ You can download the processed datasets and pre-trained checkpoints using the following methods:
22
+
23
+ **Using huggingface_hub**
24
+ ```bash
25
+ pip install huggingface_hub
26
+ huggingface-cli download yzf1102/MMM-PPI --repo-type dataset --local-dir ./hf_assets
27
+ ```
28
+
29
+ **Using git lfs**
30
+ ```bash
31
+ git lfs install
32
+ git clone https://huggingface.co/datasets/yzf1102/MMM-PPI hf_assets
33
+ ```
34
+
35
+ ### Repository Structure
36
+
37
+ After downloading, organize the files as follows to match the project structure:
38
+
39
+ ```
40
+ MMM-PPI/
41
+ β”œβ”€β”€ ckpt/ # Pre-trained model checkpoints
42
+ β”œβ”€β”€ data/ # Dataset files
43
+ β”œβ”€β”€ motif_detection/ # Motif detection scripts and pre-computed results
44
+ β”œβ”€β”€ Classifier_model.py # PPI classifier model
45
+ β”œβ”€β”€ dataloader.py # Data loading and preprocessing
46
+ β”œβ”€β”€ environment.yml # Conda environment specification
47
+ β”œβ”€β”€ main.py # Main entry point for training/evaluation
48
+ β”œβ”€β”€ pretrain_Pair_wise_Encoder.py # Pair-wise encoder pre-training
49
+ β”œβ”€β”€ run.sh # Example shell script for running experiments
50
+ └── utils.py # Utility functions
51
+ ```
52
+
53
+ > πŸ’‘ Make sure the `ckpt/` and `data/` folders are placed at the **root** of the repository.
54
+
55
+ ### Usage
56
+
57
+ The simplest way to reproduce the experiments is via the provided shell script:
58
+
59
+ ```bash
60
+ bash run.sh
61
+ ```