- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我最近一直在阅读nltk文档。我不明白下面的代码。
def dialogue_act_features(post):
features = {}
for word in nltk.word_tokenize(post):
features['contains(%s)' % word.lower()] = True
return features
这是一个用于 NaiveBayesClassifier 的特征提取器,但是做什么
features['contains(%s)' % word.lower()] = True
是什么意思?
我认为这行代码是一种生成字典的方法,但我不知道它是如何工作的。
谢谢
最佳答案
在这段代码中:
>>> import nltk
>>> def word_features(sentence):
... features = {}
... for word in nltk.word_tokenize(sentence):
... features['contains(%s)' % word.lower()] = True
... return features
...
...
...
>>> sent = 'This a foobar word extractor function'
>>> word_features(sent)
{'contains(a)': True, 'contains(word)': True, 'contains(this)': True, 'contains(function)': True, 'contains(extractor)': True, 'contains(foobar)': True}
>>>
这一行试图填充/填充特征字典。:
features['contains(%s)' % word.lower()] = True
下面是一个简单的 python 字典示例(详见 https://docs.python.org/2/tutorial/datastructures.html#dictionaries):
>>> adict = {}
>>> adict['key'] = 'value'
>>> adict['key']
'value'
>>> adict['apple'] = 'red'
>>> adict['apple']
'red'
>>> adict
{'apple': 'red', 'key': 'value'}
和word.lower()
小写一个字符串,例如
>>> str = 'Apple'
>>> str.lower()
'apple'
>>> str = 'APPLE'
>>> str.lower()
'apple'
>>> str = 'AppLe'
>>> str.lower()
'apple'
当你执行 'contains(%s)' % word
时,它试图创建字符串 contain(
和一个符号运算符,然后是一个 )
。符号运算符将在字符串外部分配,例如
>>> a = 'apple'
>>> o = 'orange'
>>> '%s' % a
'apple'
>>> '%s and' % a
'apple and'
>>> '%s and %s' % (a,o)
'apple and orange'
符号运算符类似于 str.format()
函数,例如
>>> a = 'apple'
>>> o = 'orange'
>>> '%s and %s' % (a,o)
'apple and orange'
>>> '{} and {}'.format(a,o)
'apple and orange'
所以当代码执行 'contains(%s)' % word
时,它实际上是在尝试生成这样的字符串:
>>> 'contains(%s)' % a
'contains(apple)'
当您将该字符串作为键放入字典时,您的键将如下所示:
>>> adict = {}
>>> key1 = 'contains(%s)' % a
>>> value1 = True
>>> adict[key1] = value1
>>> adict
{'contains(apple)': True}
>>> key2 = 'contains(%s)' % o
>>> value = 'orange'
>>> value2 = False
>>> adict[key2] = value2
>>> adict
{'contains(orange)': False, 'contains(apple)': True}
有关详细信息,请参阅
关于python - `features[' contains(%s )' % word.lower()] = True` 在 NLTK 中是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29574236/
当我需要拆分一行,并将列表中的所有单词都设为小写时,首选方式是: 1.) list = [] for word in line.split(): word = word
看看这个答案:Case Insensitive Flask-SQLAlchemy Query 为什么使用 SQLAlchemy 的 func.lower(mystring) 而不是 python 的原
我对 Python 中的内置方法感到困惑。例如,什么是 some_string.lower() 和 str.lower(some_string) 它们有何不同? 最佳答案 str是Python中所有字
print("Hello and welcome to your address book this program uses surnames or D.O.B to find people in
在 Python 中,字符串有一个方法 lower(): >>> dir('A') [... 'ljust', 'lower', 'lstrip', ...] 但是,当尝试 '{0.lower()}'
#include #include #include int main(void) { char input[50]; char i; int j = 0; pr
list-style-type: lower-latin 和 list-style-type: lower-alpha 都会生成如下列表: a. item1 b. item2 c. item3 ...
我目前正在学习 python 并在模块中做练习。我之前已经学习过如何删除字符串中的任何大小写字母,这样用户以后使用它会更容易。但似乎当我将“XXX.lower() ”方法应用于我的代码时,它不起作用。
这是代码; names = ('laia') good = ('good', 'great', 'beautiful') name = raw_input ("What's your name?").
这个问题在这里已经有了答案: Why doesn't calling a string method (such as .replace or .strip) modify (mutate) the
我有一个消除所有非字母字符的正则表达式 def genLetters(string): regex = re.compile('[^a-zA-Z]') newString = regex.su
我有一个名为“Earthquake”的类,它有一个字符串形式的位置,以及一些对这个问题不重要的其他部分(我不认为)。我编写了一个函数(filter_by_place),它迭代我传递给它的地震列表,并在
我在将带有变音符号的大写字母转换为小写字母时遇到问题。 print("ÄÖÜAOU".lower()) A、O 和 U 得到正确转换,但 Ä、Ö 和 Ü 保持大写。有什么想法吗? 第一个问题已通过 .
前言 今天我们总结的函数也比较简单,函数的作用的将所给字符串的中的大写字母转换成小写字母,这种操作往往出现在比较操作之前,比如验证码通常都是不区分大小写的,接下来我们一起看一下函数的用法。 内容
题目地址:https://leetcode.com/problems/to-lower-case/description/ 题目描述: Implement function ToLowerCase
这是我的查询 SELECT * FROM `music` where lower(music.name) = "hello" 我怎样才能用django发送这个查询 我试过了,但它没有在查询中添加 lo
我最近使用 ARM 模板将多个资源部署到 Azure 中。在部署存储帐户时,我遇到了一个问题,这是由于 Azure 提出的一些限制,例如 存储帐户名称不应包含大写字母 其最大长度应为 24。 我希望用
我正在尝试使用 jquery 向下滚动到 #lower div,但由于某种原因它不起作用。我做错了什么? $(function() { $('html, body').animate({
假设我有这样的代码: def c = Account.createCriteria() def results = c { between("balance", 500, 1000)
我在 sqlite 查询中遇到以下异常: The expression contains undefined function call lower() 我在 VS2012 中有一个非常简单的 SQL
我是一名优秀的程序员,十分优秀!