Skip to content

Commit

Permalink
Fixed some English IPA is not tab separated
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Dec 19, 2024
1 parent c50d300 commit 6619822
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Serilog;
using R3;
using Serilog;
using System;
using System.Collections.Generic;

Expand Down Expand Up @@ -69,8 +70,9 @@ public override string ConvertToIPA(string phoneme, bool isFirstPhoneme)
IPA.Add(phone);
}
}
string res = string.Join("\t", IPA);
Log.Debug($"Converted {phoneme} to {res}");
string result = string.Join("", IPA);
string res = string.Join("\t", result.ToCharArray());
//Log.Debug($"Converted {phoneme} to {res}");
return res;
}
}
Expand Down

0 comments on commit 6619822

Please sign in to comment.