B. Learn Basics
Understanding the Application Folder
In the downloaded Azimuth folder from step A, the following structure exists:
azimuth # Root directory
├── azimuth
│ └── # Back End # (7)
├── azimuth_shr
│ └── # User dataset, models, and code # (1)
├── config
│ └── # User configs # (2)
├── webapp
│ └── # Front End # (8)
├── .app_env # (3)
├── docker-compose.yml # (4)
├── Makefile # (5)
└── README.md # (6)
- Where to put your data, model and code, if relevant.
azimuth_shr
stands for azimuth shared, because it contains user artifacts that are shared with the application. Azimuth provides default artifacts already to load common dataset and models. - Where to put all configs. Example configs are provided.
- Default values for env vars.
- Where the config and Docker images are specified.
- Available commands to use Azimuth.
- Instructions to launch the application.
- Only available when cloning the repo.
- Only available when cloning the repo.
Where to put your data, code and configs?
config
and azimuth_shr
are two folders where you will put different artifacts before you
can run Azimuth on your dataset and models. They get mounted automatically on the Docker image.
The Config File
The Azimuth config file contains all the information to launch and customize Azimuth. It specifies which dataset and pipelines to load in the app, as well as other variables that allow for customization of the app. Most fields have default values and don't need to be explicitly defined in each config. The Configuration reference details all available fields.
Different configuration examples are provided in the repo under config/examples
, leveraging
pretrained models from HuggingFace. The next
step, C. Run on Your Use Case, will detail how to adapt an existing config to create your own.
Clearing the Cache
Azimuth keeps all artifacts in caching folders so that if you close the app and re-launch, it will load quickly. Once you are done with your analysis, you can delete the cache by running:
Run Our Demo to Verify Your Setup
Out-of-the-box, Azimuth can run on different demo data and models from HuggingFace (HF). Verify that your setup is working correctly by running a demo.
-
In the terminal, from the
azimuth
folder (the root directory), execute the following commands. The first one installs the Google Drive downloading library. The second command downloads from Google Drive the demo data and model. Our demo is using a subset of theclinc_oos
dataset from HuggingFace, with only 16 classes.You cannot install
gdown
?Look at the following Discussion to download the data manually.
-
Run our dummy or full demo (option a. or b.), based on how much time you have. If it is the first time that you are running the command, it will take additional time to download the Docker image (~15 min).
- If you don't have a lot of time and just want to verify your setup, you can run our dummy CLINC demo (~2min):
- If you have a bit more time, run our full CLINC demo (~10min):
-
The app will be accessible at http://0.0.0.0:8080 after a few minutes of waiting. The screen will indicate that the start-up tasks have started. When it is completed, the application will be loaded.
- Skim the Key Concepts section to get a high-level understanding of some concepts used throughout the application. If you are unsure what each screen allows you to do, the User Guide section walks you through all the available interactions on each screen.
Successful demo
Now that the demo is working, you can adapt the config to make it work on your dataset and model. Proceed to C. Run on Your Use Case.