Get Train Archs
curl --request GET \
--url https://api.landing.ai/v1/projects/{project_id}/train/architecturesimport requests
url = "https://api.landing.ai/v1/projects/{project_id}/train/architectures"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.landing.ai/v1/projects/{project_id}/train/architectures', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"name": "ConvNext-[16M]"
},
{
"name": "ConvNext-[29M]"
}
]
}Training
Get Train Archs
GET
/
v1
/
projects
/
{project_id}
/
train
/
architectures
Get Train Archs
curl --request GET \
--url https://api.landing.ai/v1/projects/{project_id}/train/architecturesimport requests
url = "https://api.landing.ai/v1/projects/{project_id}/train/architectures"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.landing.ai/v1/projects/{project_id}/train/architectures', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"name": "ConvNext-[16M]"
},
{
"name": "ConvNext-[29M]"
}
]
}⌘I

