-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
455fe5e
commit dd969e9
Showing
17 changed files
with
27 additions
and
24 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
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 |
---|---|---|
|
@@ -184,7 +184,7 @@ private static void ShowOptions(string[] args, Seq2SeqOptions opts) | |
var commandLine = string.Join(" ", args); | ||
var strOpts = JsonConvert.SerializeObject(opts, Newtonsoft.Json.Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Converters = new[] { new StringEnumConverter() }, }); | ||
|
||
Logger.WriteLine($"Seq2SeqSharp v2.7.0 written by Zhongkai Fu([email protected])"); | ||
Logger.WriteLine($"Seq2SeqSharp v2.8.16 written by Zhongkai Fu([email protected])"); | ||
Logger.WriteLine($"Command Line = '{commandLine}'"); | ||
Logger.WriteLine($"Configs: {strOpts}"); | ||
} | ||
|
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 |
---|---|---|
|
@@ -269,7 +269,7 @@ private static void ShowOptions(string[] args, Seq2SeqOptions opts) | |
var commandLine = string.Join(" ", args); | ||
var strOpts = JsonConvert.SerializeObject(opts, Newtonsoft.Json.Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Converters = new[] { new StringEnumConverter() }, }); | ||
|
||
Logger.WriteLine($"Seq2SeqSharp v2.7.0 written by Zhongkai Fu([email protected])"); | ||
Logger.WriteLine($"Seq2SeqSharp v2.8.16 written by Zhongkai Fu([email protected])"); | ||
Logger.WriteLine($"Command Line = '{commandLine}'"); | ||
Logger.WriteLine($"Configs: {strOpts}"); | ||
} | ||
|
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 |
---|---|---|
|
@@ -284,7 +284,7 @@ private static void ShowOptions(string[] args, Seq2SeqOptions opts) | |
var commandLine = string.Join(" ", args); | ||
var strOpts = JsonConvert.SerializeObject( opts, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Converters = new[] { new StringEnumConverter() }, } ); | ||
|
||
Logger.WriteLine($"Seq2SeqSharp v2.7.0 written by Zhongkai Fu([email protected])"); | ||
Logger.WriteLine($"Seq2SeqSharp v2.8.16 written by Zhongkai Fu([email protected])"); | ||
Logger.WriteLine($"Command Line = '{commandLine}'"); | ||
Logger.WriteLine($"Configs: {strOpts}"); | ||
} | ||
|
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 |
---|---|---|
|
@@ -45,7 +45,7 @@ private static void Ss_EvaluationWatcher(object sender, EventArgs e) | |
private static void ShowOptions(string[] args, SeqClassificationOptions opts) | ||
{ | ||
string commandLine = string.Join(" ", args); | ||
Logger.WriteLine($"SeqClassificationConsole v2.7.0 written by Zhongkai Fu([email protected])"); | ||
Logger.WriteLine($"SeqClassificationConsole v2.8.16 written by Zhongkai Fu([email protected])"); | ||
Logger.WriteLine($"Command Line = '{commandLine}'"); | ||
|
||
string strOpts = JsonConvert.SerializeObject( opts, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Converters = new[] { new StringEnumConverter() }, } ); | ||
|
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 |
---|---|---|
|
@@ -197,7 +197,7 @@ public static List<List<string>> ConstructInputTokens(List<string> input) | |
private static void ShowOptions(string[] args) | ||
{ | ||
string commandLine = string.Join(" ", args); | ||
Logger.WriteLine($"Seq2SeqSharp v2.7.0 written by Zhongkai Fu([email protected])"); | ||
Logger.WriteLine($"Seq2SeqSharp v2.8.16 written by Zhongkai Fu([email protected])"); | ||
Logger.WriteLine($"Command Line = '{commandLine}'"); | ||
} | ||
} | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
using TensorSharp.CUDA.ContextState; | ||
|
||
Logger.Initialize(Logger.Destination.Console | Logger.Destination.Logfile, Logger.Level.err | Logger.Level.warn | Logger.Level.info | Logger.Level.debug, $"{nameof(SeqWebApps)}_{Utils.GetTimeStamp(DateTime.Now)}.log"); | ||
Logger.WriteLine($"SeqWebApps v2.7.0 written by Zhongkai Fu([email protected])"); | ||
Logger.WriteLine($"SeqWebApps v2.8.16 written by Zhongkai Fu([email protected])"); | ||
|
||
var Configuration = new ConfigurationBuilder().AddJsonFile("appsettings.json").Build(); | ||
|
||
|
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