--- license: mit --- # Steps to download the data 1. Installing necessary library ```shell poetry add huggingface_hub ``` 2. Using the library to download the data into desired directory ```python from huggingface_hub import snapshot_download path = "./data" # path you want to store your data snapshot_download("Pulsifi/job_embedding", repo_type="dataset", local_dir=path) ```