Skip to content

Commit f71ef6d

Browse files
authoredJul 29, 2020
Update README.md
1 parent 5a9e4a3 commit f71ef6d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
 

‎README.md

+18
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,24 @@ More information about the project (paper, dataset and slides) can be found on t
1111
- [Hierarchical Image Classification using Entailment Cone Embeddings @CVPR 2020, DiffCVML workshop](https://arxiv.org/abs/2004.03459)
1212
- [ETHEC Hierarchical dataset](https://www.researchcollection.ethz.ch/handle/20.500.11850/365379)
1313

14+
# Usage
15+
Create a virtual environment using the `requirements.txt` file:
16+
```
17+
virtualenv -p python3 venv
18+
source venv/bin/activate
19+
pip install -r learning_embeddings/requirements_3.6.txt
20+
pip install opencv-python
21+
pip install gitpython
22+
```
23+
24+
Use branch `Adam1x` to run experiments with the ETHEC dataset:
25+
`git checkout Adam1x`
26+
27+
Splits for the ETHEC dataset can be found in `splits` folder. Experiments in this repository were conducted using **v0.1** of the ETHEC dataset.
28+
29+
Sample command:
30+
`python learning_embeddings/network/ethec_experiments.py --experiment_name exp_test --experiment_dir exp --image_dir ETHEC_dataset_v0.1/ETHEC_dataset/IMAGO_build_test_resized/ --n_epochs 1 --model resnet18 --loss multi_level --set_mode train`
31+
1432
# Predicting Taxonomy for Organisms
1533

1634
![alt text](https://ankitdhall.github.io/project/learning-representations-for-images-with-hierarchical-labels/featured_hu84feb2bf561f49e98504fe25e8752a1b_2231317_720x0_resize_lanczos_2.png "The ETHEC dataset hierarchy")

0 commit comments

Comments
 (0)
Please sign in to comment.