-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* few detected issues * Removed env_logger which made logs not upload to heat * fix endpoint for remote training * Updated Burn and removed git patch for Burn * Can now run for dev or prod. Regenerated Cargo.lock to fix some vulnerabilities Co-authored-by: Jonathan Richard <[email protected]> * fix clippy * Merged local/remote into same command If the --runner flag is specified, the run will be remote on that runner * Cleanup cli commands * Do not permit to package project if repo is dirty (uncommited files) * Changed version to latest commit hash * update guide-cli readme * fix lint * fix lint with new rust version * Add more doc in guide-cli Fix problems linked to PR --------- Co-authored-by: Jonathan Richard <[email protected]> Co-authored-by: Jonathan Richard <[email protected]>
- Loading branch information
1 parent
eafdbfe
commit 284a908
Showing
27 changed files
with
478 additions
and
495 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
use clap::Parser; | ||
|
||
use crate::context::HeatCliContext; | ||
|
||
/// Run an inference locally. | ||
/// Not yet supported. | ||
#[derive(Parser, Debug)] | ||
pub struct InferenceRunArgs {} | ||
|
||
pub(crate) fn handle_command( | ||
_args: InferenceRunArgs, | ||
_context: HeatCliContext, | ||
) -> anyhow::Result<()> { | ||
todo!("Local inference is not yet supported") | ||
} |
27 changes: 0 additions & 27 deletions
27
crates/heat-sdk-cli/src/cli_commands/run/local/inference.rs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.