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

Fix to support other languages #14

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
43 changes: 32 additions & 11 deletions VaderSharp/VaderSharp/SentimentIntensityAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,32 +16,53 @@ public class SentimentIntensityAnalyzer
private const double QuesIncrSmall = 0.18;
private const double QuesIncrLarge = 0.96;

private static Dictionary<string, double> Lexicon { get; }
private static string[] LexiconFullFile { get; }
private Dictionary<string, double> Lexicon = null;
private string[] LexiconFullFile = null;

static SentimentIntensityAnalyzer()
public SentimentIntensityAnalyzer()
{
Assembly assembly;
if (Lexicon == null)
{
Assembly assembly;
#if NET_35
assembly = typeof(SentimentIntensityAnalyzer).Assembly;
#else
assembly = typeof(SentimentIntensityAnalyzer).GetTypeInfo().Assembly;
assembly = typeof(SentimentIntensityAnalyzer).GetTypeInfo().Assembly;
#endif
using (var stream = assembly.GetManifestResourceStream("VaderSharp.vader_lexicon.txt"))
using(var reader = new StreamReader(stream))
using (var stream = assembly.GetManifestResourceStream("VaderSharp.vader_lexicon.txt"))
using (var reader = new StreamReader(stream))
{
LexiconFullFile = reader.ReadToEnd().Split('\n');
Lexicon = MakeLexDic();
}
}
}

public SentimentIntensityAnalyzer(string fileName)
{
if (Lexicon == null)
{
LexiconFullFile = reader.ReadToEnd().Split('\n');
Lexicon = MakeLexDic();
if (!File.Exists(fileName))
{
throw new Exception("Lexicon file not found");
}

using (var stream = new FileStream(fileName, FileMode.Open))
using (var reader = new StreamReader(stream))
{
LexiconFullFile = reader.ReadToEnd().Split('\n');
Lexicon = MakeLexDic();
}
}
}

private static Dictionary<string,double> MakeLexDic()
private Dictionary<string,double> MakeLexDic()
{
var dic = new Dictionary<string, double>();
foreach (var line in LexiconFullFile)
{
var lineArray = line.Trim().Split('\t');
dic.Add(lineArray[0], Double.Parse(lineArray[1]));
dic.Add(lineArray[0], Double.Parse(lineArray[1], System.Globalization.CultureInfo.InvariantCulture));
}
return dic;
}
Expand Down