-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replace CPU, GPU types with just Hangfire vs ClearML as well as engine type * Allow each engine type to have it's own queue and docker image * SMT now broken into preprocessing, train and postprocessing, just like Nmt * SMT build defaults on ClearML * NMT local train removed * Use .zip for SMT model moving * Update cleanup script for SMT models
- Loading branch information
1 parent
f4b27e5
commit 5aac7fa
Showing
47 changed files
with
1,337 additions
and
1,137 deletions.
There are no files selected for viewing
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
11 changes: 11 additions & 0 deletions
11
src/SIL.Machine.AspNetCore/Configuration/ClearMLBuildJobOptions.cs
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,11 @@ | ||
namespace SIL.Machine.AspNetCore.Configuration; | ||
|
||
public class ClearMLBuildJobOptions | ||
{ | ||
public const string Key = "ClearMLBuildJob"; | ||
|
||
public TranslationEngineType TranslationEngineType { get; set; } | ||
public string ModelType { get; set; } = ""; | ||
public string Queue { get; set; } = "default"; | ||
public string DockerImage { get; set; } = ""; | ||
} |
11 changes: 11 additions & 0 deletions
11
src/SIL.Machine.AspNetCore/Configuration/ClearMLEngineTypeOptions.cs
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,11 @@ | ||
namespace SIL.Machine.AspNetCore.Configuration; | ||
|
||
public class ClearMLEngineTypeOptions | ||
{ | ||
public const string Key = "ClearMLEngineType"; | ||
|
||
public string EngineType { get; set; } = ""; | ||
public string Queue { get; set; } = "default"; | ||
public string ModelType { get; set; } = ""; | ||
public string DockerImage { get; set; } = ""; | ||
} |
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
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
Oops, something went wrong.