Expected outcome:
.
├── environmet.yml
├── README.md
├── .gitignore
└── src
├── datasets
│ └── constants.py
├── train.py
└── utils
├── CLIP_encoder.py
└── __init__.py
5 directories, 5 filesTo accomplish this
brew install tree
cd project/To print the working directory with specific depth:
tree -L 2To avoid some directories being printed
tree -I 'venv|node_modules'