Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edit output path to root instead of bin folder #11

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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