Skip to content

TA-Geoforce/GlobalAIBootcamp2019

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Global AI Bootcamp2019

AI from Space using Azure presentation and source code

Introduction to technologies and frameworks for Deep Learning using satellite data and moving to production with Azure.

Global AI Bootcamp2019

Azure Open Data Catalog

azure open data catalog

https://azure.microsoft.com/en-us/services/open-datasets/catalog

Raster-Vision

Raster-Vision

https://docs.rastervision.io/en/0.10/

Setting up Azure Batch

Create a resource group

az group create \
    --name AIBootcamp2019 \
    --location westeurope

Create a storage account

az storage account create \
    --resource-group AIBootcamp2019 \
    --name aibootcamp2019sa \
    --location westeurope\
    --sku Standard_LRS

Create a Batch account

az batch account create \
    --name aibootcamp2019sa \
    --storage-account aibootcamp2019sa \
    --resource-group AIBootcamp2019 \
    --location westeurope

Log in my batch account

az batch account login \
    --name aibootcamp2019sa \
    --resource-group AIBootcamp2019 \
    --shared-key-auth

Delete the pool

az batch pool delete --pool-id {pool name}

Delete the resource group

az group delete --name AIBootcamp2019 

About

AI from Space using Azure

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published