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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? changelog

?? 貝葉斯學習算法分類文本。基于樸素貝葉斯分類器的文本分類的通用算法
??
?? 第 1 頁 / 共 5 頁
字號:
	(hier_barrel_add_stats): New function split out from	HIER_BARREL_ADD_CHILD.	(hier_barrel_add_child): Use it.	(hier_barrel_add_rest): New function.	(hier_barrel_new_from_text_dir): Call it to add `rest' documents.	(hier_barrel_test): Allocate space for 3 as many SCORES, to make room	for the `rest' classes.	(main): Set HIER_DEFAULT_METHOD from BOW_ARGP_METHOD, if non-NULL.	* scale.c (bow_barrel_scale_weights_by_given_infogain): Only 	verbosify every 100 words.	(bow_barrel_scale_weights_by_given_foilgain): Likewise.	* vpc.c (bow_barrel_set_vpc_priors_by_counting): Fix indentation.	* rainbow-h.c: Converted to do command-line argument processing 	with libargp.	* opts.c (bow_options): Remove "version" 'V' option.  libargp can 	handle that automatically.	(_print_version): New function to print both program version and	library version.	(argp_program_version_hook): Set it to _PRINT_VERSION().	* rainbow.c (rainbow_print_usage): Function removed.  Libargp does 	that now.Mon Mar 31 11:07:30 1997  Andrew McCallum  <mccallum@jprc.com>	* barrel.c (bow_barrel_set_cdoc_priors_to_class_uniform): Use 	ALLOCA() instead of BOW_MALLOC() to avoid memory leak.	* Makefile.in (configure, config.status): Sprinkle with $(srcdir).	* configure.in: Move the setting of CFLAGS above AC_PROC_CC, so 	that it will have an effect.	* install.texi: Mention how to set CPPFLAGS in the ./configure 	line.	* vpc.c (bow_barrel_set_vpc_priors_by_counting): Properly set the 	CDOC->PRIOR's.	* rainbow.c (INFOGAIN_PAIR_VECTOR_KEY): New macro.	(rainbow_options): New option "infogain-pair-vector".	(rainbow_parse_opt): Handle it.	(main): Likewise.  When RAINBOW_WORD_COUNT_PRINTING, also print the	total number of words in each class.	* prind.c (bow_prind_set_weights): Get MAX_WI from MIN of 	WI2DVF->SIZE and BOW_NUM_WORDS(), not just BOW_NUM_WORDS().	* opts.c (bow_uniform_class_priors): New global variable.	(bow_options): New option "uniform-class-priors".	(parse_bow_opt): Handle it.	* naivebayes.c (bow_naivebayes_set_weights): Get MAX_WI from MIN 	of WI2DVF->SIZE and BOW_NUM_WORDS(), not just BOW_NUM_WORDS().	(bow_naivebayes_score): Pay attention to BOW_UNIFORM_CLASS_PRIORS.	Don't sum in score of words that don't have a DV entry!  	Previously we were allowing words that `aren't in the vocabulary' 	of the BARREL to contribute!  This was wrong.  They were 	contributing according to the Laplace Estimators, and classes with 	larger numbers of words were getting penalized.	* info_gain.c (bow_infogain_per_wi_new): Sum floating point 	CDOC->PRIOR's instead of increment integer count of documents, so 	that infogain can be calculated from documents with different 	`weights'.	(bow_infogain_per_wi_new_using_pairs): New function.  For now it	prints its results instead of returning them.	* barrel.c (bow_barrel_set_cdoc_priors_to_class_uniform): New 	function.	* bow/libbow.h: Declare new functions.Mon Mar 31 11:56:48 1997  Andrew McCallum  <mccallum@cs.cmu.edu>	* Makefile.in (CFLAGS, CPPFLAGS): Get values from configure.	* configure.in: Do AC_SUBST() for CPPFLAGS and CFLAGS.Fri Mar 28 10:28:26 1997  Andrew McCallum  <mccallum@jprc.com>	* rainbow-h.c: Fix spelling: "heir" -> "hier".  How embarrassing!	* dv.c (bow_dv_new_from_data_fp): Fix typo in feof() assertion.  	(Reported by Doreen Cheng <dcheng@PRPA.Philips.COM>.)	* rainbow.c (PRINT_COUNTS_FOR_WORD_KEY): New macro.	(rainbow_options): New option "print-counts-for-word".	(rainbow_parse_opt): Handle it.	(main): Implement it.	* bow/libbow.h: (bow_wi2dvf): Add new element to structure:	`num_words'.	(bow_barrel): Put `is_vpc' at end of structure instead of the	beginning. 	* wi2dvf.c (bow_wi2dvf_new): Initialize NUM_WORDS.	(bow_wi2dvf_add_di_wv): Increment it.	(bow_wi2dvf_add_wi_di_count_weight): Likewise.	(bow_wi2dvf_new_from_data_fp): Likewise.	(bow_wi2dvf_remove_wi): Decrement it.	(bow_wi2dvf_print_stats): Print it.	* prind.c (bow_prind_set_weights): Use BARREL->WI2DVF->SIZE and 	BARREL->WI2DVF->NUM_WORDS instead of BOW_NUM_WORDS().  In 	particular, this will allow us to set the Laplace estimators using 	the correct number of words in the barrel, not the arbitrary 	libbow-wide vocabulary size.  Properly use CDOC->WORD_COUNT 	instead of overloading CDOC->NORMALIZER.	(bow_prind_score): Likewise use BARREL->WI2DVF->SIZE and	BARREL->WI2DVF->NUM_WORDS instead of BOW_NUM_WORDS().	(bow_print_word_scores): Removed to opts.c.	* opts.c (bow_print_word_scores): Global variable moved here from 	prind.c.	(bow_options): New option "print-word-scores".	(parse_bow_opt): Handle it.	* naivebayes.c (bow_naivebayes_set_weights): Use 	BARREL->WI2DVF->SIZE and BARREL->WI2DVF->NUM_WORDS instead of 	BOW_NUM_WORDS().  In particular, this will allow us to set the 	Laplace estimators using the correct number of words in the 	barrel, not the arbitrary libbow-wide vocabulary size.	(bow_naivebayes_score): Likewise, and add code to print scores	contributions of each word with BOW_PRINT_WORD_SCORES is non-NULL.	(SCORE_WITH_LOG_PROBABILITIES): New macro.	* barrel.c (bow_barrel_printf): Comment out the code that would 	skip over documents that are not of type `model'.Thu Mar 27 11:29:34 1997  Andrew McCallum  <mccallum@jprc.com>	* rainbow-stats.pl: Make output labels more descriptive.  Say 	`average percentage accuracy'.	* split.c (bow_test_split): Use the micro-seconds field from 	gettimeofday() instead of time() to set the random number 	generator seed.  Otherwise, if we re-call this function too 	quickly we'll get exactly the same seed!  ...because time() 	returns a number of seconds.	* demos/script: New shell script file that will demo rainbow,	with running commentary.	* demos/data: New directory containing 20 articles 2 newsgroups.	This is for use with demos/script.	* install.texi: Remove mention of `checks' and `examples' 	directory; they don't exist.  (Reported by Doreen Cheng	<dcheng@PRPA.Philips.COM>.)Mon Mar 24 12:07:53 1997  Andrew McCallum  <mccallum@jprc.com>	* Makefile.in (rainbow-lisp.o): Use $(ALL_CPPFLAGS) and 	$(ALL_CLFAGS) instead of non-ALL versions.	* rainbow.c (rainbow_lisp_setup): Rewrite for use with libargp.	* methods.c (bow_method_at_name): Fix typo.	(bow_method_at_index): Likewise.	* opts.c (parse_bow_opt): Use 'g' instead of 'N' for setting gram 	size.	* rainbow.c (rainbow_lisp_query): Free the QUERY_WV before 	returning!	* methods.c (bow_method_register_with_name): New function.	(bow_method_at_name): New function.	* arrow.c (PRINT_IDF_KEY): New macro.	(arrow_options): Add new option "print-idf".	(struct arrow_arg_state): New enum ARROW_PRINTING_IDF.	(arrow_index): Prune the vocabulary if	BOW_PRUNE_VOCAB_BY_OCCUR_COUNT_N is non-zero.	(main): Add code to print idf values.	* lex-simple.c (bow_alpha_lexer, bow_alpha_only_lexer, 	bow_white_lexer): Initialize STEM_FUNC to 0 instead of 	BOW_STEM_PORTER.	* tfidf.c (bow_tfidf_set_weights): Comment out code that sets 	total_word_count.  Do the DF_TRANSFORM on DF, not on IDF!  	Otherwise we get negative IDF's.	* rainbow-h.c (use_maximum_likelihood_path): New global variable.	(_heir_barrel_set_node_scores): Use it.	(main): Set it when -M passed on command line.	(num_top_words): Moved from main-local variable to global.	(heir_barrel_test): Reduce vocab by infogain.Fri Mar 21 14:02:39 1997  Andrew McCallum  <mccallum@jprc.com>	* bow/libbow.h (bow_lexer_simple): Add entry 	TOSS_WORDS_LONGER_THAN.	(bow_wv_set_weights_to_count_times_idf): Declare new function.	* wv.c (bow_wv_set_weights_to_count_times_idf): New function.	* tfidf.c (bow_tfidf_set_weights): Comment out code saying that 	TFIDF is broken.  Rewrite the way IDF is calculated.	(bow_tfidf_score): Set and normalize the QUERY_WV weights here (even	though it is redundant) so that we can properly use the IDF from 	the BARREL when normalizing weights.  Normalize the QUERY_WV 	weight when incrementing CURRENT_SCORE.	* prind.c (bow_prind_set_weights): Skip a document if it does not 	of type model, both when setting NORMALIZER and TOTAL_TERM_COUNT, 	and when setting weights.	(bow_prind_score): Skip a document if it does not of type model.	* lex-simple.c (bow_lexer_simple_postprocess_word): Add code to 	toss words longer than SELF->TOSS_WORDS_LONGER_THAN.  Set WORDLEN 	at beginning.  It appeared that it was getting used uninitialized 	before!	(bow_alpha_lexer, bow_alpha_only_lexer, bow_white_lexer): Add value	for new field TOSS_WORDS_LONGER_THAN.	* opts.c (APPEND_STOPLIST_FILE_KEY): New macro.	(bow_options): Added "append-stoplist-file"	(parse_bow_opt): Handle new option.	* int4str.c (_str2id): Return the absolute value of the old return 	value.  Sometimes with really long strings, the return value was 	going negative.	(_str_hash_lookup): Assert that ID is non-negative.Thu Mar 20 11:47:49 1997  Andrew McCallum  <mccallum@jprc.com>	These changes by Karl Kleinpaste <karl@jprc.com>	* int4word.c (bow_words_reread_from_file): Use fopen() instead of 	bow_fopen(), so we are sure not to call abort().	* wv.c (bow_wv_sprintf): Fix function to account for length 	troubles properly.	(bow_wv_sprintf_words): New function, prints the words themselves,	rather than the word indices.	* bow/libbow.h: Declare new function.	* naivebayes.c (bow_naivebayes_set_weights): Add commented-out 	code that forces all counts to either 0 or 1.  This was used on 	some experiments with Shumeet.	* lex-html.c (bow_lexer_html_get_raw_word): Add a ! to the 	FALSE_TO_END condition test, so we don't end the tokenization too 	early.Tue Mar 18 14:47:35 1997  Andrew McCallum  <mccallum@jprc.com>	* rainbow.c (rainbow_parse_opt) [ARGP_KEY_END]: Print a useful 	error when only one classname is given.	(main): Check for rainbow_infogain_printing properly.	* opts.c (parse_bow_opt) [ARGP_KEY_END]: Check for the existance 	of BOW_DATA_DIRNAME in a way that works even when the directory is 	owned by someone else.	* bow/libbow.h (bow_fread_string): Assert that the string length 	is non-negative.	* barrel.c (_bow_barrel_version): New variable.	(BOW_DEFAULT_BARREL_VERSION): New macro.	(bow_barrel_new_from_data_fp): Read the version number instead of a	null_tag.	(bow_barrel_write): Likewise, for writing.	* arrow.c (main): Remove redundant code that is now in opts.c.Mon Mar 17 12:09:32 1997  Andrew McCallum  <mccallum@jprc.com>	* Makefile.in (%.o:%.c): Fix the order on this pattern rule.	($(DEMO_EXECUTABLES):%:%.o): Put $(DEMO_EXECUTABLES) at the beginning	of this pattern, so it matches only those files.	* arrow.c: Don't include getopt.h; we're using argp.h instead.	(arrow_index): Fix typo.	* configure.in: Don't look for getopt.h anymore.  We don't need it 	now that we are using libargp.	* configure.in: AC_INIT looking for int4str.c instead of libbow.h.	* Makefile.in (%): Use this pattern to make DEMO_EXECUTABLES 	instead of listing them all.  This avoids making all the .o's for 	one of the DEMO_EXECUTABLES.	* rainbow.c: Converted to use argp command-line argument 	processing.	* opts.c (bow_argp_method): Renamed from bow_default_method.	(parse_bow_opt) [ARGP_KEY_INIT]: Add words to stoplist.	* deflexer.c (_bow_default_lexer_init): Initialize 	bow_default_lexer to BOW_DEFAULT_LEXER_GRAM, not BOW_LEXER_GRAM!	* bow/libbow.h (bow_argp_method): Renamed from bow_default_method.	* arrow.c (arrow_parse_opt) [q]: Set query.filename.	(arrow_index): BOW_DEFAULT_METHOD renamed to BOW_ARGP_METHOD.	* arrow.c (arrow_index): Set the method according to 	BOW_DEFAULT_METHOD.	* opts.c: Fleshed out into first working version.	* error.c: Comment fix.  Include libbow.h and stdio.h.	* deflexer.c (_bow_default_lexer_init): New constructor function.	(bow_default_lexer_simple, bow_default_lexer_indirect,	bow_default_lexer_gram, bow_default_lexer_html, 	bow_default_lexer_email): New variables, default instantiations of 	lexers.	* bow/libbow.h: Add argp declarations.	(bow_argp_children): New variable.	(bow_prune_vocab_by_infogain_n): New variable.	(bow_prune_vocab_by_occur_count_n): New variable.	(bow_default_method): New variable.	(bow_data_dirname): New variable.	* arrow.c: Convert to using argp for command-line processing.	* Makefile.in: Change all instances of `libbow.h' to `bow/libbow'.	(includedir): Add `/bow' to end.	(LIBBOW_C_FILES): Add opts.c.	(ALL_CPPFLAGS): add -I$(srcdir)/bow and -I$(srcdir)/argp.	(rainbow-lisp.o): Use $< instead of rainbow.c, so VPATH will find it	when compiling in a different directory than the source.	* bow/libbow.h (STRINGIFY): New macro.	(bow_default_lexer_simple, bow_default_lexer_indirect,	bow_default_lexer_gram, bow_default_lexer_html, 	bow_default_lexer_email): Declare default instantiations of 	lexers.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲综合偷拍欧美一区色| 国产精品理论在线观看| 一本一本大道香蕉久在线精品 | 国产肉丝袜一区二区| 3d动漫精品啪啪一区二区竹菊| 91美女在线看| 色综合久久久网| 欧美亚洲免费在线一区| 93久久精品日日躁夜夜躁欧美| 波多野结衣精品在线| 成人精品免费视频| 色综合天天综合色综合av | 亚洲综合精品自拍| 亚洲一区二区免费视频| 亚洲国产精品久久艾草纯爱 | 亚洲超碰精品一区二区| 亚洲成年人影院| 免费看黄色91| 国产一区二区成人久久免费影院| 国内精品久久久久影院薰衣草| 精品中文av资源站在线观看| 国产高清不卡一区| 色婷婷综合五月| 7777精品伊人久久久大香线蕉的 | 日韩美女视频19| 亚洲一卡二卡三卡四卡 | 日韩欧美中文字幕公布| 欧美成人一级视频| 国产日韩欧美综合在线| 亚洲精品中文字幕在线观看| 日韩一区精品字幕| 成人性生交大合| 欧美日本一区二区在线观看| 精品国产污污免费网站入口 | 欧美美女一区二区| 欧美精品一区二区三区四区| 国产精品色婷婷久久58| 亚洲成人免费观看| 国产成人精品三级| 欧美精品少妇一区二区三区 | 精品国产伦一区二区三区免费| 国产精品乱码人人做人人爱| 色哟哟一区二区在线观看| 在线观看一区二区视频| 日韩视频不卡中文| 亚洲日本一区二区| 久久综合综合久久综合| 成人h动漫精品一区二| 91精品福利在线一区二区三区| 久久亚洲影视婷婷| 日韩国产欧美一区二区三区| 99久久精品国产毛片| 日韩欧美卡一卡二| 悠悠色在线精品| 成人av电影免费观看| 欧美一级高清大全免费观看| 亚洲人成亚洲人成在线观看图片| 美国av一区二区| 欧美日韩午夜在线| 亚洲精品自拍动漫在线| 国产精品电影一区二区| 久久99最新地址| 欧美日韩国产天堂| 艳妇臀荡乳欲伦亚洲一区| 成人午夜激情在线| 久久精品免费在线观看| 久久精品国产免费看久久精品| 色婷婷精品久久二区二区蜜臂av | 中文字幕精品一区二区三区精品| 日本午夜精品视频在线观看| 色婷婷激情综合| 国产精品久久久久久户外露出 | 欧美一级搡bbbb搡bbbb| 亚洲风情在线资源站| 欧美最猛性xxxxx直播| 免费看欧美美女黄的网站| 9色porny自拍视频一区二区| 91精品国产色综合久久不卡蜜臀 | 国产精品视频麻豆| 国产精品一区二区91| 日韩免费高清av| 久久精品99国产精品日本| 日韩精品中午字幕| 国产一区日韩二区欧美三区| 欧美成人r级一区二区三区| 日本午夜精品视频在线观看| 91精品国产品国语在线不卡| 三级久久三级久久| 日韩精品中文字幕一区| 国产一区啦啦啦在线观看| 久久久久久久电影| av爱爱亚洲一区| 亚洲成人在线免费| 日韩精品中文字幕一区二区三区 | 一本大道久久a久久精二百| 亚洲视频精选在线| 精品视频一区三区九区| 亚洲成av人片在线观看无码| 欧美一级高清片在线观看| 国产又黄又大久久| 亚洲欧洲三级电影| 欧美日韩精品免费观看视频| 六月婷婷色综合| 国产精品美女久久久久av爽李琼| 一本大道综合伊人精品热热| 偷拍亚洲欧洲综合| 久久久久国产精品麻豆 | 亚洲高清免费观看| 日韩精品一区二区三区中文不卡| 精品系列免费在线观看| 国产精品国产三级国产普通话三级 | 国产视频视频一区| 91成人在线免费观看| 久久成人久久爱| 亚洲精品成人a在线观看| 日韩欧美第一区| 成人国产精品视频| 免费看日韩精品| ...中文天堂在线一区| 日韩一区二区三区高清免费看看| 国产又黄又大久久| 亚洲成人一区二区| 亚洲欧洲另类国产综合| 4hu四虎永久在线影院成人| 岛国一区二区在线观看| 水蜜桃久久夜色精品一区的特点| 国产网站一区二区| 日韩一级高清毛片| 欧洲亚洲精品在线| 99久久婷婷国产综合精品电影| 三级成人在线视频| 亚洲一区二区在线观看视频| 国产性天天综合网| 日韩欧美一区在线观看| 欧美色视频一区| 99久久99久久免费精品蜜臀| 精品一区在线看| 五月天婷婷综合| 一区二区三区在线免费| 欧美高清在线精品一区| 欧美变态tickle挠乳网站| 欧美影院精品一区| 91麻豆6部合集magnet| 成人性生交大合| 国产xxx精品视频大全| 精品中文av资源站在线观看| 青青草97国产精品免费观看| 亚洲一线二线三线视频| 亚洲欧美一区二区不卡| 国产精品人妖ts系列视频| 国产色爱av资源综合区| 久久人人97超碰com| 精品久久久久久久久久久久包黑料| 欧美日本一区二区在线观看| 欧美亚洲国产bt| 欧美日韩成人在线| 欧美美女喷水视频| 欧美精品在线视频| 欧美一级二级三级蜜桃| 欧美成人一区二区三区在线观看 | 国产精品1区二区.| 国产裸体歌舞团一区二区| 久久99国产精品麻豆| 欧美大片一区二区| 欧美一卡在线观看| 欧美日韩dvd在线观看| 亚洲精品中文字幕在线观看| 欧美日韩国产成人在线91| 在线观看视频一区二区| 91福利国产成人精品照片| 欧美最新大片在线看| 欧美一区三区二区| 亚洲精品一区二区三区99| 亚洲国产成人自拍| 一片黄亚洲嫩模| 奇米影视一区二区三区小说| 激情综合色丁香一区二区| 国产成人av福利| 色婷婷av久久久久久久| 777久久久精品| 久久久久国产一区二区三区四区| 中文字幕一区二区在线观看| 亚洲综合久久av| 国产一区二区在线电影| av成人免费在线观看| 69久久夜色精品国产69蝌蚪网| 日韩一级免费观看| 亚洲天堂成人网| 久久精品国产精品亚洲综合| 成人不卡免费av| 九九久久精品视频| 国产精品1区2区| 99re这里只有精品首页| 欧美精品18+| 中文字幕电影一区| 日韩国产成人精品| 成人黄色a**站在线观看| 欧美福利电影网| 亚洲欧洲精品天堂一级 | 视频在线在亚洲|