新Alpha前端页面


新生词分析接口

<p><strong>简要描述:</strong> </p> <ul> <li>新生词分析接口</li> </ul> <p><strong>底层:</strong> 底层调用函数:analyzeArticleData20200114 底层函数路径为:PandoraSearch\SearchAndRecommentdation\SentenceSegmentation\SentTokenization6.py 底层函数返回结果格式:</p> <pre><code>入参target_text:[{'tag':'11月4日一直以来,海内外对于歼-31的印象,就是沈飞自筹资金研发的低档出口产品,在性能上不但远低于歼-20,而且也无法与F-35相提并论。但是,大家应该想一想,沈飞毕竟是掌握最先进战机技术的国家队,尽管在研发第四战机的国内竞争中失利,但并不代表其没有能力研发出更优秀的战机。而且就歼-31的特点来看,该机可谓是缩小版的F-22,与体量相对较大还被国外称为专门隐蔽出击打击敌方空中预警机和空中加油机以及战略轰炸机的歼-20对比,也许歼-31更适合用于未来的空战。'},\ {'tag2':'一直以来,海内外对于歼-31的印象,今年3月就是沈飞自筹资金研发的低档出口产品,在性能上不但远低于歼-20,而且也无法与F-35相提并论。但是,大家应该想一想,沈飞毕竟是掌握最先进战机技术的国家队,尽管在研发第四战机的国内竞争中失利,但并不代表其没有能力研发出更优秀的战机。而且就歼-31的特点来看,该机可谓是缩小版的F-22,与体量相对较大还被国外称为专门隐蔽出击打击敌方空中预警机和空中加油机以及战略轰炸机的歼-20对比,也许歼-31更适合用于未来的空战。'}, \ {'tag3': '当然,3月早期露面的歼-31的确是个丑小鸭,2019年3月4日虽然沈飞尽力想使该机看起来有中国特色,但是最终的结果就是事与愿违。但沈飞很快就改正了,2.0版和3.0版的歼-31先后问世,如果说2.0版歼-31是专用于空战的新型号,那么3.0版歼-31可能就是专为中国航母准备的隐身舰载机。对于3.0版歼-31大家不要再按习惯贬低了,作为后来者,该机充分吸收了F-22、F-35和歼-20的所有优点,并融入了更多沈飞的独有技术,使得歼-31成为中国未来国产航母上可电磁弹射升空的理想舰载机。'}] </code></pre> <p><strong>本接口请求URL:</strong> </p> <ul> <li><code>/api/v3/xadmin/objects/new_words_analyze0114/</code></li> </ul> <p><strong>请求方式:</strong></p> <ul> <li>post</li> </ul> <p><strong>参数:</strong> </p> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">必选</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">target_text</td> <td style="text-align: left;">是</td> <td style="text-align: left;">list</td> <td>匹配的文本列表,是列表内套字典形式,字典的键名自拟,值为待匹配的文本</td> </tr> <tr> <td style="text-align: left;">only_res</td> <td style="text-align: left;">是</td> <td style="text-align: left;">int</td> <td>1代表 只返回分析结果, 0代表 结果写入数据库</td> </tr> <tr> <td style="text-align: left;">db_host</td> <td style="text-align: left;">否</td> <td style="text-align: left;">str</td> <td>数据库host</td> </tr> <tr> <td style="text-align: left;">db_user</td> <td style="text-align: left;">否</td> <td style="text-align: left;">str</td> <td>数据库用户名</td> </tr> <tr> <td style="text-align: left;">db_pwd</td> <td style="text-align: left;">否</td> <td style="text-align: left;">str</td> <td>数据库密码</td> </tr> <tr> <td style="text-align: left;">db_port</td> <td style="text-align: left;">否</td> <td style="text-align: left;">str</td> <td>数据库端口</td> </tr> <tr> <td style="text-align: left;">db_name</td> <td style="text-align: left;">否</td> <td style="text-align: left;">str</td> <td>数据库的库名</td> </tr> <tr> <td style="text-align: left;">tb_name</td> <td style="text-align: left;">否</td> <td style="text-align: left;">str</td> <td>生词表名</td> </tr> <tr> <td style="text-align: left;">sent_tb_name</td> <td style="text-align: left;">否</td> <td style="text-align: left;">str</td> <td>句子表名</td> </tr> <tr> <td style="text-align: left;">min_freq</td> <td style="text-align: left;">否</td> <td style="text-align: left;">int</td> <td>最小频度,指定返回文本的最小频度</td> </tr> <tr> <td style="text-align: left;">each_len</td> <td style="text-align: left;">否</td> <td style="text-align: left;">int</td> <td>切词字数上限,默认8000</td> </tr> <tr> <td style="text-align: left;">convert_time</td> <td style="text-align: left;">否</td> <td style="text-align: left;">bool</td> <td>是否时间格式转换,默认否False</td> </tr> <tr> <td style="text-align: left;">record_word_freq</td> <td style="text-align: left;">否</td> <td style="text-align: left;">bool</td> <td>是否将词频计入redis,默认否False</td> </tr> </tbody> </table> <p><strong> 注: 当only_res为0时,db_host,db_user,db_pwd,db_port,db_name,tb_name,sent_tb_name全部不允许为空,库必须存在,接口会自动创建两张数据表,一个是生词表,一个是句子表 </strong></p> <p><strong>入参示例</strong> 入参: target_text:[{'p':'秋天养球根花卉,不注意这5点开花难;做好这4点,花开艳丽满屋香'},{'s':&quot;圆肩显胖没商量?看看马思纯、蒋欣穿搭术让圆肩不显胖&quot;}]</p> <p>成功结果:</p> <pre><code>{ "status": 1, "message": "success", "resultObj": { "sent_info": [ { "input_key": "tag", "second_cut_sent": "11月4日||一直||以来||,||海内外||对于歼-31的印象||,||就是沈飞自筹资金研发的低档||出口||产品||,||在||性能||上不但远低于歼-20||,||而且||也||无法||与f-35相提并论。但是||,||大家应该想一想,沈飞毕竟||是||掌握||最||先进||战机||技术的国家队,尽管在||研发||第四||战机||的||国内||竞争||中||失利||,||但并不代表其没有||能力||研发||出||更||优秀||的||战机||。||而且就歼-31的特点||来看||,||该机可谓是缩小版的||f||-22||,||与||体量||相对||较大||还||被||国外||称为||专门||隐蔽||出击||打击||敌方||空中||预警机||和空中加油机以及战略轰炸机||的||歼||-20||对比||,||也许||歼-31||更||适合||用于||未来的空战||。", # 切分后的文本,和mr相同 "input_text": "11月4日一直以来,海内外对于歼-31的印象,就是沈飞自筹资金研发的低档出口产品,在性能上不但远低于歼-20,而且也无法与F-35相提并论。但是,大家应该想一想,沈飞毕竟是掌握最先进战机技术的国家队,尽管在研发第四战机的国内竞争中失利,但并不代表其没有能力研发出更优秀的战机。而且就歼-31的特点来看,该机可谓是缩小版的F-22,与体量相对较大还被国外称为专门隐蔽出击打击敌方空中预警机和空中加油机以及战略轰炸机的歼-20对比,也许歼-31更适合用于未来的空战。", # 原文本 "id": "para1_0", "mr": "11月4日||一直||以来||,||海内外||对于歼-31的印象||,||就是沈飞自筹资金研发的低档||出口||产品||,||在||性能||上不但远低于歼-20||,||而且||也||无法||与f-35相提并论。但是||,||大家应该想一想,沈飞毕竟||是||掌握||最||先进||战机||技术的国家队,尽管在||研发||第四||战机||的||国内||竞争||中||失利||,||但并不代表其没有||能力||研发||出||更||优秀||的||战机||。||而且就歼-31的特点||来看||,||该机可谓是缩小版的||f||-22||,||与||体量||相对||较大||还||被||国外||称为||专门||隐蔽||出击||打击||敌方||空中||预警机||和空中加油机以及战略轰炸机||的||歼||-20||对比||,||也许||歼-31||更||适合||用于||未来的空战||。" # 切分后的文本,和second_cut_sent相同 }, { "input_key": "tag3", "second_cut_sent": "当然||,||3月||早期||露面||的||歼-31||的确||是||个||丑小鸭||,||2019年3月4日||虽然||沈飞||尽力||想||使||该机||看起来||有||中国||特色||,||但是||最终||的||结果||就是||事与愿违||。||但||沈飞||很快||就||改正||了||,||2.0||版||和||3.0||版||的||歼-31||先后||问世||,||如果说||2.0||版歼-31||是||专用||于||空战||的||新型||号||,||那么||3.0版歼-31||可能||就是||专||为||中国||航母||准备||的||隐身||舰载机||。||对于||3.0版歼-31||大家||不要||再||按||习惯||贬低||了||,||作为||后来者||,||该机||充分||吸收||了||f||-22||、||f-35||和||歼||-20||的||所有||优点||,||并||融入||了||更||多||沈飞||的||独有||技术||,||使得||歼-31||成为||中国||未来||国产||航母||上||可||电磁||弹射||升空||的||理想||舰载机||。", "input_text": "当然,3月早期露面的歼-31的确是个丑小鸭,2019年3月4日虽然沈飞尽力想使该机看起来有中国特色,但是最终的结果就是事与愿违。但沈飞很快就改正了,2.0版和3.0版的歼-31先后问世,如果说2.0版歼-31是专用于空战的新型号,那么3.0版歼-31可能就是专为中国航母准备的隐身舰载机。对于3.0版歼-31大家不要再按习惯贬低了,作为后来者,该机充分吸收了F-22、F-35和歼-20的所有优点,并融入了更多沈飞的独有技术,使得歼-31成为中国未来国产航母上可电磁弹射升空的理想舰载机。", "id": "para2_0", "mr": "当然||,||3月||早期||露面||的||歼-31||的确||是||个||丑小鸭||,||2019年3月4日||虽然||沈飞||尽力||想||使||该机||看起来||有||中国||特色||,||但是||最终||的||结果||就是||事与愿违||。||但||沈飞||很快||就||改正||了||,||2.0||版||和||3.0||版||的||歼-31||先后||问世||,||如果说||2.0||版歼-31||是||专用||于||空战||的||新型||号||,||那么||3.0版歼-31||可能||就是||专||为||中国||航母||准备||的||隐身||舰载机||。||对于||3.0版歼-31||大家||不要||再||按||习惯||贬低||了||,||作为||后来者||,||该机||充分||吸收||了||f||-22||、||f-35||和||歼||-20||的||所有||优点||,||并||融入||了||更||多||沈飞||的||独有||技术||,||使得||歼-31||成为||中国||未来||国产||航母||上||可||电磁||弹射||升空||的||理想||舰载机||。" }, { "input_key": "tag2", "second_cut_sent": "一直||以来||,||海内外||对于歼-31的印象||,||今年||3月||就是沈飞自筹资金研发的低档||出口||产品||,||在||性能||上不但远低于歼-20||,||而且||也||无法||与f-35相提并论。但是||,||大家应该想一想,沈飞毕竟||是||掌握||最||先进||战机||技术的国家队,尽管在||研发||第四||战机||的||国内||竞争||中||失利||,||但并不代表其没有||能力||研发||出||更||优秀||的||战机||。||而且就歼-31的特点||来看||,||该机可谓是缩小版的||f||-22||,||与||体量||相对||较大||还||被||国外||称为||专门||隐蔽||出击||打击||敌方||空中||预警机||和空中加油机以及战略轰炸机||的||歼||-20||对比||,||也许||歼-31||更||适合||用于||未来的空战||。", "input_text": "一直以来,海内外对于歼-31的印象,今年3月就是沈飞自筹资金研发的低档出口产品,在性能上不但远低于歼-20,而且也无法与F-35相提并论。但是,大家应该想一想,沈飞毕竟是掌握最先进战机技术的国家队,尽管在研发第四战机的国内竞争中失利,但并不代表其没有能力研发出更优秀的战机。而且就歼-31的特点来看,该机可谓是缩小版的F-22,与体量相对较大还被国外称为专门隐蔽出击打击敌方空中预警机和空中加油机以及战略轰炸机的歼-20对比,也许歼-31更适合用于未来的空战。", "id": "para3_0", "mr": "一直||以来||,||海内外||对于歼-31的印象||,||今年||3月||就是沈飞自筹资金研发的低档||出口||产品||,||在||性能||上不但远低于歼-20||,||而且||也||无法||与f-35相提并论。但是||,||大家应该想一想,沈飞毕竟||是||掌握||最||先进||战机||技术的国家队,尽管在||研发||第四||战机||的||国内||竞争||中||失利||,||但并不代表其没有||能力||研发||出||更||优秀||的||战机||。||而且就歼-31的特点||来看||,||该机可谓是缩小版的||f||-22||,||与||体量||相对||较大||还||被||国外||称为||专门||隐蔽||出击||打击||敌方||空中||预警机||和空中加油机以及战略轰炸机||的||歼||-20||对比||,||也许||歼-31||更||适合||用于||未来的空战||。" } ], "extra_info": "quote_keywords:\n\n--------------------\ntime_keywords:\n11月4日,3月,2019年3月4日\n--------------------\nnumber_keywords:\n-35,-20,-22,-31,3.0,2.0\n--------------------\nfiltered_words_msg:\nword:歼, freq:14\n歼-31, 4, 0.642857142857\t歼-20, 4, 0.357142857143\n----------------------------------------------------------------------------------------------------\nword:-31, freq:12\n-31的, 4, 0.333333333333\n----------------------------------------------------------------------------------------------------\nword:f, freq:6\nf-35, 4, 0.5\tf-22, 4, 0.5\n----------------------------------------------------------------------------------------------------\nword:版, freq:4\n版的f-22,与, 8, 0.5\t版的f-22, 6, 0.5\t版的f, 3, 0.5\t版的, 2, 0.75\n----------------------------------------------------------------------------------------------------\nword:和, freq:4\n和空中加油机以及战略轰炸机, 13, 0.5\t和空中加油机以及战略, 10, 0.5\t和空中加油机以及, 8, 0.5\t和空中加油机, 6, 0.5\t和空中, 3, 0.5\n----------------------------------------------------------------------------------------------------\nword:空中, freq:4\n空中加油机以及战略轰炸机的, 13, 0.5\t空中预警机和空中加油机以及, 13, 0.5\t空中加油机以及战略轰炸机, 12, 0.5\t空中预警机和空中加油机, 11, 0.5\t空中加油机以及战略, 9, 0.5\t空中预警机和空中, 8, 0.5\t空中加油机以及, 7, 0.5\t空中预警机和, 6, 0.5\t空中加油机, 5, 0.5\t空中预警机, 5, 0.5\n----------------------------------------------------------------------------------------------------\nword:与, freq:4\n与f-35相提并论。但是, 12, 0.5\t与f-35相提并论, 9, 0.5\t与体量相对较大还被, 9, 0.5\t与体量相对较大还, 8, 0.5\t与体量相对较大, 7, 0.5\t与f-35, 5, 0.5\t与体量相对, 5, 0.5\t与体量, 3, 0.5\t与f, 2, 0.5\n----------------------------------------------------------------------------------------------------\nword:在, freq:4\n在研发第四战机的国内, 10, 0.5\t在性能上不但远低于, 9, 0.5\t在研发第四战机的, 8, 0.5\t在研发第四战机, 7, 0.5\t在性能上不但远, 7, 0.5\t在性能上不但, 6, 0.5\t在研发第四, 5, 0.5\t在性能上, 4, 0.5\t在性能, 3, 0.5\t在研发, 3, 0.5\n----------------------------------------------------------------------------------------------------\nword:而且, freq:4\n而且就歼-31的特点, 10, 0.5\t而且也无法与f-35, 10, 0.5\t而且就歼-31的, 8, 0.5\t而且就歼-31, 7, 0.5\t而且也无法与f, 7, 0.5\t而且也无法与, 6, 0.5\t而且也无法, 5, 0.5\t而且就歼, 4, 0.5\t而且就, 3, 0.5\t而且也, 3, 0.5\n----------------------------------------------------------------------------------------------------\nword:该机, freq:4\n该机可谓是缩小版的, 9, 0.5\t该机可谓是缩小版, 8, 0.5\t该机可谓是缩小, 7, 0.5\t该机可谓是, 5, 0.5\t该机可谓, 4, 0.5\n----------------------------------------------------------------------------------------------------\nword:就是, freq:4\n就是沈飞自筹资金研发的低档, 13, 0.5\t就是沈飞自筹资金研发的, 11, 0.5\t就是沈飞自筹资金研发, 10, 0.5\t就是沈飞自筹资金, 8, 0.5\t就是沈飞, 4, 0.5\n----------------------------------------------------------------------------------------------------\nword:但, freq:3\n但并不代表其没有, 8, 0.666666666667\t但并不代表其, 6, 0.666666666667\t但并不代表, 5, 0.666666666667\t但并不, 3, 0.666666666667\t但并, 2, 0.666666666667\n----------------------------------------------------------------------------------------------------\nword:-35, freq:3\n-35相提并论。但是,大家, 13, 0.666666666667\t-35相提并论。但是, 10, 0.666666666667\t-35相提并论, 7, 0.666666666667\n----------------------------------------------------------------------------------------------------\nword:但是, freq:3\n但是,大家应该想一想, 10, 0.666666666667\t但是,大家应该, 7, 0.666666666667\t但是,大家, 5, 0.666666666667\n----------------------------------------------------------------------------------------------------\nword:3.0, freq:3\n3.0版歼-31, 8, 0.666666666667\t3.0版歼, 5, 0.666666666667\n----------------------------------------------------------------------------------------------------\nword:技术, freq:3\n技术的国家队,尽管在, 10, 0.666666666667\t技术的国家队,尽管, 9, 0.666666666667\t技术的国家队, 6, 0.666666666667\t技术的, 3, 0.666666666667\n----------------------------------------------------------------------------------------------------\nword:-22, freq:3\n-22,与体量相对较大, 11, 0.666666666667\t-22,与体量相对, 9, 0.666666666667\t-22,与体量, 7, 0.666666666667\t-22,与, 5, 0.666666666667\n----------------------------------------------------------------------------------------------------\nword:大家, freq:3\n大家应该想一想,沈飞毕竟, 12, 0.666666666667\t大家应该想一想,沈飞, 10, 0.666666666667\t大家应该想一想, 7, 0.666666666667\t大家应该, 4, 0.666666666667\n----------------------------------------------------------------------------------------------------\nword:上, freq:3\n上不但远低于歼-20, 10, 0.666666666667\t上不但远低于歼, 7, 0.666666666667\t上不但远低于, 6, 0.666666666667\t上不但远, 4, 0.666666666667\t上不但, 3, 0.666666666667\n----------------------------------------------------------------------------------------------------\nword:对于, freq:3\n对于歼-31的印象, 9, 0.666666666667\t对于歼-31的, 7, 0.666666666667\t对于歼-31, 6, 0.666666666667\t对于歼, 3, 0.666666666667\n----------------------------------------------------------------------------------------------------\nword:并, freq:3\n并不代表其没有能力, 9, 0.666666666667\t并不代表其没有, 7, 0.666666666667\t并不代表其, 5, 0.666666666667\t并不代表, 4, 0.666666666667\t并不, 2, 0.666666666667\n----------------------------------------------------------------------------------------------------\nword:未来, freq:3\n未来的空战, 5, 0.666666666667\t未来的, 3, 0.666666666667\n----------------------------------------------------------------------------------------------------\nword:版歼, freq:3\n版歼-31, 5, 1.0\n----------------------------------------------------------------------------------------------------\nword:就, freq:3\n就歼-31的特点来看, 10, 0.666666666667\t就歼-31的特点, 8, 0.666666666667\t就歼-31的, 6, 0.666666666667\t就歼-31, 5, 0.666666666667\t就歼, 2, 0.666666666667\n----------------------------------------------------------------------------------------------------", "words_info": { "融入": { "concept": "语言", # 主键对应的概念 "adj_score": 0.18852459016393444, "weight": 1.0, # 权重 "text": "融入", "is_new": 0, # 是否新词,1新词,0非新词 "obj_key": "c70_DZtnzEXa", # 主键 "alias": "", "frequency": 1, # 频度 "cname": "", "type": "normal" # 类型 }, "先进": { "concept": "词汇", "adj_score": 1.2397888198757765, "weight": 2410.0, "text": "先进", "is_new": 0, "obj_key": "c322_etnlEz6o", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "虽然": { "concept": "语言", "adj_score": 0.8742213114754098, "weight": 611.0, "text": "虽然", "is_new": 0, "obj_key": "c70_Q7YgO4fl", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "-31的": { "concept": "", "adj_score": 2.8394495978006313, "weight": 1.0, "text": "-31的", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "以来": { "concept": "语言", "adj_score": 1.9613913043478262, "weight": 771.0, "text": "以来", "is_new": 0, "obj_key": "c70_AKaa33zF", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "低档": { "concept": "成语", "adj_score": 1.7122422360248448, "weight": 637.0, "text": "低档", "is_new": 0, "obj_key": "c317_Btzcr46n", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "可谓": { "concept": "语言", "adj_score": 0.6900248447204969, "weight": 636.0, "text": "可谓", "is_new": 0, "obj_key": "c70_z9Xge4fn", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "结果": { "concept": "语言", "adj_score": 0.776844262295082, "weight": 2053.0, "text": "结果", "is_new": 0, "obj_key": "c70_tMIBA46A", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "使得": { "concept": "语言", "adj_score": 0.13577868852459016, "weight": 534.0, "text": "使得", "is_new": 0, "obj_key": "c70_rxKDa46x", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "国内": { "concept": "语言", "adj_score": 1.0593975155279503, "weight": 30.0, "text": "国内", "is_new": 0, "obj_key": "c70_7ydmmaVu", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "航母": { "concept": "知识类文章", "adj_score": 0.4603688524590164, "weight": 1.0, "text": "航母", "is_new": 0, "obj_key": "c646_zvrMoyth", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "印象": { "concept": "语言", "adj_score": 1.84972049689441, "weight": 12032.0, "text": "印象", "is_new": 0, "obj_key": "c70_aeA1KaF0", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "缩小": { "concept": "语言", "adj_score": 0.6642546583850931, "weight": 605.0, "text": "缩小", "is_new": 0, "obj_key": "c70_CTJBAzfo", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "技术的国家队,尽管在": { "concept": "", "adj_score": 1.7054285714285715, "weight": 1.0, "text": "技术的国家队,尽管在", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "舰载机": { "concept": "飞行器", "adj_score": 0.43196721311475406, "weight": 3958.0, "text": "舰载机", "is_new": 0, "obj_key": "c603_zg7bwa1B", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "掌握": { "concept": "语言", "adj_score": 1.2655590062111801, "weight": 1099.0, "text": "掌握", "is_new": 0, "obj_key": "c70_6VshXzfo", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "事与愿违": { "concept": "成语", "adj_score": 0.7606147540983607, "weight": 1000.0, "text": "事与愿违", "is_new": 0, "obj_key": "c317_lUZH94fi", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "11月4日": { "concept": "事件", "adj_score": 1.0, "weight": 702.0, "text": "11月4日", "is_new": 0, "obj_key": "c9_kHpBzF7R", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "特色": { "concept": "语言", "adj_score": 0.8093032786885246, "weight": 4671.0, "text": "特色", "is_new": 0, "obj_key": "c70_7lenzI1P", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "第四": { "concept": "语言", "adj_score": 1.1023478260869564, "weight": 795.0, "text": "第四", "is_new": 0, "obj_key": "c70_xmlfrEEu", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "问世": { "concept": "知识类文章", "adj_score": 0.6348360655737705, "weight": 1.0, "text": "问世", "is_new": 0, "obj_key": "c646_H5ovcysW", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "国家队": { "concept": "语言", "adj_score": 1.1796583850931677, "weight": 39454.0, "text": "国家队", "is_new": 0, "obj_key": "c70_tN4A9I2p", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "理想": { "concept": "语言", "adj_score": 0.034344262295081966, "weight": 12527.0, "text": "理想", "is_new": 0, "obj_key": "c70_Iagfrd1v", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "不要": { "concept": "语言", "adj_score": 0.3670491803278689, "weight": 735.0, "text": "不要", "is_new": 0, "obj_key": "c70_bfa69zft", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "早期": { "concept": "语言", "adj_score": 0.9797131147540984, "weight": 1862.0, "text": "早期", "is_new": 0, "obj_key": "c70_DUUtHESu", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "自筹资金": { "concept": "术语", "adj_score": 1.7723726708074534, "weight": 1550.0, "text": "自筹资金", "is_new": 0, "obj_key": "c142_MfZOGz6y", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "出口": { "concept": "语言", "adj_score": 1.695062111801242, "weight": 2363.0, "text": "出口", "is_new": 0, "obj_key": "c70_zzTXWEBR", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "弹射": { "concept": "语言", "adj_score": 0.05463114754098361, "weight": 580.0, "text": "弹射", "is_new": 0, "obj_key": "c70_Kz5aNyCb", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "露面": { "concept": "语言", "adj_score": 0.9715983606557377, "weight": 1269.0, "text": "露面", "is_new": 0, "obj_key": "c70_iSm0C3BP", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "失利": { "concept": "语言", "adj_score": 1.016447204968944, "weight": 594.0, "text": "失利", "is_new": 0, "obj_key": "c70_kzs1Bzfw", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "想一想": { "concept": "语言", "adj_score": 1.3428695652173912, "weight": 221.0, "text": "想一想", "is_new": 0, "obj_key": "c70_4eM3td2a", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "对比": { "concept": "语言", "adj_score": 0.19180124223602485, "weight": 1058.0, "text": "对比", "is_new": 0, "obj_key": "c70_ncwbnESu", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "与f-35相提并论。但是": { "concept": "", "adj_score": 1.4889006211180125, "weight": 1.0, "text": "与f-35相提并论。但是", "is_new": 1, "obj_key": "", "alias": "", "frequency": 2, "cname": "", "type": null }, "优秀": { "concept": "语言", "adj_score": 0.870416149068323, "weight": 3490.0, "text": "优秀", "is_new": 0, "obj_key": "c70_wkRFSEBU", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "就是沈飞自筹资金研发的低档": { "concept": "", "adj_score": 2.3067329192546584, "weight": 1.0, "text": "就是沈飞自筹资金研发的低档", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "隐蔽": { "concept": "语言", "adj_score": 0.45809316770186337, "weight": 1353.0, "text": "隐蔽", "is_new": 0, "obj_key": "c70_ZP218d1J", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "特点": { "concept": "语言", "adj_score": 0.7501552795031056, "weight": 31951.0, "text": "特点", "is_new": 0, "obj_key": "c70_hmm1Oydi", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "出击": { "concept": "语言", "adj_score": 0.4409130434782609, "weight": 538.0, "text": "出击", "is_new": 0, "obj_key": "c70_PwgSZECc", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "新型": { "concept": "语言", "adj_score": 0.5496311475409836, "weight": 1540.0, "text": "新型", "is_new": 0, "obj_key": "c70_2hUwlaBN", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "但是,大家应该想一想": { "concept": "", "adj_score": 1.903, "weight": 1.0, "text": "但是,大家应该想一想", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "不但": { "concept": "语言", "adj_score": 1.617751552795031, "weight": 1.0, "text": "不但", "is_new": 0, "obj_key": "c70_zygPrEYa", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "相提并论": { "concept": "成语", "adj_score": 1.4459503105590064, "weight": 1711.0, "text": "相提并论", "is_new": 0, "obj_key": "c317_EEoDezfo", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "以及": { "concept": "语言", "adj_score": 0.2948819875776397, "weight": 1361.0, "text": "以及", "is_new": 0, "obj_key": "c70_9LGkdzfA", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "没有": { "concept": "语言", "adj_score": 0.9391366459627328, "weight": 2181.0, "text": "没有", "is_new": 0, "obj_key": "c70_jPWWzzfs", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "在研发第四战机的国内": { "concept": "", "adj_score": 1.1281180124223602, "weight": 1.0, "text": "在研发第四战机的国内", "is_new": 1, "obj_key": "", "alias": "", "frequency": 2, "cname": "", "type": null }, "习惯": { "concept": "语言", "adj_score": 0.3508196721311475, "weight": 2655.0, "text": "习惯", "is_new": 0, "obj_key": "c70_BZkUOaBI", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "中国": { "concept": "国家", "adj_score": 0.8174180327868852, "weight": 5819826.0, "text": "中国", "is_new": 0, "obj_key": "c1_Ozotvzgn", "alias": "", "frequency": 3, "cname": "", "type": "normal" }, "如果说": { "concept": "语言", "adj_score": 0.6226639344262295, "weight": 149.0, "text": "如果说", "is_new": 0, "obj_key": "c70_v3ZBkaLd", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "打击": { "concept": "语言", "adj_score": 0.4237329192546584, "weight": 1114.0, "text": "打击", "is_new": 0, "obj_key": "c70_v1WvIzfk", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "独有": { "concept": "语言", "adj_score": 0.1560655737704918, "weight": 539.0, "text": "独有", "is_new": 0, "obj_key": "c70_QXZI44fl", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "上不但远低于歼-20": { "concept": "", "adj_score": 2.126341614906832, "weight": 1.0, "text": "上不但远低于歼-20", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "准备": { "concept": "语言", "adj_score": 0.4522540983606557, "weight": 2706.0, "text": "准备", "is_new": 0, "obj_key": "c70_e9zHTbAq", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "该机可谓是缩小版的": { "concept": "", "adj_score": 1.2072049689440993, "weight": 1.0, "text": "该机可谓是缩小版的", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "-35相提并论。但是,大家": { "concept": "", "adj_score": 1.97172049689441, "weight": 1.0, "text": "-35相提并论。但是,大家", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "的确": { "concept": "成语", "adj_score": 0.9431967213114755, "weight": 750.0, "text": "的确", "is_new": 0, "obj_key": "c317_Qippmz6n", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "毕竟": { "concept": "语言", "adj_score": 1.2913291925465837, "weight": 666.0, "text": "毕竟", "is_new": 0, "obj_key": "c70_Xpzdbz6t", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "来看": { "concept": "语言", "adj_score": 0.7329751552795032, "weight": 70.0, "text": "来看", "is_new": 0, "obj_key": "c70_zdCzbaYa", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "较大": { "concept": "语言", "adj_score": 0.5439937888198758, "weight": 1.0, "text": "较大", "is_new": 0, "obj_key": "c70_CQcyzEXa", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "尽力": { "concept": "语言", "adj_score": 0.8579918032786885, "weight": 766.0, "text": "尽力", "is_new": 0, "obj_key": "c70_yX3aH4fi", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "研发": { "concept": "语言", "adj_score": 1.7380124223602484, "weight": 1323.0, "text": "研发", "is_new": 0, "obj_key": "c70_JmXEB46y", "alias": "", "frequency": 6, "cname": "", "type": "normal" }, "版的f-22,与": { "concept": "", "adj_score": 1.1470745341614907, "weight": 1.0, "text": "版的f-22,与", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "可能": { "concept": "语言", "adj_score": 0.492827868852459, "weight": 705.0, "text": "可能", "is_new": 0, "obj_key": "c70_iXyWIaC5", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "空战": { "concept": "语言", "adj_score": 0.6075734650239283, "weight": 6990.0, "text": "空战", "is_new": 0, "obj_key": "c70_rwKOUaZ3", "alias": "", "frequency": 3, "cname": "", "type": "normal" }, "产品": { "concept": "语言", "adj_score": 1.6778819875776398, "weight": 9999999.0, "text": "产品", "is_new": 0, "obj_key": "c70_fxZjoaBo", "alias": "", "frequency": 2, "cname": "商品", "type": "normal" }, "尽管": { "concept": "语言", "adj_score": 1.1452981366459627, "weight": 654.0, "text": "尽管", "is_new": 0, "obj_key": "c70_gutbezfy", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "预警机": { "concept": "武器", "adj_score": 0.3721925465838509, "weight": 11828.0, "text": "预警机", "is_new": 0, "obj_key": "c396_jRrTW46x", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "改正": { "concept": "语言", "adj_score": 0.715983606557377, "weight": 594.0, "text": "改正", "is_new": 0, "obj_key": "c70_1gjfuyBB", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "当然": { "concept": "语言", "adj_score": 1.0, "weight": 656.0, "text": "当然", "is_new": 0, "obj_key": "c70_FxBeg4fr", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "国产": { "concept": "语言", "adj_score": 0.08709016393442623, "weight": 53659.0, "text": "国产", "is_new": 0, "obj_key": "c70_axPpkEF1", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "相对": { "concept": "语言", "adj_score": 0.5611739130434782, "weight": 1503.0, "text": "相对", "is_new": 0, "obj_key": "c70_meq64zfn", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "隐身": { "concept": "语言", "adj_score": 0.4400819672131147, "weight": 1.0, "text": "隐身", "is_new": 0, "obj_key": "c70_8Ei6gaVu", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "版歼-31": { "concept": "", "adj_score": 0.5983196721311476, "weight": 1.0, "text": "版歼-31", "is_new": 1, "obj_key": "", "alias": "", "frequency": 1, "cname": "", "type": null }, "后来者": { "concept": "知识类文章", "adj_score": 0.31836065573770495, "weight": 1.0, "text": "后来者", "is_new": 0, "obj_key": "c646_y75gE3up", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "作为": { "concept": "语言", "adj_score": 0.3264754098360656, "weight": 1677.0, "text": "作为", "is_new": 0, "obj_key": "c70_s6rfH4fm", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "能力": { "concept": "语言", "adj_score": 0.9219565217391303, "weight": 328611.0, "text": "能力", "is_new": 0, "obj_key": "c70_PKHVZ46q", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "战略": { "concept": "语言", "adj_score": 0.27770186335403724, "weight": 93877.0, "text": "战略", "is_new": 0, "obj_key": "c70_Zh49SaEV", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "沈飞": { "concept": "教授", "adj_score": 2.6556593524081054, "weight": 2241.0, "text": "沈飞", "is_new": 0, "obj_key": "c374_JEPglA6b", "alias": "", "frequency": 7, "cname": "", "type": "normal" }, "性能": { "concept": "语言", "adj_score": 1.6435217391304349, "weight": 73095.0, "text": "性能", "is_new": 0, "obj_key": "c70_AXa2GaF4", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "未来的空战": { "concept": "", "adj_score": 0.5715403726708075, "weight": 1.0, "text": "未来的空战", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "专用": { "concept": "语言", "adj_score": 0.5739754098360655, "weight": 5694.0, "text": "专用", "is_new": 0, "obj_key": "c70_poF7dzfl", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "应该": { "concept": "语言", "adj_score": 1.3600496894409937, "weight": 694.0, "text": "应该", "is_new": 0, "obj_key": "c70_iOz8n46r", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "就歼-31的特点来看": { "concept": "", "adj_score": 1.301695652173913, "weight": 1.0, "text": "就歼-31的特点来看", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "歼-31": { "concept": "飞行器", "adj_score": 2.852097036961613, "weight": 3461.0, "text": "歼-31", "is_new": 0, "obj_key": "c603_7JWVCa3x", "alias": "", "frequency": 3, "cname": "", "type": null }, "敌方": { "concept": "语言", "adj_score": 0.4065527950310559, "weight": 1.0, "text": "敌方", "is_new": 0, "obj_key": "c70_n9tbXaXa", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "那么": { "concept": "语言", "adj_score": 0.5334016393442623, "weight": 546.0, "text": "那么", "is_new": 0, "obj_key": "c70_v6bzh4fA", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "而且就歼-31的特点": { "concept": "", "adj_score": 0.8188757763975155, "weight": 1.0, "text": "而且就歼-31的特点", "is_new": 1, "obj_key": "", "alias": "", "frequency": 2, "cname": "", "type": null }, "低于": { "concept": "语言", "adj_score": 1.5919813664596274, "weight": 1.0, "text": "低于", "is_new": 0, "obj_key": "c70_DeHgJEXa", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "升空": { "concept": "语言", "adj_score": 0.04651639344262295, "weight": 524.0, "text": "升空", "is_new": 0, "obj_key": "c70_byxaf46y", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "战机": { "concept": "语言", "adj_score": 1.2226086956521738, "weight": 590.0, "text": "战机", "is_new": 0, "obj_key": "c70_lzMnI46u", "alias": "", "frequency": 6, "cname": "", "type": "normal" }, "很快": { "concept": "语言", "adj_score": 0.728155737704918, "weight": 684.0, "text": "很快", "is_new": 0, "obj_key": "c70_SoU0baEs", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "加油机": { "concept": "语言", "adj_score": 0.32065217391304346, "weight": 4980.0, "text": "加油机", "is_new": 0, "obj_key": "c70_4dpadI2O", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "海内外": { "concept": "生词", "adj_score": 1.9356211180124223, "weight": 43.0, "text": "海内外", "is_new": 0, "obj_key": "c640_XvhFaHIE", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "无法": { "concept": "语言", "adj_score": 1.506080745341615, "weight": 747.0, "text": "无法", "is_new": 0, "obj_key": "c70_BalmuyAb", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "轰炸机": { "concept": "武器", "adj_score": 0.2605217391304348, "weight": 9999999.0, "text": "轰炸机", "is_new": 0, "obj_key": "c396_vmgtJCa9", "alias": "", "frequency": 2, "cname": "飞行器", "type": "normal" }, "代表": { "concept": "语言", "adj_score": 0.9649068322981367, "weight": 170550.0, "text": "代表", "is_new": 0, "obj_key": "c70_lDAlXGAm", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "充分": { "concept": "语言", "adj_score": 0.2940163934426229, "weight": 725.0, "text": "充分", "is_new": 0, "obj_key": "c70_jyiMz4fB", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "适合": { "concept": "语言", "adj_score": 0.10590062111801242, "weight": 1201.0, "text": "适合", "is_new": 0, "obj_key": "c70_CZUzjESx", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "竞争": { "concept": "语言", "adj_score": 1.042217391304348, "weight": 9999999.0, "text": "竞争", "is_new": 0, "obj_key": "c70_d0D1Od1Q", "alias": "", "frequency": 2, "cname": "竞争", "type": "normal" }, "专门": { "concept": "语言", "adj_score": 0.47527329192546586, "weight": 29553.0, "text": "专门", "is_new": 0, "obj_key": "c70_fVquz4fr", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "吸收": { "concept": "语言", "adj_score": 0.28590163934426227, "weight": 1278.0, "text": "吸收", "is_new": 0, "obj_key": "c70_VsLsp46s", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "但并不代表其没有": { "concept": "", "adj_score": 1.4906770186335403, "weight": 1.0, "text": "但并不代表其没有", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "今年": { "concept": "语言", "adj_score": 0.9225217391304348, "weight": 593.0, "text": "今年", "is_new": 0, "obj_key": "c70_FgUn4ysd", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "电磁": { "concept": "虚拟人物", "adj_score": 0.06274590163934426, "weight": 8366.0, "text": "电磁", "is_new": 0, "obj_key": "c31_FVuRGIai", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "f-35": { "concept": "知识类文章", "adj_score": 1.7337531819570309, "weight": 1.0, "text": "f-35", "is_new": 0, "obj_key": "c646_loCLwytf", "alias": "", "frequency": 3, "cname": "", "type": null }, "体量": { "concept": "语言", "adj_score": 0.5783540372670808, "weight": 1130.0, "text": "体量", "is_new": 0, "obj_key": "c70_nSFDg46y", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "3.0版歼-31": { "concept": "", "adj_score": 0.5252868852459016, "weight": 1.0, "text": "3.0版歼-31", "is_new": 1, "obj_key": "", "alias": "", "frequency": 1, "cname": "", "type": null }, "空中加油机以及战略轰炸机的": { "concept": "", "adj_score": 0.33783229813664595, "weight": 1.0, "text": "空中加油机以及战略轰炸机的", "is_new": 1, "obj_key": "", "alias": "", "frequency": 2, "cname": "", "type": null }, "一直": { "concept": "语言", "adj_score": 1.9785714285714286, "weight": 1156.0, "text": "一直", "is_new": 0, "obj_key": "c70_Ka8euESq", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "和空中加油机以及战略轰炸机": { "concept": "", "adj_score": 0.8464223602484472, "weight": 1.0, "text": "和空中加油机以及战略轰炸机", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "贬低": { "concept": "语言", "adj_score": 0.34270491803278685, "weight": 596.0, "text": "贬低", "is_new": 0, "obj_key": "c70_9ic1C3Ca", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "最终": { "concept": "成语", "adj_score": 0.789016393442623, "weight": 685.0, "text": "最终", "is_new": 0, "obj_key": "c317_hXKJs46o", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "所有": { "concept": "语言", "adj_score": 0.2128688524590164, "weight": 2072.0, "text": "所有", "is_new": 0, "obj_key": "c70_6c3GnECj", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "大家应该想一想,沈飞毕竟": { "concept": "", "adj_score": 1.8772298136645964, "weight": 1.0, "text": "大家应该想一想,沈飞毕竟", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "2019年3月4日": { "concept": "知识类文章", "adj_score": 0.9107377049180329, "weight": 1.0, "text": "2019年3月4日", "is_new": 0, "obj_key": "c646_xOS7iytM", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "3月": { "concept": "月", "adj_score": 1.90174091233072, "weight": 15350.0, "text": "3月", "is_new": 0, "obj_key": "c138_oNlqY2e5", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "先后": { "concept": "语言", "adj_score": 0.6429508196721312, "weight": 75.0, "text": "先后", "is_new": 0, "obj_key": "c70_8Js2V3zz", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "成为": { "concept": "语言", "adj_score": 0.1114344262295082, "weight": 1536.0, "text": "成为", "is_new": 0, "obj_key": "c70_EvpU1yfI", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "看起来": { "concept": "语言", "adj_score": 0.8336475409836065, "weight": 1.0, "text": "看起来", "is_new": 0, "obj_key": "c70_DcY0naXa", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "丑小鸭": { "concept": "文学形象", "adj_score": 0.9269672131147542, "weight": 2837.0, "text": "丑小鸭", "is_new": 0, "obj_key": "c301_zMCmgFNQ", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "国外": { "concept": "语言", "adj_score": 0.5096335403726708, "weight": 1199.0, "text": "国外", "is_new": 0, "obj_key": "c70_iTIXJzfy", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "也许": { "concept": "语言", "adj_score": 0.16603105590062112, "weight": 547.0, "text": "也许", "is_new": 0, "obj_key": "c70_jeTIj3Bc", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "称为": { "concept": "语言", "adj_score": 0.49245341614906835, "weight": 599.0, "text": "称为", "is_new": 0, "obj_key": "c70_JH7X2zfp", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "并不代表其没有能力": { "concept": "", "adj_score": 1.4820869565217392, "weight": 1.0, "text": "并不代表其没有能力", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "对于歼-31的印象": { "concept": "", "adj_score": 2.4098509316770187, "weight": 1.0, "text": "对于歼-31的印象", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null }, "优点": { "concept": "语言", "adj_score": 0.20475409836065572, "weight": 6403.0, "text": "优点", "is_new": 0, "obj_key": "c70_UZHX1aSv", "alias": "", "frequency": 1, "cname": "", "type": "normal" }, "用于": { "concept": "语言", "adj_score": 0.08872049689440994, "weight": 1.0, "text": "用于", "is_new": 0, "obj_key": "c70_CRTqaEXa", "alias": "", "frequency": 2, "cname": "", "type": "normal" }, "-22,与体量相对较大": { "concept": "", "adj_score": 1.121304347826087, "weight": 1.0, "text": "-22,与体量相对较大", "is_new": 1, "obj_key": "", "alias": "", "frequency": 3, "cname": "", "type": null } }, "forward_word_found": "与f-35相提并论。但是\n-31的\n就是沈飞自筹资金研发的低档\n在研发第四战机的国内\n但是,大家应该想一想\n但并不代表其没有\n版歼-31\n对于歼-31的印象\n技术的国家队,尽管在\n3.0版歼-31\nf-35\n和空中加油机以及战略轰炸机\n大家应该想一想,沈飞毕竟\n未来的空战\n上不但远低于歼-20\n该机可谓是缩小版的\n就歼-31的特点来看\n歼-31\n-35相提并论。但是,大家\n空中加油机以及战略轰炸机的\n而且就歼-31的特点\n并不代表其没有能力\n版的f-22,与\n-22,与体量相对较大", "cword_found": { "大家": [ "大家应该想一想,沈飞毕竟", 12, 0.6666666666666666 ], "空中": [ "空中加油机以及战略轰炸机的", 13, 0.5 ], "版": [ "版的f-22,与", 8, 0.5 ], "上": [ "上不但远低于歼-20", 10, 0.6666666666666666 ], "和": [ "和空中加油机以及战略轰炸机", 13, 0.5 ], "与": [ "与f-35相提并论。但是", 12, 0.5 ], "-31": [ "-31的", 4, 0.3333333333333333 ], "3.0": [ "3.0版歼-31", 8, 0.6666666666666666 ], "该机": [ "该机可谓是缩小版的", 9, 0.5 ], "未来": [ "未来的空战", 5, 0.6666666666666666 ], "f": [ "f-35", 4, 0.5 ], "版歼": [ "版歼-31", 5, 1.0 ], "对于": [ "对于歼-31的印象", 9, 0.6666666666666666 ], "在": [ "在研发第四战机的国内", 10, 0.5 ], "-35": [ "-35相提并论。但是,大家", 13, 0.6666666666666666 ], "但": [ "但并不代表其没有", 8, 0.6666666666666666 ], "技术": [ "技术的国家队,尽管在", 10, 0.6666666666666666 ], "-22": [ "-22,与体量相对较大", 11, 0.6666666666666666 ], "就": [ "就歼-31的特点来看", 10, 0.6666666666666666 ], "而且": [ "而且就歼-31的特点", 10, 0.5 ], "并": [ "并不代表其没有能力", 9, 0.6666666666666666 ], "歼": [ "歼-31", 4, 0.6428571428571429 ], "就是": [ "就是沈飞自筹资金研发的低档", 13, 0.5 ], "但是": [ "但是,大家应该想一想", 10, 0.6666666666666666 ] } } }</code></pre> <p>失败结果如下</p> <pre><code>{ "status": 2, "message": { "target_text": [ "target_text内的元素必须是字典" ] }, "resultObj": {} }</code></pre> <pre><code>{ "status": 2, "message": { "tb_name": [ "tb_name can not be null" ], "sent_tb_name": [ "sent_tb_name can not be null" ], "db_user": [ "db_user can not be null" ], "db_pwd": [ "db_pwd can not be null" ], "db_port": [ "db_port can not be null" ], "db_name": [ "db_name can not be null" ], "db_host": [ "db_host can not be null" ] }, "resultObj": {} }</code></pre> <ul> <li>写入生词表中的格式</li> </ul> <table> <thead> <tr> <th style="text-align: left;">字段</th> <th style="text-align: left;">类型</th> <th style="text-align: left;">是否可为空</th> <th>索引</th> <th>注释</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">id</td> <td style="text-align: left;">int</td> <td style="text-align: left;">否</td> <td>是</td> <td>自增id</td> </tr> <tr> <td style="text-align: left;">match_text</td> <td style="text-align: left;">varchar(255)</td> <td style="text-align: left;">否</td> <td>否</td> <td>文本</td> </tr> <tr> <td style="text-align: left;">obj_key</td> <td style="text-align: left;">varchar(50)</td> <td style="text-align: left;">是</td> <td>否</td> <td>主键</td> </tr> <tr> <td style="text-align: left;">frequency</td> <td style="text-align: left;">int</td> <td style="text-align: left;">是</td> <td>是</td> <td>频度</td> </tr> <tr> <td style="text-align: left;">is_new</td> <td style="text-align: left;">int</td> <td style="text-align: left;">是</td> <td>是</td> <td>是否新词,0为非新词,1为新词</td> </tr> <tr> <td style="text-align: left;">type</td> <td style="text-align: left;">varchar(50)</td> <td style="text-align: left;">是</td> <td>否</td> <td>类型</td> </tr> <tr> <td style="text-align: left;">adj_score</td> <td style="text-align: left;">float</td> <td style="text-align: left;">是</td> <td>否</td> <td>分值</td> </tr> <tr> <td style="text-align: left;">weight</td> <td style="text-align: left;">float</td> <td style="text-align: left;">是</td> <td>否</td> <td>权重</td> </tr> <tr> <td style="text-align: left;">concept</td> <td style="text-align: left;">varchar(50)</td> <td style="text-align: left;">是</td> <td>否</td> <td>主键对应的概念</td> </tr> <tr> <td style="text-align: left;">alias</td> <td style="text-align: left;">varchar(255)</td> <td style="text-align: left;">是</td> <td>否</td> <td></td> </tr> <tr> <td style="text-align: left;">cname</td> <td style="text-align: left;">varchar(50)</td> <td style="text-align: left;">是</td> <td>否</td> <td></td> </tr> </tbody> </table> <ul> <li>写入句子表中的格式</li> </ul> <table> <thead> <tr> <th style="text-align: left;">字段</th> <th style="text-align: left;">类型</th> <th style="text-align: left;">是否可为空</th> <th>索引</th> <th>注释</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">id</td> <td style="text-align: left;">int</td> <td style="text-align: left;">否</td> <td>是</td> <td>自增id</td> </tr> <tr> <td style="text-align: left;">input_key</td> <td style="text-align: left;">varchar(255)</td> <td style="text-align: left;">是</td> <td>是</td> <td>输入的键</td> </tr> <tr> <td style="text-align: left;">sent</td> <td style="text-align: left;">longtext</td> <td style="text-align: left;">是</td> <td>否</td> <td>输入的文本</td> </tr> <tr> <td style="text-align: left;">cut_sent</td> <td style="text-align: left;">longtext</td> <td style="text-align: left;">是</td> <td>否</td> <td>切分后的文本</td> </tr> <tr> <td style="text-align: left;">cut_words</td> <td style="text-align: left;">longtext</td> <td style="text-align: left;">是</td> <td>否</td> <td>切分后的文本</td> </tr> <tr> <td style="text-align: left;">para_id</td> <td style="text-align: left;">varchar(255)</td> <td style="text-align: left;">是</td> <td>否</td> <td>文本在列表中的位置</td> </tr> </tbody> </table> <p><strong>返回参数说明</strong> </p> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;"></td> <td style="text-align: left;"></td> <td></td> </tr> </tbody> </table> <ul> <li>备注:无</li> </ul>

页面列表

ITEM_HTML