Explore models
Exploring models is very similar to exploring models. You can use the user interface, the CLI, the library or the API to retrieve the list of all the available models.
User interface
You can filter by different criteria and click on a model card to see more information about it, trying in a notebook, etc.
CLI
You can retrieve the list of all the models using the following CLI command:
eotdl models list
You can filter the models by name using the following CLI command:
eotdl models list --name "model-name"
This command will return all models that match the given name.
Library
You can retrieve the list of all the models using the following Python code:
from eotdl.models import retrieve_models
retrieve_models()
And similarly, retrieve all the models that match a particular name
retrieve_models("model-name")
API
You can retrieve the list of all models using the following API call:
curl -X 'GET' \
'https://api.eotdl.com/models' \
-H 'accept: application/json'
You can also retrieve the information of one particular model using the following API call:
curl -X 'GET' \
'https://api.eotdl.com/models?name=model-name' \
-H 'accept: application/json'