If you want to create a new conda env, do the follows
conda env create -f environment.ymlIf you want to modify the existing env, do the follows instead
conda env updateTo export the current env, do conda env export > environment.yml.
├── Data
├── LICENSE
├── README.md
├── resources
├── rev2data
└── srcHere's the structure of rev2data.
rev2data
├── alpha
│ ├── alpha_gt.csv
│ └── alpha_network.csv
├── amazon
│ ├── amazon_gt.csv
│ └── amazon_network.csv
├── epinions
│ ├── epinions_gt.csv
│ └── epinions_network.csv
└── otc
├── otc_gt.csv
└── otc_network.csv