Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TextRank/POSTagger/SentencePOSTagger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace TextRank.POSTagger
{
internal static class SentencePOSTagger
{
private static string _modelPath = AppDomain.CurrentDomain.BaseDirectory + "/Resources/Models/";
private static string _modelPath = AppDomain.CurrentDomain.BaseDirectory + "/../../Resources/Models/";
private static EnglishMaximumEntropySentenceDetector _sentence_tokenizer = new EnglishMaximumEntropySentenceDetector(_modelPath + "/EnglishSD.nbin");

public static string[] GetTaggedSentences(string paragraph)
Expand Down
2 changes: 1 addition & 1 deletion TextRank/POSTagger/WordPOSTagger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ internal static class WordPOSTagger
{
private static readonly EnglishRuleBasedTokenizer Tokenizer = new EnglishRuleBasedTokenizer(false);

private static readonly string ModelPath = AppDomain.CurrentDomain.BaseDirectory + "/Resources/Models/";
private static readonly string ModelPath = AppDomain.CurrentDomain.BaseDirectory + "/../../Resources/Models/";

private static readonly IList<string> RequiredTags = new List<string> { "NN", "JJ", "NNP", "NNS", "NNPS" };

Expand Down