我正在尝试将Python程序移植到Ruby,但我完全不了解Python。
你可以给我任何建议吗?我想运行sampletrain
方法。但是,我不明白为什么features=self.getfeatures(item)
可用。 getfeatures
只是一个实例变量,不是吗?它似乎被用作一种方法。
class classifier:
def __init__(self,getfeatures,filename=None):
# Counts of feature/category combinations
self.fc={}
# Counts of documents in each category
self.cc={}
self.getfeatures=getfeatures
def train(self,item,cat):
features=self.getfeatures(item)
# Increment the count for every feature with this category
for f in features:
self.incf(f,cat)
# Increment the count for this category
self.incc(cat)
self.con.commit()
def sampletrain(cl):
cl.train('Nobody owns the water.','good')
cl.train('the quick rabbit jumps fences','good')
cl.train('buy pharmaceuticals now','bad')
cl.train('make quick money at the online casino','bad')
cl.train('the quick brown fox jumps','good')
答案 0 :(得分:5)
在Python中,因为方法调用的括号不是可选的,所以可以区分对方法的引用和方法的调用。即。
def example():
pass
x = example # x is now a reference to the example
# method. no invocation takes place
# but later the method can be called as
# x()
VS
x = example() # calls example and assigns the return value to x
因为方法调用的括号在Ruby中是可选的,所以你需要使用一些额外的代码,例如<{1}}和x = method(:example)
实现同样的目标。
答案 1 :(得分:3)
在Ruby中发送行为的惯用方法(因为代码中的getfeatures
显然是可调用的)是使用块:
class Classifier
def initialize(filename = nil, &getfeatures)
@getfeatures = getfeatures
...
end
def train(item, cat)
features = @getfeatures.call(item)
...
end
...
end
Classifier.new("my_filename") do |item|
# use item to build the features (an enumerable, array probably) and return them
end
答案 2 :(得分:2)
如果您正在从Python进行翻译,那么您将不得不学习Python,因此您不“完全无知”。没有捷径。