亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? changelog

?? 貝葉斯學(xué)習(xí)算法分類文本。基于樸素貝葉斯分類器的文本分類的通用算法
??
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
	* vpc.c (bow_barrel_set_vpc_priors_by_counting): Fix crash that 	occurs if limited vocabulary causes all files in a class to be 	empty.	* stoplist.c (bow_stoplist_add_word): New function.	* rainbow-stats.pl (confusion): Print percentage correct for each 	category.	* istext.c (bow_fp_is_text): Also return 0 for files that have 	more than 30% of their lines of the same length.  This way we 	avoid files containing uuencoded blocks.	* bow/libbow.h: Declare new function.Tue Apr 22 11:19:03 1997  Andrew McCallum  <mccallum@jprc.com>	* deflexer.c (bow_default_lexer): Add cast to initialization to 	avoid warning.	Add a uniform, global way of keeping track of binary file format	versions.	* io.c (bow_file_format_version): New global variable.	(bow_write_format_version_to_file): New function.	(bow_read_format_version_from_file): New function.	* bow/libbow.h (bow_file_format_version): Declare new global 	variable.	(BOW_DEFAULT_FILE_FORMAT_VERSION): New macro.	(bow_write_format_version_to_file): New function declaration.	(bow_read_format_version_from_file): New function declaration.	* rainbow.c (FORMAT_VERSION_FILENAME): New macro.	(rainbow_archive): Write format version to disk.	(rainbow_unarchive): Read it from disk if the file exists, otherwise	set it to 3, which is the format version number of data before 	BOW_FILE_FORMAT_VERSION was added to the library.	* rainbow.c (rainbow_options): New option "print-word-counts", 	alias for "print-counts-for-words".  Hide the later option from 	the --help text.	* rainbow-stats.pl (confusion): Print confusion matrix in a more 	readable format.	Add new command-line option to rainbow for using only 0 or 1 word	counts. 	* opts.c (bow_binary_word_counts): New global variable.	(bow_options): New option "binary-word-counts".	(parse_bow_opt): Handle it.	* bow/libbow.h: Declare new global variable.	* dv.c (bow_dv_add_di_count_weight): When BOW_BINARY_WORD_COUNTS 	is true, insist on keeping DV's entry count below 2, i.e. 0 or 1.	Fri Apr 18 16:09:06 1997  Andrew McCallum  <mccallum@jprc.com>	* configure.in: Add -Wno-implicit to default CFLAGS.	* rainbow.c (rainbow_lisp_query): Return if QUERY_WV is emtpy.  	(Previously would have crashed.)	* tfidf.c (TFIDF_METHOD): Fix typo that defined 	_register_method_tfidf_.. functions without the last underscore.	(Reported by Kamal Nigam.)		* split.c (bow_test_split): When selecting documents for test set, 	and randomly pick a document that was already in the test set, 	don't just scan sequentially for the next non-test document, pick 	a new random number.  This will avoid long contiguous stretches of 	test documents.	* naivebayes.c (bow_naivebayes_score): Move the handling of 	SCORE_WITH_LOG_PROBABILITIES.	* barrel.c (bow_barrel_set_cdoc_priors_to_class_uniform): Assert 	that CDOC->PRIOR must be greater or equal, not just greater.Thu Apr 10 14:54:08 1997  Andrew McCallum  <mccallum@jprc.com>	* rainbow-h.c: Fix the `compile-command'.	(PRINT_TREE_SCORES): New macro.	(hier_set_method): New function.	(main): Call it if BOW_ARGP_METHOD is non-NULL.	* deflexer.c (bow_default_lexer): Initialize it to -1, so that 	deflexer.o will get linked in under SunOS.  Ug.  See comment.	* bow/libbow.h (bow_methods): Declare extern!Wed Apr  9 11:14:13 1997  Andrew McCallum  <mccallum@jprc.com>	* lex-html.c (bow_lexer_html_get_raw_word): Return last word in 	document, even if it is not followed by a non-word character!	* lex-simple.c (bow_lexer_simple_get_raw_word): Likewise.	* rainbow.c (rainbow_lisp_setup): Call all 	__attribute__((constructor)) functions here since this will be 	dynamically loaded and the contructor functions won't be called 	then.	* opts.c (parse_bow_opt): Remove call to 	_bow_default_lexer_init(); moved to rainbow.c.	Fix a bug whereby --skip-html was a no-op.	* deflexer.c (bow_default_lexer_simple, 	bow_default_lexer_indirect, bow_default_lexer_gram, 	bow_default_lexer_html, bow_default_lexer_email): Change global 	variable from struct's to pointers to structs.	(_bow_default_lexer_simple, _bow_default_lexer_gram,	_bow_default_lexer_html, _bow_default_lexer_email): New static 	variables.	(_bow_default_lexer_init): Set BOW_DEFAULT_LEXER_INDIRECT to point	inside of BOW_DEFAULT_LEXER_GRAM, which is the BOW_DEFAULT_LEXER.	* opts.c: Now use all default lexers as pointers to struct's 	instead of struct's.	* bow/libbow.h (bow_default_lexer_simple, 	bow_default_lexer_indirect, bow_default_lexer_gram, 	bow_default_lexer_html, bow_default_lexer_email): Change global 	variable from struct's to pointers to structs.	* vpc.c (bow_barrel_new_vpc_merge_then_weight): Assert the method 	name.	* Makefile.in (dist-cmu, bow-$(BOW_VERSION).tar.gz): New targets.Tue Apr  8 08:00:00 1997  Andrew McCallum  <mccallum@jprc.com>	* Version (BOW_MINOR_VERSION): Version 0.7.	* bow/libbow.h (BOW_MINOR_VERSION): Likewise.	* rainbow.c (RAINBOW_MINOR_VERSION): Version 0.2.	* arrow.c (ARROW_MINOR_VERSION): Version 0.2.	* NEWS: Update for new version of library and rainbow.	* readme.texi: Likewise.	* Makefile.in (DIST_FILES): Add NEWS.	* Makefile.in (dist): Fix invocation of `tr' for cvs rtag.	* split.c (bow_test_next_wv): Initialize CURRENT_DI to avoid 	warning.	* split.c (bow_test_split): Initialize DOC to avoid warning.	* int4word.c (bow_words_keep_top_by_infogain): Initialize 	MAX_IG_WI to avoid warning.	* dv.c (bow_dv_add_di_count_weight): Only give "overflowed short" 	message at BOW_VERBOSE level, not BOW_PROGRESS level.	* crossbow.c (main): Initialize NORMALIZER to zero.	* Makefile.in (dist): Create ./bow directory.  Fix invocation of 	argp.	(snapshot): Likewise.	* configure.in: Add -O to the default CFLAGS.	* rainbow.c (rainbow_options): Improve some option help text.	(rainbow_parse_opt) [INFOGAIN_PAIR_VECTOR_KEY]: Handle it.	* opts.c (bow_options): Improve some option help text.	* Makefile.in (version.texi): Define BOWVERSION instead of 	BOW_VERSION, so makeinfo can get the value.	(%.dvi, %.info): Fix typo.	* libbow.texi: Fix typos and begin preliminary documentation.	* rainbow.c (rainbow_options): New option "repeat"/'r'.	(rainbow_parse_opt): Handle it.	(rainbow_arg_state): New member REPEAT_QUERY.	(rainbow_query): Attend to REPEAT_QUERY.	* naivebayes.c (bow_naivebayes_set_weights): Fix assertion so it 	works for both naivebayes and crossentropy.Mon Apr  7 11:00:06 1997  Andrew McCallum  <mccallum@jprc.com>	* sarray.c (bow_sarray_entry_at_keystr): If there is no index for 	that KEYSTR, print an error message.  This way if user mistypes a 	method name to rainbow's -m option, they get a message that makes 	some sense.	* opts.c (_help_filter): New function to add the names of the 	available methods to the help text.	(bow_argp): Put it in.	Use strings to identify methods instead of integers.  Separate	method declarations instead separate .h files.	* bow/tfidf.h, bow/naivebayes.h, bow/prind.h: New files.	* Makefile.in (LIBBOW_H_FILES): Add files bow/naivebayes.h, 	bow/tfidf.h, bow/prind.h.	* naivebayes.c (bow_method_naivebayes, bow_method_crossentropy): 	Use string method identifier instead of integer.	* prind.c (bow_method_prind): Likewise.	* tfidf.c (TFIDF_METHOD): Likewise.	* rainbow.c (rainbow_parse_opt) [G]: Step through methods 	according to new BOW_METHODS bow_sarray, instead of old static 	array.	* methods.c (bow_methods): Static array removed.	(bow_methods): Renamed from _bow_str4method, and made non-static.	* barrel.c (bow_method_id, _old_bow_methods): Put copies of what 	used to be in libbow.h here, so we can unarchive old-format 	barrel's.	(BOW_DEFAULT_BARREL_VERSION): Changed from 2 to 3.	(bow_barrel_new_from_data_fp): If VERSION_TAG is less than 3, read the	method id integer and use _OLD_BOW_METHOD, otherwise, read a 	string and use new BOW_METHOD_AT_NAME().	(bow_barrel_write): Write the method as a string instead of as an	integer.	* Makefile.in (ALL_CPPFLAGS): -I$(srcdir) instead of 	-I$(srcdir)/bow.	* All files: Include <bow/libbow.h> instead of "libbow.h".	* bow/libbow.h: Include <bow/tfidf.h>, <bow/naivebayes.h>,	<bow/prind.h>.	(bow_method_register_with_name,	bow_method_at_name): Declare functions.	(bow_method_id): Typedef removed.	(bow_str_to_method_id): Macro removed.	(bow_methods): Global variable removed.	(bow_method_tfidf_words, bow_method_tfidf_log_words,	bow_method_tfidf_log_occur, bow_params_tfidf): Removed.	(bow_method_prind, bow_params_prind): Removed.	(bow_method_naivebayes, bow_params_naivebayes): Removed.	* methods.c (bow_method_at_name): Comment function.	(bow_method_register_with_name): Likewise.	* opts.c (parse_bow_opt) [m]: Use bow_method_at_name().	* naivebayes.c: Use bow_method_register_with_name().  Add new 	method "crossentropy".	(bow_naivebayes_score): Pay attention to SCORE_WITH_LOG_PROBABILITIES	when setting class priors.  When it is true, use inverse of 	cross-entropy instead of negative!	* prind.c: Use bow_method_register_with_name().	* tfidf.c: Use bow_method_register_with_name().	* rainbow.c (main): Strip any trailing `/'s from classnames, so 	FILENAME_TO_CLASSNAME() will find the classnames.  (Reported by 	Jason Rennie <jr6b@syrinx.res.cmu.edu>.)	* rainbow-h.c (PRINT_COUNTS_FOR_WORD_KEY): New macro.	(rainbowh_options): New option "print-counts-for-words".	(rainbowh_parse_opt): Handle it.	(struct rainbowh_arg_state): New member PRINTING_WORD.	(hier_barrel_print_word_counts): New function.	(main): Handle new option.  Do the right think for `-O' if 	BOW_PRUNE_VOCAB_BY_OCCUR_COUNT_N.	* info_gain.c (LEAVE_OUT_LAST_CLASS): Macro defined once at top.  	Changed from 0 to 1.	* install.texi: Explain the results of --prefix.  Remove old 	references to Objective C installation.Thu Apr  3 12:50:23 1997  Andrew McCallum  <mccallum@jprc.com>	* rainbow.c (rainbow_test_files): Use macros for setting QUERY_WV 	weights, so we can handle case in which the wv normalizer is NULL!	(main): Replace code for implementing word-count-printing with	call to new function.	* barrel.c (bow_barrel_set_cdoc_priors_to_class_uniform): 	Initialize ci2dc entries to zero!	(bow_barrel_print_word_count): New function.	* opts.c (bow_options): Add new option 	"naivebayes-score-with-log-probs".	(parse_bow_opt): Handle it.	* naivebayes.c (bow_naivebayes_score): Begin adding code to 	support SCORE_WITH_LOG_PROBABILITIES parameter; not yet finished.	(bow_naivebayes_params): Add initializer for	SCORE_WITH_LOG_PROBABILITIES, initialize it BOW_NO.	* bow/libbow.h: Declare new function.	(bow_params_naivebayes): New entry SCORE_WITH_LOG_PROBABILITIES.Wed Apr  2 10:07:30 1997  Andrew McCallum  <mccallum@jprc.com>	* configure.in: Add a check to see if __attribute__((constructor)) 	works.  If it does not, define CONSTRUCTOR_FAILS.	* rainbow.c (rainbow_lisp_setup): Fix typo.	* Makefile.in ($(PERL_RUNNABLE_FILES)): Use % in pattern and $< in 	rule so that we get the .pl file from the $(srcdir).	* rainbow-h.c (rainbowh_options): New option 	"print-infogain-vector", 'I'.	(struct rainbowh_arg_state): Add state for it.	(rainbowh_parse_opt): Handle it.	(hier_barrel_write_to_file): Close the FP after writing a barrel.	(hier_barrel_set_vpc_with_weights): Construct and pass a CLASSNAMES	array.	(hier_barrel_set_cdoc_priors_to_class_uniform): New function.	(_hier_barrel_set_node_scores): Print a little header/separator if	BOW_PRINT_WORD_SCORES.	(hier_barrel_test): Initialize the QUERY_WV to NULL, so	BOW_TEST_NEXT_WV doesn't try to free unallocated memory.	(hier_barrel_print_infogain): New function.	(rainbowh_archive): New function.	(rainbowh_unarchive): New function.	(main): Use above two functions.  Deal with printing infogain.	* rainbow.c: Re-written for using libargp.  This should make it	work with the WebKB lisp crawler again.	* prind.c (bow_prind_score): Make sure CDOC->FILENAME is non-NULL 	before trying to print it when BOW_PRINT_WORD_SCORES is true.	* opts.c (parse_bow_opt) [ARGP_KEY_INIT]: Call 	_bow_default_lexer_init().	* deflexer.c (_bow_default_lexer_init): Don't make it static.  Use 	static local variable to make sure we don't run through it twice.  	This is because we will call is explicitly in 	opts.c:parse_bow_opt(), because __attribute__ ((constructor)) 	doesn't seem to work on SunOS.	* Makefile.in (PERL_FILES): Added rainbow-ac.pl and rainbow-pr.pl.	* (rainbow-ac.pl, rainbow-pr.pl): New files from	Dayne Freitag <dayne@cs.cmu.edu>.Tue Apr  1 10:11:03 1997  Andrew McCallum  <mccallum@jprc.com>	* rainbow-h.c (rainbowh_parse_opt): Implement option 'M' for 	use_maximum_likelihood_path.	(hier_default_method): Renamed from METHOD; all uses changed.	(hier_barrel): New member NUM_NON_REST_CDOCS, to keep track of	DOC_BARREL->CDOCS->LENGTH *before* the `rest' documents start 	getting added, so that we can implement 	HIER_PARENT_DI_TO_CHILD_INDEX_AND_DI properly.	(hier_barrel_new): Initialize it to -1.	(hier_barrel_add_child): Set it.	(hier_barrel_new_from_text_dir_leaf): Set it.	(hier_barrel_write_to_file): Write it.	(hier_barrel_new_from_file): Read it.	(hier_parent_di_to_child_index_and_di): Use it.	(hier_barrel_print): Print it instead of DOC_BARREL->CDOCS->LENGTH.

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美中文字幕不卡| 色欧美乱欧美15图片| 日韩高清在线不卡| 视频一区二区三区入口| 亚洲一区二区欧美激情| 亚洲午夜免费视频| 日本欧美一区二区在线观看| 亚洲成人中文在线| 免费看日韩精品| 国产传媒欧美日韩成人| 成人国产在线观看| 在线一区二区视频| 欧美一区二区三区视频在线观看| 制服丝袜亚洲精品中文字幕| 日韩免费成人网| 国产欧美日韩一区二区三区在线观看| 国产网红主播福利一区二区| 中文字幕免费在线观看视频一区| 亚洲天堂精品在线观看| 亚洲国产一区在线观看| 美国欧美日韩国产在线播放 | 国产一区二区视频在线播放| 韩国v欧美v亚洲v日本v| 不卡电影一区二区三区| 在线成人午夜影院| 欧美国产欧美综合| 一区二区久久久| 裸体健美xxxx欧美裸体表演| va亚洲va日韩不卡在线观看| 欧美午夜电影网| 久久久久久影视| 亚洲一区电影777| 国产精品综合二区| 在线观看亚洲a| 国产亚洲欧美一区在线观看| 一级精品视频在线观看宜春院| 蜜桃视频在线观看一区二区| 成人国产精品免费网站| 欧美一级夜夜爽| 亚洲日本欧美天堂| 九九在线精品视频| 在线区一区二视频| 中文字幕巨乱亚洲| 蜜臀久久久久久久| 在线视频国内一区二区| 国产午夜精品久久| 久久电影网电视剧免费观看| 在线日韩国产精品| 国产精品免费网站在线观看| 久久精品国产免费看久久精品| 色综合天天综合| 欧美国产97人人爽人人喊| 日本sm残虐另类| 欧美性videosxxxxx| 国产精品伦理一区二区| 久久精品免费观看| 欧美一区二区三区电影| 亚洲专区一二三| 97国产一区二区| 国产日韩欧美一区二区三区综合 | 日韩精品一区二区三区老鸭窝| 亚洲欧美在线另类| 国产91对白在线观看九色| 日韩三级视频在线看| 丝袜美腿亚洲一区| 欧美日韩免费电影| 亚洲国产一区二区视频| 欧美性生活久久| 亚洲国产日韩一区二区| 欧洲精品在线观看| 一区二区三区蜜桃网| 色综合 综合色| 亚洲精品一二三四区| 97久久精品人人澡人人爽| 中文字幕在线观看一区| 暴力调教一区二区三区| 国产精品美女久久久久久2018 | 成人免费视频一区| 中文字幕二三区不卡| av亚洲产国偷v产偷v自拍| 亚洲欧洲精品一区二区三区| 成人av在线播放网站| 国产精品毛片久久久久久久| 99热这里都是精品| 亚洲精品五月天| 欧美日韩dvd在线观看| 日韩精品91亚洲二区在线观看| 日韩一区二区视频| 国产精品夜夜爽| 亚洲码国产岛国毛片在线| 在线国产电影不卡| 免费高清在线一区| 国产亚洲午夜高清国产拍精品| 不卡的电影网站| 一区二区三区蜜桃| 精品日韩欧美一区二区| 丰满少妇久久久久久久| 亚洲自拍另类综合| 欧美大片在线观看| 99这里都是精品| 日韩影院免费视频| 中文字幕国产精品一区二区| 欧美在线不卡视频| 狠狠色丁香婷婷综合久久片| 国产精品素人一区二区| 精品视频1区2区3区| 激情久久五月天| 一区二区三区鲁丝不卡| 精品国产一区二区三区不卡| 99久久精品免费看| 免费成人在线观看视频| 中文子幕无线码一区tr| 欧美一区二区视频在线观看2020 | 欧美性生活久久| 国产一区二区在线观看视频| 亚洲综合免费观看高清完整版| 欧美一卡2卡3卡4卡| www.色精品| 蜜桃av一区二区| 亚洲精品videosex极品| 欧美一区二区国产| 日本精品视频一区二区| 国产成人精品影视| 久久精品国产99久久6| 一区二区三区欧美日| 久久精品夜色噜噜亚洲a∨| 欧美日韩一区二区在线观看| 福利一区福利二区| www.日韩av| 激情成人综合网| 欧美aaaaa成人免费观看视频| 亚洲素人一区二区| 中文一区在线播放| 欧美大片一区二区三区| 欧美精品乱码久久久久久按摩 | 舔着乳尖日韩一区| 中文字幕一区二区三区四区| 久久一区二区三区四区| 日韩一区二区三区观看| 欧美精品精品一区| 欧美人与性动xxxx| 欧美探花视频资源| 色av成人天堂桃色av| 99久久婷婷国产综合精品电影| 国产成a人亚洲| 国产福利一区二区三区视频在线| 久99久精品视频免费观看| 免费日本视频一区| 麻豆精品新av中文字幕| 美女在线视频一区| 老司机精品视频线观看86| 久久精品国产亚洲高清剧情介绍 | 天天做天天摸天天爽国产一区| 一区二区三区四区亚洲| 亚洲在线视频一区| 亚洲成人一区在线| 日本午夜精品视频在线观看| 偷拍一区二区三区四区| 免费高清在线视频一区·| 国模冰冰炮一区二区| 国产露脸91国语对白| 国产suv精品一区二区三区| 成人影视亚洲图片在线| 波多野洁衣一区| 精品视频在线视频| 欧美一区二区免费观在线| 久久你懂得1024| 1000部国产精品成人观看| 亚洲第一福利一区| 一本久久精品一区二区 | 午夜精品爽啪视频| 乱中年女人伦av一区二区| 国产酒店精品激情| 波多野结衣一区二区三区| 一本到不卡免费一区二区| 91精品视频网| 国产清纯美女被跳蛋高潮一区二区久久w | 国产精品18久久久久久久网站| 成人在线视频首页| 欧美在线啊v一区| 精品国产三级电影在线观看| 国产精品毛片无遮挡高清| 亚洲曰韩产成在线| 激情五月婷婷综合| 色婷婷综合久久久久中文| 欧美一级精品大片| 国产精品第13页| 蜜臀va亚洲va欧美va天堂| 成人免费观看视频| 欧美疯狂性受xxxxx喷水图片| 精品国产免费久久| 亚洲日本一区二区| 精品午夜久久福利影院| 色诱亚洲精品久久久久久| 欧美成人国产一区二区| 久久国产精品露脸对白| 色成人在线视频| 久久久久久久久蜜桃| 亚洲成av人影院| caoporn国产精品|