2013-05-14 111 views
2

我正在學習算法「趨勢主題」,我讀過Stanislav Nikolov的文章,Trend or No Trend:一種新的非參數法分類時間序列。正在運行的趨勢或沒有趨勢Twitter的謠言項目

我試着在here下載他的項目。當我嘗試運行時,出現錯誤:

[email protected]:~/rumor$ ./test_detection.py 
Traceback (most recent call last): 
    File "./test_detection.py", line 6, in <module> 
    ts_viral = rumor.parsing.parse_timeseries('data/' + sys.argv[1]) 
IndexError: list index out of range 

我打算在Hadoop集羣上運行。我該怎麼辦?

回答

1

這意味着你的程序需要一些命令行參數。 sys.argv包含參數列表,並且由於您沒有提供任何參數,因此出現「索引超出範圍」錯誤。仔細閱讀手冊。