由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DataSciences版 - 请教NLP 问题 - classification
相关主题
DS需要会的手艺 真不少请推荐一个NLP的data set (转载)
请教大家一个做feature的问题text mining中的relation extraction
Positions open in Statistics, Econometrics, Applied Mathematics借版面问个machine learning的问题
凑热闹转发一篇自己写的博文,轻拍求职要求clearance
有一个文件夹里有大概1000个文件。我有以下的Python语句调用后出现下面的错误。应该是涉及到特殊字符的问题,我试了其他的方法,都不能解决问题。说说最近的一次面试,兼告诫国人
[Data Science Project Case] Parsing URLS[Data Science Project Case] Topic Learning
机器学习需要自己搞算法吗求职求内推
公司招DATA SCIENTISTdata scientist job openings at Workday
相关话题的讨论汇总
话题: arguments话题: printme话题: function话题: keyword话题: 小标题
进入DataSciences版参与讨论
1 (共1页)
B*A
发帖数: 83
1
请教下思路
很多文章都有标题, 然后又小标题, 小标题下面有几段话具体论述小标题。 有没有
办法classify 一段话是本身是小标题还是正文? 各位高手能提供一下思路吗?
例如以下文字是我随便从网上copy的。 其中“Required arguments", ”Keyword
arguments“ 就是小标题, 其他部分是正文。
谢谢了
================================================
Required arguments
Required arguments are the arguments passed to a function in correct
positional order. Here, the number of arguments in the function call should
match exactly with the function definition.
To call the function printme(), you definitely need to pass one argument,
otherwise it gives a syntax error as follows −
Live Demo
#!/usr/bin/python
# Function definition is here
def printme( str ):
"This prints a passed string into this function"
print str
return;
# Now you can call printme function
printme()
When the above code is executed, it produces the following result −
Traceback (most recent call last):
File "test.py", line 11, in
printme();
TypeError: printme() takes exactly 1 argument (0 given)
Keyword arguments
Keyword arguments are related to the function calls. When you use keyword
arguments in a function call, the caller identifies the arguments by the
parameter name.
This allows you to skip arguments or place them out of order because the
Python interpreter is able to use the keywords provided to match the values
with parameters. You can also make keyword calls to the printme() function
in the following ways −
1 (共1页)
进入DataSciences版参与讨论
相关主题
data scientist position有一个文件夹里有大概1000个文件。我有以下的Python语句调用后出现下面的错误。应该是涉及到特殊字符的问题,我试了其他的方法,都不能解决问题。
求Google 的 Data Science 有关的位置内推 (转载)[Data Science Project Case] Parsing URLS
Data scientist / Machine Learning Engineer 相关面试题 (转载)机器学习需要自己搞算法吗
python用起来没有matlab好使,尤其是数据处理公司招DATA SCIENTIST
DS需要会的手艺 真不少请推荐一个NLP的data set (转载)
请教大家一个做feature的问题text mining中的relation extraction
Positions open in Statistics, Econometrics, Applied Mathematics借版面问个machine learning的问题
凑热闹转发一篇自己写的博文,轻拍求职要求clearance
相关话题的讨论汇总
话题: arguments话题: printme话题: function话题: keyword话题: 小标题