pokemon_classification / get_data.ps1
Sifal's picture
Upload 9 files
c7f0510 verified
raw
history blame
479 Bytes
# Download the file using Invoke-WebRequest
$destination = "./pokemonclassification.zip"
$url = "https://www.kaggle.com/api/v1/datasets/download/lantian773030/pokemonclassification"
Invoke-WebRequest -Uri $url -OutFile $destination
# Extract the zip file to the specified folder
$extractPath = "./pokemonclassification"
Expand-Archive -Path $destination -DestinationPath $extractPath
# Remove the downloaded zip file (if not needed anymore)
Remove-Item $destination