当前位置: 首页>>代码示例>>Python>>正文


Python text.Sentiment类代码示例

本文整理汇总了Python中pattern.text.Sentiment的典型用法代码示例。如果您正苦于以下问题:Python Sentiment类的具体用法?Python Sentiment怎么用?Python Sentiment使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Sentiment类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

    def __init__(self, path="SentiWordNet*.txt", language="en"):
        """A sentiment lexicon with scores from SentiWordNet.

        The value for each word is a tuple with values for
        polarity (-1.0-1.0), subjectivity (0.0-1.0) and intensity (0.5-2.0).

        """
        Sentiment.__init__(self, path=path, language=language)
开发者ID:wannaphongcom,项目名称:pattern,代码行数:8,代码来源:__init__.py

示例2: load

 def load(self, path=None):
     _Sentiment.load(self, path)
     # Map "verschrikkelijk" to adverbial "verschrikkelijke" (+1%)
     if not path:
         for w, pos in dict.items(self):
             if "JJ" in pos:
                 p, s, i = pos["JJ"]
                 self.annotate(attributive(w), "JJ", p, s, i)
开发者ID:Maulanadurer,项目名称:pattern,代码行数:8,代码来源:__init__.py

示例3: load

 def load(self, path=None):
     _Sentiment.load(self, path)
     # Map "terrible" to adverb "terribly" (+1% accuracy)
     if not path:
         for w, pos in list(dict.items(self)):
             if "JJ" in pos:
                 if w.endswith("y"):
                     w = w[:-1] + "i"
                 if w.endswith("le"):
                     w = w[:-2]
                 p, s, i = pos["JJ"]
                 self.annotate(w + "ly", "RB", p, s, i)
开发者ID:DataBranner,项目名称:pattern,代码行数:12,代码来源:__init__.py

示例4: load

 def load(self):
     _Sentiment.load(self)
     for w, pos in self.items():
         if "JJ" in pos:
             # Map "verschrikkelijk" to adverbial "verschrikkelijke" (+1% accuracy)
             self.setdefault(attributive(w), {"JJ": pos["JJ"], None: pos["JJ"]})
开发者ID:BarcelonaMedia-ViL,项目名称:pattern,代码行数:6,代码来源:__init__.py

示例5: load

 def load(self, path=None):
     _Sentiment.load(self, path)
开发者ID:clips,项目名称:pattern,代码行数:2,代码来源:__init__.py

示例6: get

 def get(self, k, *args, **kwargs):
     return Sentiment.get(self, normalize(k), *args, **kwargs)
开发者ID:DevKhokhar,项目名称:pattern,代码行数:2,代码来源:__init__.py

示例7: __getitem__

 def __getitem__(self, k):
     return Sentiment.__getitem__(self, normalize(k))
开发者ID:DevKhokhar,项目名称:pattern,代码行数:2,代码来源:__init__.py


注:本文中的pattern.text.Sentiment类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。