winget install --id=DeterminedAI.CLI -e
CLI tool for the Determined AI machine learning platform
Determined AI CLI is a command-line interface tool designed to streamline machine learning workflows for Windows users. Built as a binary client for the Determined AI platform, it enables seamless interaction with machine learning experiments, models, and resources directly from the command line.
Key Features:
Audience & Benefit:
Ideal for machine learning professionals, data scientists, and developers who rely on command-line interfaces to manage their workflows. The tool provides a consistent and efficient way to interact with the Determined AI platform, enabling users to focus on model development and experimentation without friction.
This professional-grade tool is built using PyInstaller and GitHub Actions, ensuring reliability and up-to-date functionality for Windows users.
This project is primarily a GitHub Actions workflow that:
winget install DeterminedAI.CLI
scoop install determined
The following steps will download and install the latest version of the CLI to ~\Determined and add the folder to your path:
$response = Invoke-RestMethod -Uri $latestReleaseUrl
$zipUrl = $response.assets | Where-Object { $_.name -like "*.zip" } | Select-Object -ExpandProperty browser_download_url
Invoke-WebRequest -Uri $zipUrl -OutFile determined-cli.zip
$destDir = Join-Path -Path $HOME -ChildPath "Determined"
New-Item -ItemType Directory -Path $destDir | Out-Null
Expand-Archive -Path $zipFile -DestinationPath $destDir -Force
$env:Path += ";$destDir"
[System.Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User)
Join the Determined AI Commmunity Slack.
This project is licensed under the Apache License Version 2.0.