├── .gitignore ├── AdminInterface.png ├── ChineseInterface.png ├── EnglishInterface.png ├── Event_beta.py ├── LICENCE ├── README.md ├── YEDDA_Admin.py ├── YEDDA_Annotator.py ├── demotext ├── ChineseDemo.ann ├── ChineseDemo.txt ├── ChineseDemo.txt.ann ├── EnglishDemo.txt ├── EnglishDemo.txt.ann ├── EnglishDemo1.txt ├── EnglishDemo1.txt.ann ├── Jie_resumeSample.txt.ann ├── UserA.ann ├── UserB.ann ├── UserC.ann ├── UserD.ann ├── UserE.ann └── test.tex ├── detailReport.png ├── resultMatrix.png ├── tex2pdf ├── eng.aux ├── eng.fdb_latexmk ├── eng.fls ├── eng.log ├── eng.pdf ├── eng.synctex.gz ├── eng.tex ├── example.pdf ├── llncs.cls ├── test.aux ├── test.fdb_latexmk ├── test.fls ├── test.log ├── test.pdf ├── test.synctex.gz └── test.tex └── utils ├── __init__.py ├── compareAnn.py ├── metric4ann.py └── recommend.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | config 3 | -------------------------------------------------------------------------------- /AdminInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophonPlus/ChineseAnnotator/d24f72da083553e3ce294540ff226eb3ff210c9d/AdminInterface.png -------------------------------------------------------------------------------- /ChineseInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophonPlus/ChineseAnnotator/d24f72da083553e3ce294540ff226eb3ff210c9d/ChineseInterface.png -------------------------------------------------------------------------------- /EnglishInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophonPlus/ChineseAnnotator/d24f72da083553e3ce294540ff226eb3ff210c9d/EnglishInterface.png -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 中文自然语言处理 (NLP) 标注工具,与 有志之士 共同 促进 中文 自然语言处理 的 发展。 2 | 3 | ## 一、关于 4 | - 这个项目最原始的代码是从 YEDA fork 过来的,访问 [YEDA](https://github.com/jiesutd/YEDDA) 项目,了解更多信息 5 | - 这 **不是** 一个 web 应用,而是一个基于 Python tkinter 的轻量级桌面端应用 6 | - 本项目仅支持 Python 3.x,**不考虑** 兼容 Python 2.x 7 | - 本项目目前仅支持实体标注,未来将加入更多功能 8 | 9 | ## 二、使用指南 10 | 11 | ### 安装 Python 3.x 12 | 13 | ### 下载本项目 14 | 15 | `git clone https://github.com/SophonPlus/ChineseAnnotator.git` 或直接下载 [压缩包](https://github.com/SophonPlus/ChineseAnnotator/archive/master.zip) 并解压 16 | 17 | ### 开始标注 18 | ![alt text](https://github.com/SophonPlus/ChineseAnnotator/blob/master/EnglishInterface.png "标注英文") 19 | ![alt text](https://github.com/SophonPlus/ChineseAnnotator/blob/master/ChineseInterface.png "标注中文") 20 | 21 | - 执行 `python YEDDA_Annotator.py`,启动标注程序 22 | - 在标注程序界面的右侧,设置快捷键,如 `a: Action; b: Loc; c: Cont` 23 | - 点击 `ReMap` 按钮,保存快捷键设置 24 | - 点击 `Open` 按钮,选择文件 (后缀必须为 .txt 或 .ann) 25 | - 选中文本,然后使用设置好的快捷键进行标注,标注格式形如 `[@the text span#Location*]` 26 | - 通过 `RMOn` 和 `RMOff` 按钮,可以开启或关闭智能推荐 27 | - 智能推荐会根据已经手动标注的数据,自动标注未标注的数据。其格式为 `[$the text span#Location*]`,并用绿色展示出来(注意:手动标注以 `[@` 打头,而推荐标注则以 `[$` 打头) 28 | - 标注结果与原始文件保存在同一个目录中,文件名为 ***"原文件名 + .ann"*** 29 | 30 | ### 管理标注工作 31 | ![alt text](https://github.com/SophonPlus/ChineseAnnotator/blob/master/AdminInterface.png "管理员界面") 32 | 33 | - 执行 `python YEDDA_Admin.py`,启动管理程序 34 | - 点击 `多人标注分析`,然后选择多个 `*.ann` 文件,会给出不同标注结果的 F 值矩阵 35 | ![alt text](https://github.com/SophonPlus/ChineseAnnotator/blob/master/resultMatrix.png "结果矩阵") 36 | - 点击 `配对比较`,然后选择 2 个 `*.ann` 文件,会生成相应的对比报告 (报告为 `.tex` 格式,可以进一步编译为 `.pdf` 文件)。示例 pdf 报告如下: 37 | 38 | ![alt text](https://github.com/SophonPlus/ChineseAnnotator/blob/master/detailReport.png "详细报告") 39 | 40 | ### 其他(重要)功能 41 | 1. 按 `ctrl + z` 撤销最近 1 次的修改 42 | 2. 选择已经标注的实体,或将光标置于已标注的实体范围内,按其他实体类别的快捷键 (如 `x`) 更新实体类别 (与 `x` 对应的实体),按 `q`,删除实体标注 43 | 3. 选择已标注的文本,如 `[@美国#Location*]`, 再按 `q`, 删除实体标注,即恢复到未标注的状态 (如"美国") 44 | 4. 确认/删除推荐标注的实体:将光标置于推荐标注的实体范围内,按 `y` (确认),按 `q` (退出) 45 | 5. 点击 `export` 按钮,会将 ***".ann"*** 文件导出为同名的 ***".anns"*** 文件(存放在同一目录下)。导出文件为序列标注的格式。 46 | - 源代码中,参数 `self.seged` 用于控制导出的行为。如果句子由空格间隔的单词构成(英文或已分词的中文),则该值应设置为 `True`,否则应设置为 `False`(如未分词的中文) 47 | - 另一个参数 `self.tagScheme` 控制导出的格式,***".anns"*** 文件将使用 `BMES` 格式,如何该值为 `"BMES"`,否则导出格式为 `"BIO"` 48 | 49 | ## 三、FAQ 50 | 1. 为什么是桌面端应用? 51 | 52 | - 理由一:我们调研了其他的开源标注工具,包括 [brat](https://github.com/nlplab/brat) 在内的大部分工具,都有点太复杂了,难以扩展 53 | 54 | - 理由二:开发/维护 Web 应用,涉及到前/后端的工作,需要额外的知识和技能。我们相信在 NLP 领域,Python 的普及程度要远超 Web 开发,将项目限定在 Python 之内,能够让更多感兴趣的 NLP 业内人士参与其中,共同促进中文自然语言处理的发展 55 | 56 | 2. 你们知道一个叫 [Chinese-Annotator]( https://github.com/crownpku/Chinese-Annotator) 的项目吗? 57 | 58 | - 当然!我们在一开始调研中文自然语言处理标注工具的时候,就注意到这个项目了。他们在 [Wiki](https://github.com/crownpku/Chinese-Annotator/wiki/Annotator-Examples) 中,详细总结了几款有代表性的标注工具,极大地帮助了我们调研工作的开展。 59 | 60 | - 但是,遗憾的是,截止目前 (2018-06-22) 为止,这个工具仍然处于开发阶段,尚不可用。这让我们萌生了开始本项目的想法。我们希望一开始就提供可以使用的工具,然后再在使用过程中快速地迭代完善。 61 | 62 | 3. 为什么选择从 fork [YEDA](https://github.com/jiesutd/YEDDA) 开始? 63 | - 我们仔细调研了大量的标注工具,而 YEDA 可能是其中功能最简陋、代码最精简的项目了。但这恰恰是我们需要的,其他项目都太复杂,难以着手改造。 64 | 65 | ## 四、未来计划 66 | 1. 采用 brat 的文件格式 67 | 2. 采用 anafora 的可视化方式 68 | 3. 加入规则标注功能 69 | 4. 加入文本分类标注功能 70 | 5. 加入主动学习功能 71 | 6. …… 72 | 73 | ## 五、参考 74 | | 项目 | star | fork | 最后更新 | 值得借鉴之处 | 75 | | :---- | --- | ----- | ------- | :----------- | 76 | | [brat](https://github.com/nlplab/brat) | 575 | 212 | 2017-11-30 | 文件格式 | 77 | | [IEPY](https://github.com/machinalis/iepy) | 675 | 152 | 2016-10-14 | 主动学习、规则标注 | 78 | | [anafora](https://github.com/weitechen/anafora) | 82 | 25 | 2018-05-12 | 可视化方式 | 79 | | [Chinese-Annotator](https://github.com/crownpku/Chinese-Annotator) | 384 | 98 | 2018-03-06 | 调研/设计 文档 | 80 | | [Prodigy](https://prodi.gy/) | - | - | - | 交互方式 | 81 | -------------------------------------------------------------------------------- /YEDDA_Admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: Jie Yang from SUTD 3 | # @Date: 2016-Jan-06 17:11:59 4 | # @Last Modified by: Jie Yang, Contact: jieynlp@gmail.com 5 | # @Last Modified time: 2017-09-24 21:47:14 6 | #!/usr/bin/env python 7 | # coding=utf-8 8 | 9 | from tkinter import * 10 | from tkinter.ttk import * # Frame, Button, Label, Style, Scrollbar 11 | from tkinter import filedialog as tkFileDialog 12 | from tkinter import font as tkFont 13 | from tkinter import messagebox as tkMessageBox 14 | 15 | import re 16 | from collections import deque 17 | import pickle 18 | import os.path 19 | import platform 20 | 21 | from utils.recommend import * 22 | from utils.metric4ann import * 23 | from utils.compareAnn import * 24 | 25 | 26 | class Example(Frame): 27 | def __init__(self, parent): 28 | Frame.__init__(self, parent) 29 | self.Version = u"YEDDA-V1.0 管理员" 30 | self.OS = platform.system().lower() 31 | self.parent = parent 32 | self.fileName = "" 33 | # 初始化 GUI 显示参数 34 | self.textColumn = 3 35 | self.initUI() 36 | 37 | def initUI(self): 38 | ## 初始化 UI 39 | self.parent.title(self.Version) 40 | self.pack(fill=BOTH, expand=True) 41 | 42 | for idx in range(0,self.textColumn): 43 | if idx == 1: 44 | self.columnconfigure(idx, weight =10) 45 | else: 46 | self.columnconfigure(idx, weight =1) 47 | # for idx in range(0,2): 48 | # self.rowconfigure(idx, weight =1) 49 | the_font=('TkDefaultFont', 18, ) 50 | style0 = Style() 51 | style0.configure(".", font=the_font, ) 52 | 53 | width_size = 30 54 | 55 | abtn = Button(self, text=u"多标注分析", command=self.multiFiles, width = width_size) 56 | abtn.grid(row=0, column=1) 57 | 58 | recButton = Button(self, text=u"配对比较", command=self.compareTwoFiles, width = width_size) 59 | recButton.grid(row=1, column=1) 60 | 61 | cbtn = Button(self, text=u"退出", command=self.quit, width = width_size) 62 | cbtn.grid(row=2, column=1) 63 | 64 | def ChildWindow(self, input_list, result_matrix): 65 | file_list = [] 66 | for dir_name in input_list: 67 | if ".ann" in dir_name: 68 | dir_name = dir_name[:-4] 69 | if "/" in dir_name: 70 | file_list.append(dir_name.split('/')[-1]) 71 | else: 72 | file_list.append(dir_name) 73 | 74 | # 创建菜单 75 | self.popup = Menu(self.parent, tearoff=0) 76 | self.popup.add_command(label="Next", command=self.selection) 77 | self.popup.add_separator() 78 | 79 | def do_popup(event): 80 | # 显示弹出菜单 81 | try: 82 | self.popup.selection = self.tree.set(self.tree.identify_row(event.y)) 83 | self.popup.post(event.x_root, event.y_root) 84 | finally: 85 | # make sure to release the grab (Tk 8.0a1 only) 86 | self.popup.grab_release() 87 | 88 | # 创建树状视图 89 | win2 = Toplevel(self.parent) 90 | new_element_header=file_list 91 | treeScroll = Scrollbar(win2) 92 | treeScroll.pack(side=RIGHT, fill=Y) 93 | title_string = "F:Entity/Chunk" 94 | self.tree = Treeview(win2, columns=[title_string]+file_list, show="headings") 95 | 96 | self.tree.heading(title_string, text=title_string, anchor=CENTER) 97 | self.tree.column(title_string, stretch=YES, minwidth=50, width=100, anchor=CENTER) 98 | for each_file in file_list: 99 | self.tree.heading(each_file, text=each_file, anchor=CENTER) 100 | self.tree.column(each_file, stretch=YES, minwidth=50, width=100, anchor=CENTER) 101 | for idx in range(len(file_list)): 102 | self.tree.insert("" , 'end', text=file_list[idx], values=[file_list[idx]]+result_matrix[idx], tags = ('chart',)) 103 | the_font=('TkDefaultFont', 18, ) 104 | self.tree.tag_configure('chart', font=the_font) 105 | style = Style() 106 | style.configure(".", font=the_font, ) 107 | style.configure("Treeview", ) 108 | style.configure("Treeview.Heading",font=the_font, ) #<---- 109 | self.tree.pack(side=TOP, fill=BOTH) 110 | # self.tree.grid() 111 | 112 | self.tree.bind("", do_popup) 113 | 114 | win2.minsize(30,30) 115 | 116 | def selection(self): 117 | print(self.popup.selection) 118 | 119 | def multiFiles(self): 120 | ftypes = [('ann files', '.ann')] 121 | filez = tkFileDialog.askopenfilenames(parent=self.parent, filetypes = ftypes, title='Choose a file') 122 | if len(filez) < 2: 123 | tkMessageBox.showinfo(u"监视错误", u"不足 2 个文件!\n\n请至少选择 2 个文件!") 124 | else: 125 | result_matrix = generate_report_from_list(filez) 126 | self.ChildWindow(filez, result_matrix) 127 | 128 | def compareTwoFiles(self): 129 | ftypes = [('ann files', '.ann')] 130 | filez = tkFileDialog.askopenfilenames(parent=self.parent, filetypes = ftypes, title=u'选择文件') 131 | if len(filez) != 2: 132 | tkMessageBox.showinfo(u"比较错误", u"请选择 2 个文件!") 133 | else: 134 | f = tkFileDialog.asksaveasfile(mode='w', defaultextension=".tex") 135 | write_result = compareBoundary(filez[0],filez[1],f) 136 | if write_result: 137 | tkMessageBox.showinfo(u"生成 Latex", u"成功生成 Latex 文件!\n\保存到 "+ f.name) 138 | # import os 139 | # os.system("pdflatex "+ f.name) 140 | else: 141 | tkMessageBox.showinfo(u"Latex 错误", u"生成 Latex 错误:2 个文件的句子数不相等!") 142 | f.close() 143 | 144 | 145 | def main(): 146 | print(u"启动 YEDDA 管理员程序!") 147 | print((u"操作系统:%s")%(platform.system())) 148 | root = Tk() 149 | root.geometry("400x100") 150 | app = Example(root) 151 | 152 | root.mainloop() 153 | 154 | 155 | if __name__ == '__main__': 156 | main() -------------------------------------------------------------------------------- /demotext/ChineseDemo.ann: -------------------------------------------------------------------------------- 1 | 我们 看到 [@债券 市场 收益率#Fin-Concept*] 相比 去年 已经 有 明显 的 上涨 , 这 种 情况 还 会 延续 。 2 | [@规划#Artifical*] 特别 提出 , 将 推动 [@房地产税 立法#Fin-Concept*] , 但 未 明确 [@税收 立法 完成 时限#Fin-Concept*] 。 3 | 在 [@投资#Fin-Concept*] 这 个 领域 , “ 带着 镣铐 起舞 ” 有 可能 不 是 种 限制 反而 是 种 [@保护 机制#Fin-Concept*] 。 4 | 但 对 [@富 人#Person*] 来说 , 这 种 [@加 杠杆#Artifical*] 更 刺激 , 1000万 的 [@房子#Artifical*] , 转眼 成 2000万 了 , 干 什么 能 迅速 来 1000万 啊 ! 5 | 想想 [@光纤#Artifical*] , 为何 速度 这么 快 , 因为 它 完全 不 受 外界 干扰 。 6 | [@中国#Organization*] 前 段 时间 禁止 进口 [@朝鲜#Organization*] 的 [@煤炭#Artifical*] , [@煤炭#Artifical*] 占 [@朝鲜#Organization*] 对 [@中国#Organization*] [@出口#Fin-Concept*] 的 近 一半 , 这下 中 朝 之间 的 [@贸易#Fin-Concept*] 雪崩式 下降 。 7 | 初步 测算 , [@五 大 商业 银行#Organization*] 此 次 降准 1 个 百分点 , [@释放 流动性 规模#Fin-Concept*] 在 5800亿 左右 , 另外 , 本 周 [@央行#Organization*] [@公开 市场#Fin-Concept*] 大规模 投放 了 近 1.13万亿 , 释放 的 [@资金 规模#Fin-Concept*] 创 历史 单周 新高 ;③ [@躁动 条件#Fin-Concept*] 均 具备 , 有助于 年 内 “ [@春季 躁动#Fin-Concept*] ” 行情 的 开启 , [@目标 点位#Fin-Concept*] 3300点 。 8 | [@房地产 贷款 余额#Fin-Concept*] 占 各 项 [@贷款 余额#Fin-Concept*] 的 23.6% , 比3月 末 高 0.7 个 百分点 。 9 | 计算 公式 如下 : [@加权 平均 条款#Artifical*] 有 两 种 细分 形式 , [@广义 加权 平均#Artifical*] 和 [@狭义 加权 平均#Artifical*] , 区别 在于 对 [@后轮 融资#Fin-Concept*] 时 的 [@已 发行 股份#Fin-Concept*] 及 其 数量 的 定义 : [@广义 加权 #Fin-Concept*]包括 已 发行 的 [@普通股#Fin-Concept*] 、 [@优先 股#Fin-Concept*] 可转 换成 的 [@普通股#Fin-Concept*] 、 可以 通过 执行 [@期权#Fin-Concept*] 等 获得 [@普通股 数量#Fin-Concept*] 。 10 | 2 . 原因 之一 : [@企业#Organization*] [@盈利#Fin-Concept*] 低迷 , [@投资 意愿#Fin-Concept*] 较 弱 2.1  [@投资#Fin-Concept*] 迭 创新 低 , [@货币 刺激#Fin-Concept*] 失效 ? 11 | 过去 这 两 年 整 个 [@金融 市场#Sector*] 的 波动 比较 大 , 无论是 [@股票#Artifical*] 还是 [@债券#Artifical*] 等 大 类 [@资产 配置 板块#Fin-Concept*] , 抑或是 具体 到 [@股票 阿尔法 策略#Artifical*] 甚至 包括 [@CTA 策略 #Artifical*]的 表现 都 不 甚 理想 , 这 都 会 给 [@投资者#Person*] 在 决策 时 造成 一定 压力 。 12 | 当前 , 监管 层 已 宣布 重启 [@IPO#Fin-Concept*] , 11月 30日 开始 首 轮 [@新股#Organization*] 陆续 [@申购#Fin-Concept*] 。 13 | [@10年 国开 活跃 券 160213 收益率 上行 8.64bp#Fin-Concept*] 报 3.91% , [@160210 收益率 上行 11p #Fin-Concept*]报 3.97% ; [@10年 国债 活跃 券 160023 收益率 上行 #Fin-Concept*]4.01bp 报 3.28% 。 14 | [@民间 投资#Fin-Concept*] 同 [@全 社会 固定 资产 投资#Fin-Concept*] 的 增速 出现 了 明显 的 [@喇叭 口#Fin-Concept*] , [@民间 投资#Fin-Concept*] 比重 占 60% 左右 , 如果 降低 ,[@ 固定 资产 投资 #Fin-Concept*]则 不 乐观 。 15 | [@华盛顿 大学 房地产 和 城市 分析 中心 主席 克里斯托弗•莱恩博格#Person*] ( [@Christop her Leinberger#Person*] ) 说到 : “ 在 郊区 , 现在 的 大 挑战 是 维修 目前 的 高速 公路 系统 , 要 建设 新 的 公路 是 不 可能 的 了 , 因为 我们 现在 还 没有 来 维护 现有 公路 的 [@资金#Fin-Concept*] ” 。 16 | 将 探索 完善 [@省属 国有 资本 投资 运营 公司#Organization*] 的 [@运营 机制#Artifical*] , 加快 实现 由 [@管 企业#Artifical*] 到 [@管 资本 #Artifical*]的 转变 ; 加速 [@国有 资本#Fin-Concept*] 向 [@战略性 新兴 产业#Sector*] 、 [@高 端 服务业#Sector*] 、 [@优势 产业#Other*] 、 [@基础 设施#Sector*] 和 [@民生 保障#Other*] 等 五 大 领域 集中 。 17 | 有色 : 上 周 [@LME铜价#Fin-Concept*] 降 、 [@铝价#Fin-Concept*]升 , [@铜 库 存#Fin-Concept*]续 降 、 [@铝 库存#Fin-Concept*] 微 升 。 18 | 游戏 的 规则 在 慢慢 改变 , 我们 不 能 只 看到 [@财务 回报#Fin-Concept*] , 就 以为 自己 主宰 命运 了 。 19 | 来源 : [@阿尔法 工厂#Organization*] ( ID:alpworks) [@市场#Fin-Concept*] 普遍 认为 [@美国 房地产 市场#Sector*] 将 再次 好转 成为 不错 的 [@投资 标的#Fin-Concept*] 。 20 | 然而 [@大头#Person*] 却 再 也 没有 在 这 座 城市 买 房 , [@言谈#Person*] 也 不 再 有 当年 那 股 傲 劲 , 借 朋友 很多 钱 , 座驾 也 从 [@宝马#Artifical*] 变成 了 [@桑塔纳#Artifical*] , 每 天 仍 奔波 在 自己 的 创业 之 路 中 。 21 | 具体 来 看 , [@李克强#Person*] 提出 在 供给 方面 , 继续 运用 好 [@结构性 减税#Fin-Concept*] 等 手段 , 推动 “ [@双创#Artifical*] ” 和 “ [@中国 制造 2025#Artifical*] ” 、 “ [@互联网 + #Artifical*]” 行动 计划 , 促进 [@服务业#Sector*] 、 [@先进 制造业#Sector*] 发展 , 扶持 [@小微 企业#Organization*] 成长 , 发挥 制度 创新 和 技术 进步 对 供给 升级 的 倍增 效用 , 扩大 有效 供给 。 22 | 因此 , 需要 进一步 澄清 的 是 , 「 非 公开性 」 针对 的 是 特定 的 「 [@私募 产品#Artifical*] ( 项目 ) 」 不 得 进行 公开 的 宣传 , 但 并 不 禁止 对 [@私募#Organization*] 的 [@发起人#Person*] ( 如 [@基金 公司#Organization*] ) 、 过往 [@业绩#Fin-Concept*] 、 [@私募 基金 管理人#Person*] 等 进行 公开 宣传 。 23 | 建议 [@拓展 前海 蛇口 自贸区#Other*] 离岸 账户 (OSA) 功能 [@马蔚华#Person*] 在 《 [@关于 推进 前海 蛇口 自贸区 金融 改革 的 提案#Artifical*] 》 中 表示 , [@前海 蛇口 自贸区 金融 改革#Fin-Concept*] 做 了 一 系列 有益 探索 , 取得 了 很大 进展 。 24 | 根据 [@通货膨胀#Fin-Concept*] 的 定义 , [@通货膨胀#Fin-Concept*] 是 [@货币#Fin-Concept*] 过 多 发行 所 造成 的 [@物价#Fin-Concept*] 全面 上涨 , “ 现在 还 很 难 说 [@物价#Fin-Concept*] 全面 上涨 。 ” [@张世贤#Person*] 的 判断 不 无 道理 。 25 | [@中金 公司 #Organization*]维持 2016 年 [@CPI#Fin-Concept*] 为 1.9% 的 预测 不 变 。 26 | [@交通 银行 金研 中心 #Organization*]: 下半年 [@财政 政策#Artifical*] 积极 [@货币 政策 #Artifical*]宽松 [@晨报 记者 刘志飞#Person*] [@交通 银行 金融 研究 中心#Organization*] 昨日 发布 的 [@下半年 展望 报告#Artifical*] 认为 , 下半年 , 我 国 积极 [@财政 政策#Artifical*] 将 继续 发力 , 发挥 对 [@稳 增长#Fin-Concept*] 的 关键 作用 。 27 | 今年 反复 出现 这个 事情 , 跟 [@QE#Fin-Concept*] 没有 什么 关系 , [@地方 债 #Fin-Concept*]是 纳入 是 [@全球 央行#Organization*] 的 一 个 普遍 的 实践 , 就 是 扩大 到 试点 , 将来 可能 要 扩大 到 全 国 去 , 这 是 必然 的 过程 。 28 | [@贸易商#Person*] 低价 出货 后 发现 得 从 [@钢厂#Organization*] 高价 补货 , 午后 部分 [@钢厂 封盘 停售#Fin-Concept*] 再次 拉 涨 [@现货#Fin-Concept*] 。 29 | 还 有 一 个 更 有利 的 因素 , [@铜 期货#Fin-Concept*] 近月 [@合约 限仓#Fin-Concept*] 为 1500吨 , 而 该 [@现货 电子盘#Fin-Concept*] 却 [@限仓#Fin-Concept*] 为 20000吨 , 相对 来 说 “ 战场 空间 ” 更 充裕 , 更 有利于 打 一 场 大 决战 。 30 | 这些 动能 的 逐步 释放 会 使 [@经济#Fin-Concept*] 保持 中 高速 增长 。 31 | 他 还 特别 强调 , 其实 中国 一直 在 进行 的[@ 体制 改革#Artifical*] 等 都 属于 [@供给 侧 改革#Artifical*] , 此 次 是 对 此 类型 [@改革#Artifical*] 进行 的 一 次 总结 和 归纳 , 并 形成 统一 提法 。 32 | 自 [@政府 工作 报告#Artifical*] 首提 “ 淘汰 、 停建 、 缓建 煤电 产能 5000万 千瓦 以上 , 以 防范 化解 [@煤电 产能 过剩#Fin-Concept*] 风险 , 提高 [@煤电 行业 效率#Fin-Concept*] , 为 [@清洁 能源 发展#Fin-Concept*] 腾空间 ” , [@发改委 主任#Person*] 再提 煤电 去 产能 , 我们 认为[@ 煤电 产能 过剩#Fin-Concept*] 状况 已 引起 [@高层#Person*] 足够 重视 ,且 考虑 到 环保 渐趋 严格 , [@后期 煤电 产能 去化 推进 力度#Fin-Concept*] 或 超 预期 , 从而 为 [@清洁 能源#Artifical*] 提供 良好 的 发展 机遇 , 相关 标的 有 [@大唐 发电#Organization*] 。 33 | 要 真正 实现 新 旧 产业 更 替 , 必须 使 [@市场 机制#Fin-Concept*] 真正 在 [@资源 配置#Fin-Concept*] 中 发挥 决定性 作用 , 加快 出清 [@僵尸 企业#Organization*] , 为 [@新 产业#Other*] 和 [@新 动能#Other*] 腾挪 空间 。 34 | 电力 : 1月 发电 耗煤 同比 跌幅 扩大 , 预示 [@工业 经济#Fin-Concept*] 或 开局 不 佳 。 35 | 要 继续 深化 [@金融 改革#Fin-Concept*] , 协调 推进 [@利率#Fin-Concept*] 、 [@汇率#Fin-Concept*] [@改革#Fin-Concept*] 和 [@资本 账户 #Fin-Concept*]开放 。 36 | 后者 则 指 [@期权#Fin-Concept*] 的 买方 ( 权利方) 有 权 在 约定 时间 以 约定 价格 将 一定 数量 的 [@标的 资产#Fin-Concept*] 卖给 [@期权#Fin-Concept*] 的 卖方 ( 义务方 ) , 买方 享有 卖出 选择权 。 37 | [@陆家嘴 金融#Organization*] 微 信号 : FinanceLJZ▲长 按 二维码 “ 识别 ” 关注 推荐 理由 :助 您 洞悉 [@金融 趋势#Fin-Concept*] , 发现 [@投资 机遇#Fin-Concept*] ! 38 | 三 、 促进 结构 调整 , 化解 过剩 产能 为 促进 结构 调整 , 化解 过剩 产能 , 国家 利用 部分 [@电价#Fin-Concept*] 降价 空间 设立 [@工业 企业 结构 调整 专项 资金#Fin-Concept*] , 支持 地方 在 淘汰 [@煤炭#Sector*] 、 [@钢铁#Sector*] [@行业#Fin-Concept*] 落后 产能 中 安置 下岗[@ 失业 人员#Person*] 等 。 39 | [@赵辰昕#Person*] 说 : “ 为 做好 全 年 经济 社会 发展 工作 , 我 委 和 各 部门 各 地方 还 将 不断 调整 充实 政策 工具 箱 , 按照 [@党 中央 国务院#Organization*] 的 决策 部署 , 适度 扩大 总 需求 , 以 [@供给 侧 结构性 改革#Artifical*] 为 主线 , 及时 推出 务实 管用 的 政策 措施 , 并 切实 抓好 执行 和 落实 , 引导 好 发展 预期 , 确保 经济 运行 在 合理 区间 。 ” [@去 产能#Artifical*] : 年底 要 一一 盘点 交账 去 产能 被 排 在 今年 [@供给 侧 结构性 改革#Artifical*] 五 大 任务 之 首 , [@钢铁#Sector*] 和 [@煤炭#Sector*] [@行业#Fin-Concept*] 尤其是 关键 。 40 | 还 有 一 头 , [@税收 领域#Fin-Concept*] 一 个 月 1万 收入 的 人 , 不知不觉 需要 缴纳 6600 的 [@税费#Fin-Concept*] 。 41 | 另外 , 11月 17日 , [@新加坡 RQFII 额度#Fin-Concept*] 扩大 至 1000亿 元 人民币 , 较 之前 增加 500亿 元 。 42 | 就 公共 部门 而 言 , 虽然 从 国际 比较 来 看 , 我 国 [@政府 债务 率#Fin-Concept*] 并 不 高 , 但 以 如此 快 的 速度 [@加 杠杆#Artifical*] 将 大大 透支 [@未来 财政 政策#Artifical*] 的 操作 空间 , 也 很 容易 陷入 [@发达 国家#Organization*] 那样 的 [@财政 困境#Fin-Concept*] , 带来 很多 长期 隐患 。 43 | [@铁 物资#Organization*] 、 [@东北 特钢 #Organization*]等 信用 违约 事件 频发 , 对 企业 [@融资 成本#Fin-Concept*] 、 借新 还 旧 、 [@金融#Fin-Concept*] 稳定 、 [@风险 溢价 #Fin-Concept*]等 产生 负面 传染 效应 , [@P2P#Organization*] 各 种 跑路 , [@金融 风险 防范 压力#Fin-Concept*] 加大 。 44 | [@上海 证券 分析师 胡月晓#Person*] 表示 , [@PPI#Fin-Concept*] 持续 改善 , [@环比#Fin-Concept*] 继续 大幅 明显 上涨 , 超出 [@市场 预期#Fin-Concept*] 。 45 | 6.5% 的 [@经济 增速 目标#Fin-Concept*] 对 当前 体量 规模 的 [@中国 经济#Fin-Concept*] 较为 适宜 的 , 并且 不 难 达成 。 46 | 当 事实 落地 的 时候 [@交易#Fin-Concept*] 的 预期 在 发生 转变 , 从 [@交易#Fin-Concept*] 的 行为 上 来 看 , 马上 出现 的 是 [@平仓#Fin-Concept*] 的 一 个 行为 , 典型 的 “ 买 预期 、 卖 事实 ” —— 当 事实 落地 的 时候 [@交易#Fin-Concept*] 的 预期 在 发生 转变 。 47 | [@国家 统计局 新闻 发言人 盛来运#Person*] 表示 , 当前 [@供给侧 结构性 改革#Artifical*] 取得 积极 进展 , 新 的 动能 在 加快 成长 , 因此 “ 稳 ” 的 基础 有所 加强 。 48 | 往往 [@新兴 行业#Other*] , [@利润#Fin-Concept*] 没有 放 出来 , 有的 是 还 没有 成熟 的 产品 。 49 | 2010年 和 2015年 两 次 大 涨 之间 , 经历 了 几 次 紧 就 跌松 反弹 , 最后 呈现 大松 大涨 的 局面 。 50 | 值得 一 提 的 是 , 去年 [@吉林省 经济#Fin-Concept*] 增速 逐步 上升 : 一 、 二 、 三 季度 的 [@GDP#Fin-Concept*] 增速 分别 为 6.2% 、 6.7% 、 6.9% 。 51 | 2015年 12月 ,PMI 为 49.7% , 高于 上 月 0.1 个 百分点 ;非 制造业 商务 活动 指数 为 54.4% , 比 上 月 上升 0.8 个 百分点 , 升至 2015年 以来 的 高点 。 52 | 有 问题 , 对 孩子 一样 的 , 该 说 也 要 说 , 直接 说 直接 讲 。 53 | 核心 原因 是 : ( 1 ) 在 风险 监管 及 金融 体制 改革 背景 下 , 投资者 风险 偏好 提升 空间 较为 有限 ; ( 2 ) IPO开闸 带来 的 新兴 板块 标的 稀缺性 缺失 , 使得 估值 提升 空间 有限 。 54 | 除 对 2016年 全球 经济 增长 预测 外,科法斯 还 发布 了 最新 国家 风险 评级 调整 名单 ( 参见 图表 ) 。 55 | 在 投资 及 生活 领域 , 坦伯顿 深信 绝对 不 要 追随 群众 , 而 应 逆势 操作 ( Dontfollow thecrowd ) 的 理念 , 他 独具慧眼 的 前瞻 视野 , 以及 严谨 的 研究 精神 , 将 其 终生 成就 臻至 巅峰 。 56 | 其中 , 实物 商品 网 上 零售额 21239亿 元 , 增长 26.1% , 占 社会 消费品 零售 总额 的 比重 为 11.6% ; 在 实物 商品 网 上 零售额 中 , 吃 、 穿 和 用 类 商品 分别 增长 30.8% 、 17.3% 和 29.4% 。 57 | 考虑 到 页岩油 的 威胁 , 意味 着 当前 油价 反弹 很 难 突破 50 - 60 美元 的 天花板 。 58 | 风 投 从业者 的 性格 一般 都 是 怎样 的 ? 59 | 房地产 回暖 提供 安全垫 中国 货币 政策 将 呈现 中性 尽管 没有 降准 降息 等 大规模 货币 政策 出台 , 中国 的 货币 市场 利率 总体 平稳 , 并 保持 低位 运行 。 60 | 而 需求 回暖 、 毛利 可观 , 令 生产 依然 旺盛 。 61 |     甘肃 的 棚改 货币化 安置率 已 高于 全 国 水平 。 62 | 我们 筛选 出 过去 三 年 业绩 亏损 或者 归属于 母 公司 净 利润 大幅 下降 的 标的 公司 ; 此外 , 大 股东 持股 比例 也 是 很 重要 的 标准 , 第一 大 股东 持股 比例 超过 50%, 有 绝对 控制权 。 63 | 因而 , 在 金融 监管 的 过程 中 , 实体 经济 大 概率 也 将 被 波及 , 进一步 增加 需求 端 的 下行 风险 。 64 | 写 在 前面 的 话 by 木头 老师 这 一 系列 的 内容 是 我 按照 《 万物简史 》 这 本 书 的 知识 脉络 来 讲 的 , 涉及 的 内容 非常 广泛 , 从 宇宙 到 恐龙 , 从 黑洞 到 相对论 , 都 是 孩子们 非常 好奇 的 知识 。 65 | 总体 上 , 发布会 发言 要点 如下 : 1 改革 和 稳定 是 相辅相成 的 。 66 | 甘肃省 住房 和 城乡 建设厅 一 位 工作 人员 介绍 , 2015年 以来 , 甘肃省 共 有 2.85万 户 棚改 对象 , 通过 货币化 得到 安置 , 货币化 安置率 为 31% , 高于 全 国 同 期 水平 5.6 个 百分点 。 67 | 目前 三 大 股东 分别 为 中油 资产 管理 有限 公司 、 天津 经济 技术 开发区 国有 资产 经营 公司 、 广博 投资 控股 有限 公司 , 分别 持股 82.18% 、 12.82% 和 5% 。 68 | 农谚 说 : “ 春分 麦 起身 , 一刻 值千金 。 ” 这时 我 国 大部分 地区 越 冬 作物 进入 春季 生长 阶段 , 春耕 、 春种 将 进入 繁忙 阶段 。 69 | 上述 债券 基金 经理 表示 , 如果 消息 持续 发酵 , 不少 机构 会 出现 跟风 现象 , 届时 就 真的 变成 第二 次 “ 钱荒 ” 。 70 | 基金 经理 “ 一 拖多 ” , 表面 上 只 是 基金 经理 数量 跟 不 上 产品 数量 , 实际上 反映 了 诸多 问题 。 71 | 6月 经销商 库存 系数 升至 1.55 , 再度 转差 且 仍 高于 警戒 线 , 表明 终端 需求 改善 较为 有限 , 厂家 销量 转化 为 经销商 库存 。 72 | 研报 受到 “ 最 大 回撤 ” 这 一 思想 的 启发 , 认为 可以 通过 回撤 来 衡量 股指 期货 价格 序列 的 平稳 度 , 进而 判断 今日 行情 的 走势 。 73 | 供给 侧 改革 将 继续 推进 这些 具体 改革 的 前进 。 74 | 业主 : 水牛城 与 福特艾瑞 公共 桥梁署 电话 : 1(716)884-674428 、 MBTAGreenLine Extension , Boston 波士顿 绿线 地铁 扩展 项目 , 总 投资 30亿 美元 项目 简介 : 该 项目 计划 扩建 波士顿 绿线 地铁 , 延长 线 全长 6.9 公里 , 项目 正在 审批 中 。 75 | 一大早 [@美图#Organization*] 的 [@创始人 之一 蔡总#Person*] 就 在 [@朋友圈#Other*] 里 不断 地 直播 着 [@美 图 奇迹#Fin-Concept*] : 下午 2点 左右 [@市值#Fin-Concept*] 900亿 的 [@美图 市值#Fin-Concept*] 出现 , 很 显然 [@蔡 老板#Person*] 很 兴奋 ; 然后 。 76 | 对于 [@市场#Fin-Concept*] 关注 的 [@房地产 税#Fin-Concept*] ,[@盛松成#Person*] 认为 由于 [@房地产税#Fin-Concept*] 设计 复杂 , 几 年 内 很 难 推出 。 77 | 建议 根据 自身 的 [@财富#Fin-Concept*] [@保值#Fin-Concept*] 、 [@增值#Fin-Concept*] [@需求#Fin-Concept*] , 合理 运用 [@保险#Artifical*] 、 [@保险金 信托#Artifical*] 或 [@家族 信托#Artifical*] 等 方式 化解 自身 及 子女 [@婚姻 风险#Fin-Concept*] 带来 的 [@财富 缩水#Fin-Concept*] 。 78 | 两 年 里面 一 块 土地 也 不 出 , [@市场#Fin-Concept*] 不 就 恢复 到 8点 , 还 是 严重 供过于求 , 不 供 地 有 什么 问题 ? 79 | “ [@非 制造业#Sector*] , 特别是 [@服务业#Sector*] 近 两 年 总体 保持 了 较 快 [@增速#Fin-Concept*] , 这 与 [@中国 经济 结构 持续 优化#Fin-Concept*] 密切 相关 。 80 | 要 有 人文 关怀 , 带着 感情 , 将心比心 , 设身处地 为 他们 着想 , 既 帮 他们 解决 好 生活 困难 , 又 助 他们 提高 [@再 就业 能力#Fin-Concept*] 。 81 | 想要 创业 , 一定 要 有 一 颗 强大 的 内心 , [@创业#Fin-Concept*] 一定 会 遇到 挫折 。 82 | 做好 [@明年 经济 工作#Fin-Concept*] , 就 是 要 把 思想 和 行动 统一 到 [@中央#Organization*] 的 思路 和 方法 上 来 , 服从 和 服务 于 大局 , 下 好 全 国 一 盘棋 , 全面 做好 [@稳 增长#Artifical*] 、 [@促 改革#Artifical*] 、 [@调结构#Artifical*] 、 [@惠民生#Artifical*] 、 [@防风险#Artifical*] 各 项 工作 。 83 | 同时 , 大幅 提升 [@制造业#Sector*] 的 [@研发 投资 强度#Fin-Concept*] , 改变 我 国 在 [@国际 分工#Fin-Concept*] 中 的 不利 地位 。 84 | 如果 是 这样 的 模式 , 那么 拿到 [@不良 贷款#Fin-Concept*] 的 [@资产 管理 公司#Organization*] 就 可 把 [@部分 贷款#Fin-Concept*] 转换 成 [@股权#Fin-Concept*] , 这样 也 不 一定 就 是 糟糕 的 做法 , 或许 这 是 应 对 某 [@具体 贷款#Fin-Concept*] 的 适当 举措 。 85 | 二 者 均 有助于 缓和 [@企业 部门 资产 质量 恶化#Fin-Concept*] 、 放缓 [@不良 贷款 生成 速度#Fin-Concept*] 。 86 | [@李 迅雷#Person*] : 从 [@国家 统计局#Organization*] 公布 的 [@数据#Artifical*] 来 看 , [@经济 增速#Fin-Concept*] 整体 平稳 , 6月份 的 [@工业 增加值 增速#Fin-Concept*] 有所 回升 , 这 个 [@数据#Artifical*] 比 预期 的 要好 一些 , 这 可能 有 [@一 季度 投资 回升#Fin-Concept*] 后 的 [@滞后 效应#Fin-Concept*] 。 87 | 这个 非常 重要 , [@实体 经济#Fin-Concept*] 是 [@经济 发展#Fin-Concept*] 的 根基 。 88 | 万 般 皆 下品 , 唯有 买房 高 , 正在 成为 事实 。 89 | 过剩 的 [@货币#Fin-Concept*] 涌入 [@金融 资产#Fin-Concept*] 中 , [@债市#Sector*] 、 [@股市#Sector*] 相继 迎来 [@牛市#Fin-Concept*] , 而 [@房地产 市场#Sector*] 也 大幅 扩张 。 90 | 作为 [@货币 超发#Fin-Concept*] 的 后果 之一 , 12年 以来 [@中国 居民#Person*] [@中长贷#Fin-Concept*] 爆发式 增长 ,[@月 均 新增 额#Fin-Concept*] 从 12年 的 1120亿 元 飙升 至 16年 上半年 的 4379亿 元 。 91 | 因而 以往 [@去产能#Artifical*] 不但 力度 不 足 , 且 精力 较为 分散 。 92 | [@专家#Person*] 认为 , [@中国#Organization*] 发展 [@智能 制造#Artifical*] 也 需要 加强 [@平台 建设#Other*] , 让 [@行业#Fin-Concept*] 、 [@企业#Fin-Concept*] 、 [@科研 院所#Organization*] 等 各 方 广泛 参与 , 共同 谋划 如何 具体 落实 [@中国 制造 智能 升级#Fin-Concept*] 的 [@路线图#Other*] 。 93 | [@期权 收盘 涨跌幅#Fin-Concept*] ( % ) [@成交量#Fin-Concept*] ( 手 ) 50ET F2.3350-0.3495 02596 250ETF购 3月 2.350.0089 - 27.0540,10950ETF沽 3月 2.350.0254.1736,7424 [@外汇#Fin-Concept*] 与 [@大宗 商品#Artifical*] [@美元 指数#Fin-Concept*] 走弱 , [@工业品#Artifical*] 整体 回调 趋缓 ( [@张 磊#Person*] ) 今日 , [@美元 指数#Fin-Concept*] 走弱 , [@COMEX 黄金#Artifical*] [@价格#Fin-Concept*] 跌到 了 1200 附近 的 敏感 区域 , 21点30 分公布 [@美国#Organization*] [@非农#Fin-Concept*] 与 [@失业率#Fin-Concept*] , [@市场#Fin-Concept*] 预期 20万 人 左右 。 94 | ( 6 ) [@财政 事务 预算数#Fin-Concept*] 为 14.81亿 元 , 比 2015年 [@执行数#Fin-Concept*] 增加 1.57亿 元 , 增长 11.9% 。 95 | 我们 认为 至少 应该 尝试 一下 , 看看 是否 有所 收获 。 ” 他 的 [@团队#Organization*] 所 设想 的 那 个 实验 , 最终 被 证明 对 搜索 至关 重要 : 即 文件 排名 与 搜索 请求 的 匹配 程度 有 多 高 。 96 | [@IMF#Organization*] 下调 [@16年 全球 经济 增速 预期#Fin-Concept*] 从 3.4%至3.2%, 上调 [@2016年 中国 经济 增速 预估#Fin-Concept*] 至 6.5% 。 97 | [@中欧 国际 工商 学院 副院长 张维烔#Person*] 表示 ,自 2015年 [@中央#Organization*] 明确 提出 着力 加强 [@供给侧 结构性 改革#Artifical*] 后 , 今年 已经 成为 [@供给侧 改革#Artifical*] 的 元年 。 98 | 和 [@微面#Artifical*] 相当 的 [@价格#Fin-Concept*] , 完全 不同 的 [@销售 模式#Fin-Concept*] , 想 分得 [@农村 消费 升级 市场#Fin-Concept*] 的 一杯羹 。 99 | 据 他 介绍 , 目前 [@临汾市#Location*] 有 [@焦化 企业#Organization*] 20余 家 。 100 | [@傅莹#Person*] : [@房地产税 立法#Artifical*] 涉及 多方 利益 , 今年 没有 提请 审议 安排 [@澎湃 新闻 记者 范瑟#Person*] 来源 : [@澎湃 新闻#Organization*] 3月4日 , [@十二 届 全 国 人大 五 次 会议 新闻 发言人 傅莹#Person*] 表示 , “ 今年 没有 把 [@房地产税 草案#Artifical*] 提请 [@全 国 人大 常委会#Organization*] 审议 的 安排 。 ” 据 [@新华网#Organization*] 报道 , [@十二 届 全 国 人大 五 次 会议 首 场 新闻 发布会#Event*] 于 3月4日 上午 11 时 举行 , [@大会 新闻 发言人 傅莹#Person*] 向 [@中外 媒体#Organization*] 介绍 本 次 大会 有关 情况 并 回答 记者 提问 。 101 | -------------------------------------------------------------------------------- /demotext/ChineseDemo.txt: -------------------------------------------------------------------------------- 1 | 我觉得你们啊,你们……我感觉你们新闻界还要学习一个,你们非常熟悉西方的这一套value。 2 | 你们毕竟还tooyoung(太年轻),明白这意思吧。我告诉你们我是身经百战了,见得多了!啊,西方的哪一个国家我没去过?媒体他们——你……你们要知道,美国的华莱士,那比你们不知道高到哪里去了。啊,我跟他谈笑风生!所以说媒体啊,要……还是要提高自己的知识水平!懂我的意思——识得唔识得啊?(懂不懂啊?) 3 | 我的这个经历就是到了上海,到了89年的年初的时候,我在想我估计是快要离休了,我想我应该去当教授。于是我就给朱物华校长、张钟俊院长,给他们写了一个报告。他们说欢迎你来,不过,这个ApplyforProfessor(申请当教授),你要去做一个报告。我就做了一个能源与发展趋势的主要的节能措施,这个报告经过好几百个教授一致通过。 4 | 那么上海交大教授当了以后我就做第二个报告,就是微电子工业的发展。这两个报告做了以后不久,过后,1989年的5月31号北京就把我调到北京去了。现在这个报告做了快20年了,所以呢我就去年呢在我们交大的学报,我发表了两篇文章,就是呼应这个89年的报告的。特别是昨天晚上,他又把我这个第二篇报告,还有我这十几年包括在电子工业部、上海市所做的有关于信息产业化的文章,总共我听他们讲是27篇……我也没有什么别的东西送给你们,我们拿来以后我叫钱秘书啊,就把这两个学报,两个学报的英文本──因为他们这里洋文好的人多得很哪──英文本,还有前面出过两本书,再加上昨天晚上出的这本书,送给郭伟华同志,给你送过来,那么给你们作为一个纪念。 5 | 人呐就都不知道,自己就不可以预料。一个人的命运啊,当然要靠自我奋斗,但是也要考虑到历史的行程。我绝对不知道,我作为一个上海市委书记怎么把我选到北京去了,所以邓小平同志跟我讲话,说“中央都决定啦,你来当总书记”,我说另请高明吧。 6 | 我实在我也不是谦虚,我一个上海市委书记怎么到北京来了呢?但是呢,小平同志讲“大家已经研究决定了”,所以后来我就念了两首诗(原话如此),叫“苟利国家生死以,岂因祸福避趋之”,那么所以我就到了北京。到了北京我干了这十几年也没有什么别的,大概三件事: 7 | 一个,确立了社会主义市场经济; 8 | 第二个,把邓小平的理论列入了党章; 9 | 第三个,就是我们知道的“三个代表”。 10 | 如果说还有一点什么成绩就是军队一律不得经商!这个对军队的命运有很大的关系。 11 | 因为我后来又干了一年零八个月,等于我在部队干了15年军委主席。还有九八年的抗洪也是很大的。但这些都是次要的,我主要的我就是三件事情,很惭愧,就做了一点微小的工作,谢谢大家。 -------------------------------------------------------------------------------- /demotext/ChineseDemo.txt.ann: -------------------------------------------------------------------------------- 1 | 我 觉得 [@你们#Person*] 啊 , [@你们#Person*] …… 我 感觉 [@你们#Person*] 新闻界 还 要 学习 一个 , [@你们#Person*] 非常 熟悉 西方的 这 一套 value 。 [@你们#Person*] 毕竟 还 too young ( 太 年轻 ) , 明白 这 意思 吧 。 我 告诉 [@你们#Person*] 我 是 身经百战 了 , 见得 多 了 ! 啊 , 西方 的 哪 一个 国家 我 没 去过 ? 媒体 他们 —— 你 …… [@你们#Person*] 要 知道 , [@美国#Location*] 的 [@华莱士#Person*] , 那 比 [@你们#Person*] 不知道 高 到 哪里 去 了 。 啊 , 我 跟 他 谈笑风生 ! 所以 说 媒体 啊 , 要 …… 还是 要 提高 自己 的 知识 水平 ! 懂 我的 意思 —— 识得 唔 识得 啊 ?( 懂 不懂 啊 ? ) 2 | 我 的 这个 经历 就是 到了 上海 , 到了 89年 的 年初 的 时候 ,我 在 想 我 估计 是 快要 离休 了 , 我 想 我 应该 去 当 教授 。 于是 我 就 给 [@朱物华#Person*] 校长 、 [@张钟俊#Person*] 院长 , 给 他们 写 了 一个 报告 。 他们 说 欢迎 你 来 , 不过 , 这个 Apply for Professor( 申请 当 教授 ) , 你 要 去 做 一个 报告 。 我 就 做了 一个 能源 与 发展 趋势 的 主要 的 节能 措施 , 这个 报告 经过 好几百个 教授 一致 通过 。 那么 [@上海交大#Organization*] 教授 当了 以后 我 就 做 第二个 报告 , 就是 [@微电子 工业#Sector*] 的 发展 。 这 两个 报告 做了 以后 不久 , 过后 , 1989年 的 5月31号 北京 就 把 我 调到 北京 去 了 。 现在 这个 报告 做了 快 20年 了 , 所以 呢 我 就 去年 呢 在 我们 [@交大#Organization*] 的 学报 , 我 发表 了 两篇 文章 , 就是 呼应 这个 89年 的 报告 的 。 特别 是 昨天 晚上 , 他 又把 我 这个 第二篇 报告 , 还有 我 这 十几年 包括 在 电子 工业部 、 上海市 所 做 的 有关 于 信息 产业化 的 文章 , 总共 我 听 他们 讲 是 27篇 …… 我 也 没有 什么 别的 东西 送 给 [$你们#Person*] , 我们 拿来 以后 我 叫 [@钱秘书#Person*] 啊 , 就 把 这 两个 学报 , 两个 学报 的 英文本 ── 因为 他们 这里 洋文 好 的 人 多得很 哪 ── 英文本 , 还有 前面 出过 两本书 , 再 加上 昨天 晚上 出的 这 本书 , 送给 郭伟华 同志 , 给 你 送 过来 , 那么 给 [$你们#Person*] 作为 一个 纪念 。 3 | 人 呐 就 都 不知道 , 自己 就 不可以 预料 。 一个人 的 命运 啊 , 当然 要 靠 自我奋斗 , 但是 也要 考虑 到 历史 的 行程 。 我 绝对 不知道 , 我 作为 一个 上海 市委书记 怎么 把 我 选 到 北京 去 了 , 所以 邓小平 同志 跟 我 讲话 , 说 “ 中央 都 决定 啦 , 你 来 当 总书记 ” , 我 说 另请高明 吧 。 我 实在 我 也 不是 谦虚 , 我 一个 上海 市委书记 怎么 到 北京 来 了 呢 ? 但是 呢 , 小平 同志 讲 “ 大家 已经 研究 决定 了 ” , 所以 后来 我 就 念了 两首诗 ( 原话 如此 ) , 叫 “ 苟 利 国家 生死 以 , 岂 因 祸福 避趋 之 ” , 那么 所以 我 就到 了 北京 。 到了 北京 我 干了 这 十几年 也 没有 什么 别 的 , 大概 三件 事 : 4 | 一个 ,确立 了 社会主义 市场 经济 ; 5 | 第二个 ,把 邓小平 的 理论 列入 了 党章 ; 6 | 第三个 , 就是 我们 知道的 “ 三个代表 ” 。 7 | 如果 说 还有 一点 什么 成绩 就是 军队 一律 不得 经商 ! 这个 对 军队 的 命运 有 很大 的 关系 。 因为 我 后来 又 干了 一年 零 八个月 , 等于 我 在 部队 干了 15年 军委主席 。 还有 九八年 的 抗洪 也是 很大 的 。 但 这些 都是 次要 的 , 我 主要的 我 就是 三件 事情 , 很 惭愧 , 就 做了 一点 微小 的 工作 , 谢谢 大家 。 -------------------------------------------------------------------------------- /demotext/EnglishDemo.txt: -------------------------------------------------------------------------------- 1 | A US aircraft carrier and other warships did not sail towards North Korea - but went in the opposite direction, it has emerged. 2 | The US Navy said on 8 April that the Carl Vinson strike group was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions. 3 | Last week President Trump said an "armada" was being sent. 4 | But the group was actually farther away over the weekend, moving through the Sunda Strait into the Indian Ocean. 5 | The US military's Pacific Command said on Tuesday that it had cancelled a port visit to Perth, but had completed previously scheduled training with Australia off its northwest coast after departing Singapore on 8 April. 6 | The strike group was now "proceeding to the Western Pacific as ordered". 7 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader Kim Jong-un, a change of plan or simple miscommunication, the BBC's Korea correspondent Stephen Evans says. 8 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response". 9 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US. 10 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific. 11 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said. 12 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday. 13 | He said the US was "working closely" with China to engage North Korea. 14 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action. 15 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday. 16 | -------------------------------------------------------------------------------- /demotext/EnglishDemo.txt.ann: -------------------------------------------------------------------------------- 1 | A [@US#Location*] [@aircraft carrier#Artifical*] and other warships did not sail towards [@North Korea#Location*] - but went in the opposite direction, it has emerged. 2 | The [@US Navy#Organization*] said on 8 April that the Carl Vinson strike group was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions. 3 | Last week [@President Trump#Person*] said an "armada" was being sent. 4 | But the group was actually farther away over the weekend, moving through [@the Sunda Strait#Location*] into the Indian Ocean. 5 | The [@US#Location*] military's [@Pacific Command#Person*] said on Tuesday that it had cancelled a port visit to [@Perth#Location*], but had completed previously scheduled training with [@Australia#Location*] off its northwest coast after departing [@Singapore#Location*] on 8 April. 6 | The strike group was now "proceeding to [@the Western Pacific#Location*] as ordered". 7 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten [$North Korea#Location*]'s leader Kim Jong-un, a change of plan or simple miscommunication, the BBC's Korea correspondent Stephen Evans says. 8 | Either way, [$US#Location*] Vice-President Mike Pence was undeterred as he spoke aboard the [$US#Location*]S Ronald Reagan - an [$aircraft carrier#Artifical*] docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response". 9 | [$North Korea#Location*] and the [$US#Location*] have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the [$US#Location*]. 10 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific. 11 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said. 12 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday. 13 | He said the US was "working closely" with China to engage North Korea. 14 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action. 15 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday. 16 | A [@US#Location*] [@aircraft carrier#Artifical*] and other warships did not sail towards [@North Korea#Location*] - but went in the opposite direction, it has emerged. 17 | The [@US Navy#Organization*] said on 8 April that the Carl Vinson strike group was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions. 18 | Last week [@President Trump#Person*] said an "armada" was being sent. 19 | But the group was actually farther away over the weekend, moving through [@the Sunda Strait#Location*] into the Indian Ocean. 20 | The [@US#Location*] military's [@Pacific Command#Person*] said on Tuesday that it had cancelled a port visit to [@Perth#Location*], but had completed previously scheduled training with [@Australia#Location*] off its northwest coast after departing [@Singapore#Location*] on 8 April. 21 | The strike group was now "proceeding to [@the Western Pacific#Location*] as ordered". 22 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader Kim Jong-un, a change of plan or simple miscommunication, the BBC's Korea correspondent Stephen Evans says. 23 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response". 24 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US. 25 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific. 26 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said. 27 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday. 28 | He said the US was "working closely" with China to engage North Korea. 29 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action. 30 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday. 31 | A [@US#Location*] [@aircraft carrier#Artifical*] and other warships did not sail towards [@North Korea#Location*] - but went in the opposite direction, it has emerged. 32 | The [@US Navy#Organization*] said on 8 April that the Carl Vinson strike group was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions. 33 | Last week [@President Trump#Person*] said an "armada" was being sent. 34 | But the group was actually farther away over the weekend, moving through [@the Sunda Strait#Location*] into the Indian Ocean. 35 | The [@US#Location*] military's [@Pacific Command#Person*] said on Tuesday that it had cancelled a port visit to [@Perth#Location*], but had completed previously scheduled training with [@Australia#Location*] off its northwest coast after departing [@Singapore#Location*] on 8 April. 36 | The strike group was now "proceeding to [@the Western Pacific#Location*] as ordered". 37 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader Kim Jong-un, a change of plan or simple miscommunication, the BBC's Korea correspondent Stephen Evans says. 38 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response". 39 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US. 40 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific. 41 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said. 42 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday. 43 | He said the US was "working closely" with China to engage North Korea. 44 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action. 45 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday. 46 | A [@US#Location*] [@aircraft carrier#Artifical*] and other warships did not sail towards [@North Korea#Location*] - but went in the opposite direction, it has emerged. 47 | The [@US Navy#Organization*] said on 8 April that the Carl Vinson strike group was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions. 48 | Last week [@President Trump#Person*] said an "armada" was being sent. 49 | But the group was actually farther away over the weekend, moving through [@the Sunda Strait#Location*] into the Indian Ocean. 50 | The [@US#Location*] military's [@Pacific Command#Person*] said on Tuesday that it had cancelled a port visit to [@Perth#Location*], but had completed previously scheduled training with [@Australia#Location*] off its northwest coast after departing [@Singapore#Location*] on 8 April. 51 | The strike group was now "proceeding to [@the Western Pacific#Location*] as ordered". 52 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader Kim Jong-un, a change of plan or simple miscommunication, the BBC's Korea correspondent Stephen Evans says. 53 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response". 54 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US. 55 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific. 56 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said. 57 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday. 58 | He said the US was "working closely" with China to engage North Korea. 59 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action. 60 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday. -------------------------------------------------------------------------------- /demotext/EnglishDemo1.txt: -------------------------------------------------------------------------------- 1 | A US aircraft carrier and other warships did not sail towards North Korea - but went in the opposite direction, it has emerged. 2 | The US Navy said on 8 April that the Carl Vinson strike group was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions. 3 | Last week President Trump said an "armada" was being sent. 4 | But the group was actually farther away over the weekend, moving through the Sunda Strait into the Indian Ocean. 5 | The US military's Pacific Command said on Tuesday that it had cancelled a port visit to Perth, but had completed previously scheduled training with Australia off its northwest coast after departing Singapore on 8 April. 6 | The strike group was now "proceeding to the Western Pacific as ordered". 7 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader Kim Jong-un, a change of plan or simple miscommunication, the BBC's Korea correspondent Stephen Evans says. 8 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response". 9 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US. 10 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific. 11 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said. 12 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday. 13 | He said the US was "working closely" with China to engage North Korea. 14 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action. 15 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday. 16 | -------------------------------------------------------------------------------- /demotext/EnglishDemo1.txt.ann: -------------------------------------------------------------------------------- 1 | A [@US#Location*] [@aircraft carrier#Artifical*] and other [@warships#Artifical*] did not sail towards [@North Korea#Location*] - but went in the opposite direction, it has emerged. 2 | The [@US#Location*] Navy said on 8 April that the [@Carl Vinson strike group#Organization*] was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions. 3 | Last week President Trump said an "armada" was being sent. 4 | But the group was actually farther away over the weekend, moving through the [@Sunda Strait#Location*] into the [@Indian Ocean#Location*]. 5 | The [@US#Location*] military's Pacific [@Command#Person*] said on Tuesday that it had cancelled a port visit to[@ Perth#Location*], but had completed previously scheduled training with Australia off its northwest coast after departing [@Singapore#Location*] on 8 April. 6 | The strike group was now "proceeding to the Western Pacific as ordered". 7 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten [$North Korea#Location*]'s leader Kim Jong-un, a change of plan or simple miscommunication, the [@BBC's Korea correspondent Stephen Evans#Person*] says. 8 | Either way, [$US#Location*] Vice-President Mike Pence was undeterred as he spoke aboard the [$US#Location*]S Ronald Reagan - an [$aircraft carrier#Artifical*] docked in Japan - during [@his#Artifical*] tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an ov[@erwhe[@lming and #动作*]effective#参与者*] American response". 9 | [$North Korea#Location*] and the [$US#Location*] have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the [$US#Location*]. 10 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific. 11 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said. 12 | The [$US#Location*] also accused [$North Korea#Location*] of trying to "provoke something", with [$US#Location*] Defence Secretary James Mattis calling the test a reckless move on Tuesday. 13 | He said the [$US#Location*] was "working closely" with China to engage [$North Korea#Location*]. 14 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the [$US#Location*] takes military action. 15 | "If the [$US#Location*] is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday. 16 | A [@US#Location*] [@aircraft carrier#Artifical*] and other [@warships#Artifical*] did not sail towards [@North Korea#Location*] - but went in the opposite direction, it has emerged. 17 | The [@US#Location*] Navy said on 8 April that the [@Carl Vinson strike group#Organization*] was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions. 18 | Last week President Trump said an "armada" was being sent. 19 | But the group was actually farther away over the weekend, moving through the [@Sunda Strait#Location*] into the [@Indian Ocean#Location*]. 20 | The [@US#Location*] military's Pacific [@Command#Person*] said on Tuesday that it had cancelled a port visit to[@ Perth#Location*], but had completed previously scheduled training with Australia off its northwest coast after departing [@Singapore#Location*] on 8 April. 21 | The strike group was now "proceeding to the Western Pacific as ordered". 22 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader [@Kim Jong-un#Person*], a change of plan or simple miscommunication, the [@BBC's Korea correspondent Stephen Evans#Person*] says. 23 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response". 24 | [$North Korea#Location*] and the [$US#Location*] have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the [$US#Location*]. 25 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific. 26 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said. 27 | The [$US#Location*] also accused [$North Korea#Location*] of trying to "provoke something", with [$US#Location*] Defence Secretary James Mattis calling the test a reckless move on Tuesday. 28 | He said the [$US#Location*] was "working closely" with China to engage [$North Korea#Location*]. 29 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the [$US#Location*] takes military action. 30 | "If the [$US#Location*] is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday. 31 | A [@US#Location*] [@aircraft carrier#Artifical*] and other [@warships#Artifical*] did not sail towards [@North Korea#Location*] - but went in the opposite direction, it has emerged. 32 | The [@US#Location*] Navy said on 8 April that the [@Carl Vinson strike group#Organization*] was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions. 33 | Last week President Trump said an "armada" was being sent. 34 | But the group was actually farther away over the weekend, moving through the [@Sunda Strait#Location*] into the [@Indian Ocean#Location*]. 35 | The [@US#Location*] military's Pacific [@Command#Person*] said on Tuesday that it had cancelled a port visit to[@ Perth#Location*], but had completed previously scheduled training with Australia off its northwest coast after departing [@Singapore#Location*] on 8 April. 36 | The strike group was now "proceeding to the Western Pacific as ordered". 37 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader [@Kim Jong-un#Person*], a change of plan or simple miscommunication, the [@BBC's Korea correspondent Stephen Evans#Person*] says. 38 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response". 39 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US. 40 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific. 41 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said. 42 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday. 43 | He said the US was "working closely" with China to engage North Korea. 44 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action. 45 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday. 46 | A [@US#Location*] [@aircraft carrier#Artifical*] and other [@warships#Artifical*] did not sail towards [@North Korea#Location*] - but went in the opposite direction, it has emerged. 47 | The [@US#Location*] Navy said on 8 April that the [@Carl Vinson strike group#Organization*] was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions. 48 | Last week President Trump said an "armada" was being sent. 49 | But the group was actually farther away over the weekend, moving through the [@Sunda Strait#Location*] into the [@Indian Ocean#Location*]. 50 | The [@US#Location*] military's Pacific [@Command#Person*] said on Tuesday that it had cancelled a port visit to[@ Perth#Location*], but had completed previously scheduled training with Australia off its northwest coast after departing [@Singapore#Location*] on 8 April. 51 | The strike group was now "proceeding to the Western Pacific as ordered". 52 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader [@Kim Jong-un#Person*], a change of plan or simple miscommunication, the [@BBC's Korea correspondent Stephen Evans#Person*] says. 53 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response". 54 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US. 55 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific. 56 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said. 57 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday. 58 | He said the US was "working closely" with China to engage North Korea. 59 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action. 60 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday. -------------------------------------------------------------------------------- /demotext/UserA.ann: -------------------------------------------------------------------------------- 1 | 我们 看到 [@债券 市场 收益率#Fin-Concept*] 相比 去年 已经 有 明显 的 上涨 , 这 种 情况 还 会 延续 。 2 | [@规划#Artifical*] 特别 提出 , 将 推动 [@房地产税 立法#Fin-Concept*] , 但 未 明确 [@税收 立法 完成 时限#Fin-Concept*] 。 3 | 在 [@投资#Fin-Concept*] 这 个 领域 , “ 带着 镣铐 起舞 ” 有 可能 不 是 种 限制 反而 是 种 [@保护 机制#Fin-Concept*] 。 4 | 但 对 [@富 人#Person*] 来说 , 这 种 [@加 杠杆#Artifical*] 更 刺激 , 1000万 的 [@房子#Artifical*] , 转眼 成 2000万 了 , 干 什么 能 迅速 来 1000万 啊 ! 5 | 想想 [@光纤#Artifical*] , 为何 速度 这么 快 , 因为 它 完全 不 受 外界 干扰 。 6 | [@中国#Organization*] 前 段 时间 禁止 进口 [@朝鲜#Organization*] 的 [@煤炭#Artifical*] , [@煤炭#Artifical*] 占 [@朝鲜#Organization*] 对 [@中国#Organization*] [@出口#Fin-Concept*] 的 近 一半 , 这下 中 朝 之间 的 [@贸易#Fin-Concept*] 雪崩式 下降 。 7 | 初步 测算 , [@五 大 商业 银行#Organization*] 此 次 降准 1 个 百分点 , [@释放 流动性 规模#Fin-Concept*] 在 5800亿 左右 , 另外 , 本 周 [@央行#Organization*] [@公开 市场#Fin-Concept*] 大规模 投放 了 近 1.13万亿 , 释放 的 [@资金 规模#Fin-Concept*] 创 历史 单周 新高 ;③ [@躁动 条件#Fin-Concept*] 均 具备 , 有助于 年 内 “ [@春季 躁动#Fin-Concept*] ” 行情 的 开启 , [@目标 点位#Fin-Concept*] 3300点 。 8 | [@房地产 贷款 余额#Fin-Concept*] 占 各 项 [@贷款 余额#Fin-Concept*] 的 23.6% , 比3月 末 高 0.7 个 百分点 。 9 | 计算 公式 如下 : [@加权 平均 条款#Artifical*] 有 两 种 细分 形式 , [@广义 加权 平均#Artifical*] 和 [@狭义 加权 平均#Artifical*] , 区别 在于 对 [@后轮 融资#Fin-Concept*] 时 的 [@已 发行 股份#Fin-Concept*] 及 其 数量 的 定义 : [@广义 加权 #Fin-Concept*]包括 已 发行 的 [@普通股#Fin-Concept*] 、 [@优先 股#Fin-Concept*] 可转 换成 的 [@普通股#Fin-Concept*] 、 可以 通过 执行 [@期权#Fin-Concept*] 等 获得 [@普通股 数量#Fin-Concept*] 。 10 | 2 . 原因 之一 : [@企业#Organization*] [@盈利#Fin-Concept*] 低迷 , [@投资 意愿#Fin-Concept*] 较 弱 2.1  [@投资#Fin-Concept*] 迭 创新 低 , [@货币 刺激#Fin-Concept*] 失效 ? 11 | 过去 这 两 年 整 个 [@金融 市场#Sector*] 的 波动 比较 大 , 无论是 [@股票#Artifical*] 还是 [@债券#Artifical*] 等 大 类 [@资产 配置 板块#Fin-Concept*] , 抑或是 具体 到 [@股票 阿尔法 策略#Artifical*] 甚至 包括 [@CTA 策略 #Artifical*]的 表现 都 不 甚 理想 , 这 都 会 给 [@投资者#Person*] 在 决策 时 造成 一定 压力 。 12 | 当前 , 监管 层 已 宣布 重启 [@IPO#Fin-Concept*] , 11月 30日 开始 首 轮 [@新股#Organization*] 陆续 [@申购#Fin-Concept*] 。 13 | [@10年 国开 活跃 券 160213 收益率 上行 8.64bp#Fin-Concept*] 报 3.91% , [@160210 收益率 上行 11p #Fin-Concept*]报 3.97% ; [@10年 国债 活跃 券 160023 收益率 上行 #Fin-Concept*]4.01bp 报 3.28% 。 14 | [@民间 投资#Fin-Concept*] 同 [@全 社会 固定 资产 投资#Fin-Concept*] 的 增速 出现 了 明显 的 [@喇叭 口#Fin-Concept*] , [@民间 投资#Fin-Concept*] 比重 占 60% 左右 , 如果 降低 ,[@ 固定 资产 投资 #Fin-Concept*]则 不 乐观 。 15 | [@华盛顿 大学 房地产 和 城市 分析 中心 主席 克里斯托弗•莱恩博格#Person*] ( [@Christop her Leinberger#Person*] ) 说到 : “ 在 郊区 , 现在 的 大 挑战 是 维修 目前 的 高速 公路 系统 , 要 建设 新 的 公路 是 不 可能 的 了 , 因为 我们 现在 还 没有 来 维护 现有 公路 的 [@资金#Fin-Concept*] ” 。 16 | 将 探索 完善 [@省属 国有 资本 投资 运营 公司#Organization*] 的 [@运营 机制#Artifical*] , 加快 实现 由 [@管 企业#Artifical*] 到 [@管 资本 #Artifical*]的 转变 ; 加速 [@国有 资本#Fin-Concept*] 向 [@战略性 新兴 产业#Sector*] 、 [@高 端 服务业#Sector*] 、 [@优势 产业#Other*] 、 [@基础 设施#Sector*] 和 [@民生 保障#Other*] 等 五 大 领域 集中 。 17 | 有色 : 上 周 [@LME铜价#Fin-Concept*] 降 、 [@铝价#Fin-Concept*]升 , [@铜 库 存#Fin-Concept*]续 降 、 [@铝 库存#Fin-Concept*] 微 升 。 18 | 游戏 的 规则 在 慢慢 改变 , 我们 不 能 只 看到 [@财务 回报#Fin-Concept*] , 就 以为 自己 主宰 命运 了 。 19 | 来源 : [@阿尔法 工厂#Organization*] ( ID:alpworks) [@市场#Fin-Concept*] 普遍 认为 [@美国 房地产 市场#Sector*] 将 再次 好转 成为 不错 的 [@投资 标的#Fin-Concept*] 。 20 | 然而 [@大头#Person*] 却 再 也 没有 在 这 座 城市 买 房 , [@言谈#Person*] 也 不 再 有 当年 那 股 傲 劲 , 借 朋友 很多 钱 , 座驾 也 从 [@宝马#Artifical*] 变成 了 [@桑塔纳#Artifical*] , 每 天 仍 奔波 在 自己 的 创业 之 路 中 。 21 | 具体 来 看 , [@李克强#Person*] 提出 在 供给 方面 , 继续 运用 好 [@结构性 减税#Fin-Concept*] 等 手段 , 推动 “ [@双创#Artifical*] ” 和 “ [@中国 制造 2025#Artifical*] ” 、 “ [@互联网 + #Artifical*]” 行动 计划 , 促进 [@服务业#Sector*] 、 [@先进 制造业#Sector*] 发展 , 扶持 [@小微 企业#Organization*] 成长 , 发挥 制度 创新 和 技术 进步 对 供给 升级 的 倍增 效用 , 扩大 有效 供给 。 22 | 因此 , 需要 进一步 澄清 的 是 , 「 非 公开性 」 针对 的 是 特定 的 「 [@私募 产品#Artifical*] ( 项目 ) 」 不 得 进行 公开 的 宣传 , 但 并 不 禁止 对 [@私募#Organization*] 的 [@发起人#Person*] ( 如 [@基金 公司#Organization*] ) 、 过往 [@业绩#Fin-Concept*] 、 [@私募 基金 管理人#Person*] 等 进行 公开 宣传 。 23 | 建议 [@拓展 前海 蛇口 自贸区#Other*] 离岸 账户 (OSA) 功能 [@马蔚华#Person*] 在 《 [@关于 推进 前海 蛇口 自贸区 金融 改革 的 提案#Artifical*] 》 中 表示 , [@前海 蛇口 自贸区 金融 改革#Fin-Concept*] 做 了 一 系列 有益 探索 , 取得 了 很大 进展 。 24 | 根据 [@通货膨胀#Fin-Concept*] 的 定义 , [@通货膨胀#Fin-Concept*] 是 [@货币#Fin-Concept*] 过 多 发行 所 造成 的 [@物价#Fin-Concept*] 全面 上涨 , “ 现在 还 很 难 说 [@物价#Fin-Concept*] 全面 上涨 。 ” [@张世贤#Person*] 的 判断 不 无 道理 。 25 | [@中金 公司 #Organization*]维持 2016 年 [@CPI#Fin-Concept*] 为 1.9% 的 预测 不 变 。 26 | [@交通 银行 金研 中心 #Organization*]: 下半年 [@财政 政策#Artifical*] 积极 [@货币 政策 #Artifical*]宽松 [@晨报 记者 刘志飞#Person*] [@交通 银行 金融 研究 中心#Organization*] 昨日 发布 的 [@下半年 展望 报告#Artifical*] 认为 , 下半年 , 我 国 积极 [@财政 政策#Artifical*] 将 继续 发力 , 发挥 对 [@稳 增长#Fin-Concept*] 的 关键 作用 。 27 | 今年 反复 出现 这个 事情 , 跟 [@QE#Fin-Concept*] 没有 什么 关系 , [@地方 债 #Fin-Concept*]是 纳入 是 [@全球 央行#Organization*] 的 一 个 普遍 的 实践 , 就 是 扩大 到 试点 , 将来 可能 要 扩大 到 全 国 去 , 这 是 必然 的 过程 。 28 | [@贸易商#Person*] 低价 出货 后 发现 得 从 [@钢厂#Organization*] 高价 补货 , 午后 部分 [@钢厂 封盘 停售#Fin-Concept*] 再次 拉 涨 [@现货#Fin-Concept*] 。 29 | 还 有 一 个 更 有利 的 因素 , [@铜 期货#Fin-Concept*] 近月 [@合约 限仓#Fin-Concept*] 为 1500吨 , 而 该 [@现货 电子盘#Fin-Concept*] 却 [@限仓#Fin-Concept*] 为 20000吨 , 相对 来 说 “ 战场 空间 ” 更 充裕 , 更 有利于 打 一 场 大 决战 。 30 | 这些 动能 的 逐步 释放 会 使 [@经济#Fin-Concept*] 保持 中 高速 增长 。 31 | 他 还 特别 强调 , 其实 中国 一直 在 进行 的[@ 体制 改革#Artifical*] 等 都 属于 [@供给 侧 改革#Artifical*] , 此 次 是 对 此 类型 [@改革#Artifical*] 进行 的 一 次 总结 和 归纳 , 并 形成 统一 提法 。 32 | 自 [@政府 工作 报告#Artifical*] 首提 “ 淘汰 、 停建 、 缓建 煤电 产能 5000万 千瓦 以上 , 以 防范 化解 [@煤电 产能 过剩#Fin-Concept*] 风险 , 提高 [@煤电 行业 效率#Fin-Concept*] , 为 [@清洁 能源 发展#Fin-Concept*] 腾空间 ” , [@发改委 主任#Person*] 再提 煤电 去 产能 , 我们 认为[@ 煤电 产能 过剩#Fin-Concept*] 状况 已 引起 [@高层#Person*] 足够 重视 ,且 考虑 到 环保 渐趋 严格 , [@后期 煤电 产能 去化 推进 力度#Fin-Concept*] 或 超 预期 , 从而 为 [@清洁 能源#Artifical*] 提供 良好 的 发展 机遇 , 相关 标的 有 [@大唐 发电#Organization*] 。 33 | 要 真正 实现 新 旧 产业 更 替 , 必须 使 [@市场 机制#Fin-Concept*] 真正 在 [@资源 配置#Fin-Concept*] 中 发挥 决定性 作用 , 加快 出清 [@僵尸 企业#Organization*] , 为 [@新 产业#Other*] 和 [@新 动能#Other*] 腾挪 空间 。 34 | 电力 : 1月 发电 耗煤 同比 跌幅 扩大 , 预示 [@工业 经济#Fin-Concept*] 或 开局 不 佳 。 35 | 要 继续 深化 [@金融 改革#Fin-Concept*] , 协调 推进 [@利率#Fin-Concept*] 、 [@汇率#Fin-Concept*] [@改革#Fin-Concept*] 和 [@资本 账户 #Fin-Concept*]开放 。 36 | 后者 则 指 [@期权#Fin-Concept*] 的 买方 ( 权利方) 有 权 在 约定 时间 以 约定 价格 将 一定 数量 的 [@标的 资产#Fin-Concept*] 卖给 [@期权#Fin-Concept*] 的 卖方 ( 义务方 ) , 买方 享有 卖出 选择权 。 37 | [@陆家嘴 金融#Organization*] 微 信号 : FinanceLJZ▲长 按 二维码 “ 识别 ” 关注 推荐 理由 :助 您 洞悉 [@金融 趋势#Fin-Concept*] , 发现 [@投资 机遇#Fin-Concept*] ! 38 | 三 、 促进 结构 调整 , 化解 过剩 产能 为 促进 结构 调整 , 化解 过剩 产能 , 国家 利用 部分 [@电价#Fin-Concept*] 降价 空间 设立 [@工业 企业 结构 调整 专项 资金#Fin-Concept*] , 支持 地方 在 淘汰 [@煤炭#Sector*] 、 [@钢铁#Sector*] [@行业#Fin-Concept*] 落后 产能 中 安置 下岗[@ 失业 人员#Person*] 等 。 39 | [@赵辰昕#Person*] 说 : “ 为 做好 全 年 经济 社会 发展 工作 , 我 委 和 各 部门 各 地方 还 将 不断 调整 充实 政策 工具 箱 , 按照 [@党 中央 国务院#Organization*] 的 决策 部署 , 适度 扩大 总 需求 , 以 [@供给 侧 结构性 改革#Artifical*] 为 主线 , 及时 推出 务实 管用 的 政策 措施 , 并 切实 抓好 执行 和 落实 , 引导 好 发展 预期 , 确保 经济 运行 在 合理 区间 。 ” [@去 产能#Artifical*] : 年底 要 一一 盘点 交账 去 产能 被 排 在 今年 [@供给 侧 结构性 改革#Artifical*] 五 大 任务 之 首 , [@钢铁#Sector*] 和 [@煤炭#Sector*] [@行业#Fin-Concept*] 尤其是 关键 。 40 | 还 有 一 头 , [@税收 领域#Fin-Concept*] 一 个 月 1万 收入 的 人 , 不知不觉 需要 缴纳 6600 的 [@税费#Fin-Concept*] 。 41 | 另外 , 11月 17日 , [@新加坡 RQFII 额度#Fin-Concept*] 扩大 至 1000亿 元 人民币 , 较 之前 增加 500亿 元 。 42 | 就 公共 部门 而 言 , 虽然 从 国际 比较 来 看 , 我 国 [@政府 债务 率#Fin-Concept*] 并 不 高 , 但 以 如此 快 的 速度 [@加 杠杆#Artifical*] 将 大大 透支 [@未来 财政 政策#Artifical*] 的 操作 空间 , 也 很 容易 陷入 [@发达 国家#Organization*] 那样 的 [@财政 困境#Fin-Concept*] , 带来 很多 长期 隐患 。 43 | [@铁 物资#Organization*] 、 [@东北 特钢 #Organization*]等 信用 违约 事件 频发 , 对 企业 [@融资 成本#Fin-Concept*] 、 借新 还 旧 、 [@金融#Fin-Concept*] 稳定 、 [@风险 溢价 #Fin-Concept*]等 产生 负面 传染 效应 , [@P2P#Organization*] 各 种 跑路 , [@金融 风险 防范 压力#Fin-Concept*] 加大 。 44 | [@上海 证券 分析师 胡月晓#Person*] 表示 , [@PPI#Fin-Concept*] 持续 改善 , [@环比#Fin-Concept*] 继续 大幅 明显 上涨 , 超出 [@市场 预期#Fin-Concept*] 。 45 | 6.5% 的 [@经济 增速 目标#Fin-Concept*] 对 当前 体量 规模 的 [@中国 经济#Fin-Concept*] 较为 适宜 的 , 并且 不 难 达成 。 46 | 当 事实 落地 的 时候 [@交易#Fin-Concept*] 的 预期 在 发生 转变 , 从 [@交易#Fin-Concept*] 的 行为 上 来 看 , 马上 出现 的 是 [@平仓#Fin-Concept*] 的 一 个 行为 , 典型 的 “ 买 预期 、 卖 事实 ” —— 当 事实 落地 的 时候 [@交易#Fin-Concept*] 的 预期 在 发生 转变 。 47 | [@国家 统计局 新闻 发言人 盛来运#Person*] 表示 , 当前 [@供给侧 结构性 改革#Artifical*] 取得 积极 进展 , 新 的 动能 在 加快 成长 , 因此 “ 稳 ” 的 基础 有所 加强 。 48 | 往往 [@新兴 行业#Other*] , [@利润#Fin-Concept*] 没有 放 出来 , 有的 是 还 没有 成熟 的 产品 。 49 | 2010年 和 2015年 两 次 大 涨 之间 , 经历 了 几 次 紧 就 跌松 反弹 , 最后 呈现 大松 大涨 的 局面 。 50 | 值得 一 提 的 是 , 去年 [@吉林省 经济#Fin-Concept*] 增速 逐步 上升 : 一 、 二 、 三 季度 的 [@GDP#Fin-Concept*] 增速 分别 为 6.2% 、 6.7% 、 6.9% 。 51 | 2015年 12月 ,PMI 为 49.7% , 高于 上 月 0.1 个 百分点 ;非 制造业 商务 活动 指数 为 54.4% , 比 上 月 上升 0.8 个 百分点 , 升至 2015年 以来 的 高点 。 52 | 有 问题 , 对 孩子 一样 的 , 该 说 也 要 说 , 直接 说 直接 讲 。 53 | 核心 原因 是 : ( 1 ) 在 风险 监管 及 金融 体制 改革 背景 下 , 投资者 风险 偏好 提升 空间 较为 有限 ; ( 2 ) IPO开闸 带来 的 新兴 板块 标的 稀缺性 缺失 , 使得 估值 提升 空间 有限 。 54 | 除 对 2016年 全球 经济 增长 预测 外,科法斯 还 发布 了 最新 国家 风险 评级 调整 名单 ( 参见 图表 ) 。 55 | 在 投资 及 生活 领域 , 坦伯顿 深信 绝对 不 要 追随 群众 , 而 应 逆势 操作 ( Dontfollow thecrowd ) 的 理念 , 他 独具慧眼 的 前瞻 视野 , 以及 严谨 的 研究 精神 , 将 其 终生 成就 臻至 巅峰 。 56 | 其中 , 实物 商品 网 上 零售额 21239亿 元 , 增长 26.1% , 占 社会 消费品 零售 总额 的 比重 为 11.6% ; 在 实物 商品 网 上 零售额 中 , 吃 、 穿 和 用 类 商品 分别 增长 30.8% 、 17.3% 和 29.4% 。 57 | 考虑 到 页岩油 的 威胁 , 意味 着 当前 油价 反弹 很 难 突破 50 - 60 美元 的 天花板 。 58 | 风 投 从业者 的 性格 一般 都 是 怎样 的 ? 59 | 房地产 回暖 提供 安全垫 中国 货币 政策 将 呈现 中性 尽管 没有 降准 降息 等 大规模 货币 政策 出台 , 中国 的 货币 市场 利率 总体 平稳 , 并 保持 低位 运行 。 60 | 而 需求 回暖 、 毛利 可观 , 令 生产 依然 旺盛 。 61 |     甘肃 的 棚改 货币化 安置率 已 高于 全 国 水平 。 62 | 我们 筛选 出 过去 三 年 业绩 亏损 或者 归属于 母 公司 净 利润 大幅 下降 的 标的 公司 ; 此外 , 大 股东 持股 比例 也 是 很 重要 的 标准 , 第一 大 股东 持股 比例 超过 50%, 有 绝对 控制权 。 63 | 因而 , 在 金融 监管 的 过程 中 , 实体 经济 大 概率 也 将 被 波及 , 进一步 增加 需求 端 的 下行 风险 。 64 | 写 在 前面 的 话 by 木头 老师 这 一 系列 的 内容 是 我 按照 《 万物简史 》 这 本 书 的 知识 脉络 来 讲 的 , 涉及 的 内容 非常 广泛 , 从 宇宙 到 恐龙 , 从 黑洞 到 相对论 , 都 是 孩子们 非常 好奇 的 知识 。 65 | 总体 上 , 发布会 发言 要点 如下 : 1 改革 和 稳定 是 相辅相成 的 。 66 | 甘肃省 住房 和 城乡 建设厅 一 位 工作 人员 介绍 , 2015年 以来 , 甘肃省 共 有 2.85万 户 棚改 对象 , 通过 货币化 得到 安置 , 货币化 安置率 为 31% , 高于 全 国 同 期 水平 5.6 个 百分点 。 67 | 目前 三 大 股东 分别 为 中油 资产 管理 有限 公司 、 天津 经济 技术 开发区 国有 资产 经营 公司 、 广博 投资 控股 有限 公司 , 分别 持股 82.18% 、 12.82% 和 5% 。 68 | 农谚 说 : “ 春分 麦 起身 , 一刻 值千金 。 ” 这时 我 国 大部分 地区 越 冬 作物 进入 春季 生长 阶段 , 春耕 、 春种 将 进入 繁忙 阶段 。 69 | 上述 债券 基金 经理 表示 , 如果 消息 持续 发酵 , 不少 机构 会 出现 跟风 现象 , 届时 就 真的 变成 第二 次 “ 钱荒 ” 。 70 | 基金 经理 “ 一 拖多 ” , 表面 上 只 是 基金 经理 数量 跟 不 上 产品 数量 , 实际上 反映 了 诸多 问题 。 71 | 6月 经销商 库存 系数 升至 1.55 , 再度 转差 且 仍 高于 警戒 线 , 表明 终端 需求 改善 较为 有限 , 厂家 销量 转化 为 经销商 库存 。 72 | 研报 受到 “ 最 大 回撤 ” 这 一 思想 的 启发 , 认为 可以 通过 回撤 来 衡量 股指 期货 价格 序列 的 平稳 度 , 进而 判断 今日 行情 的 走势 。 73 | 供给 侧 改革 将 继续 推进 这些 具体 改革 的 前进 。 74 | 业主 : 水牛城 与 福特艾瑞 公共 桥梁署 电话 : 1(716)884-674428 、 MBTAGreenLine Extension , Boston 波士顿 绿线 地铁 扩展 项目 , 总 投资 30亿 美元 项目 简介 : 该 项目 计划 扩建 波士顿 绿线 地铁 , 延长 线 全长 6.9 公里 , 项目 正在 审批 中 。 75 | 一大早 [@美图#Organization*] 的 [@创始人 之一 蔡总#Person*] 就 在 [@朋友圈#Other*] 里 不断 地 直播 着 [@美 图 奇迹#Fin-Concept*] : 下午 2点 左右 [@市值#Fin-Concept*] 900亿 的 [@美图 市值#Fin-Concept*] 出现 , 很 显然 [@蔡 老板#Person*] 很 兴奋 ; 然后 。 76 | 对于 [@市场#Fin-Concept*] 关注 的 [@房地产 税#Fin-Concept*] ,[@盛松成#Person*] 认为 由于 [@房地产税#Fin-Concept*] 设计 复杂 , 几 年 内 很 难 推出 。 77 | 建议 根据 自身 的 [@财富#Fin-Concept*] [@保值#Fin-Concept*] 、 [@增值#Fin-Concept*] [@需求#Fin-Concept*] , 合理 运用 [@保险#Artifical*] 、 [@保险金 信托#Artifical*] 或 [@家族 信托#Artifical*] 等 方式 化解 自身 及 子女 [@婚姻 风险#Fin-Concept*] 带来 的 [@财富 缩水#Fin-Concept*] 。 78 | 两 年 里面 一 块 土地 也 不 出 , [@市场#Fin-Concept*] 不 就 恢复 到 8点 , 还 是 严重 供过于求 , 不 供 地 有 什么 问题 ? 79 | “ [@非 制造业#Sector*] , 特别是 [@服务业#Sector*] 近 两 年 总体 保持 了 较 快 [@增速#Fin-Concept*] , 这 与 [@中国 经济 结构 持续 优化#Fin-Concept*] 密切 相关 。 80 | 要 有 人文 关怀 , 带着 感情 , 将心比心 , 设身处地 为 他们 着想 , 既 帮 他们 解决 好 生活 困难 , 又 助 他们 提高 [@再 就业 能力#Fin-Concept*] 。 81 | 想要 创业 , 一定 要 有 一 颗 强大 的 内心 , [@创业#Fin-Concept*] 一定 会 遇到 挫折 。 82 | 做好 [@明年 经济 工作#Fin-Concept*] , 就 是 要 把 思想 和 行动 统一 到 [@中央#Organization*] 的 思路 和 方法 上 来 , 服从 和 服务 于 大局 , 下 好 全 国 一 盘棋 , 全面 做好 [@稳 增长#Artifical*] 、 [@促 改革#Artifical*] 、 [@调结构#Artifical*] 、 [@惠民生#Artifical*] 、 [@防风险#Artifical*] 各 项 工作 。 83 | 同时 , 大幅 提升 [@制造业#Sector*] 的 [@研发 投资 强度#Fin-Concept*] , 改变 我 国 在 [@国际 分工#Fin-Concept*] 中 的 不利 地位 。 84 | 如果 是 这样 的 模式 , 那么 拿到 [@不良 贷款#Fin-Concept*] 的 [@资产 管理 公司#Organization*] 就 可 把 [@部分 贷款#Fin-Concept*] 转换 成 [@股权#Fin-Concept*] , 这样 也 不 一定 就 是 糟糕 的 做法 , 或许 这 是 应 对 某 [@具体 贷款#Fin-Concept*] 的 适当 举措 。 85 | 二 者 均 有助于 缓和 [@企业 部门 资产 质量 恶化#Fin-Concept*] 、 放缓 [@不良 贷款 生成 速度#Fin-Concept*] 。 86 | [@李 迅雷#Person*] : 从 [@国家 统计局#Organization*] 公布 的 [@数据#Artifical*] 来 看 , [@经济 增速#Fin-Concept*] 整体 平稳 , 6月份 的 [@工业 增加值 增速#Fin-Concept*] 有所 回升 , 这 个 [@数据#Artifical*] 比 预期 的 要好 一些 , 这 可能 有 [@一 季度 投资 回升#Fin-Concept*] 后 的 [@滞后 效应#Fin-Concept*] 。 87 | 这个 非常 重要 , [@实体 经济#Fin-Concept*] 是 [@经济 发展#Fin-Concept*] 的 根基 。 88 | 万 般 皆 下品 , 唯有 买房 高 , 正在 成为 事实 。 89 | 过剩 的 [@货币#Fin-Concept*] 涌入 [@金融 资产#Fin-Concept*] 中 , [@债市#Sector*] 、 [@股市#Sector*] 相继 迎来 [@牛市#Fin-Concept*] , 而 [@房地产 市场#Sector*] 也 大幅 扩张 。 90 | 作为 [@货币 超发#Fin-Concept*] 的 后果 之一 , 12年 以来 [@中国 居民#Person*] [@中长贷#Fin-Concept*] 爆发式 增长 ,[@月 均 新增 额#Fin-Concept*] 从 12年 的 1120亿 元 飙升 至 16年 上半年 的 4379亿 元 。 91 | 因而 以往 [@去产能#Artifical*] 不但 力度 不 足 , 且 精力 较为 分散 。 92 | [@专家#Person*] 认为 , [@中国#Organization*] 发展 [@智能 制造#Artifical*] 也 需要 加强 [@平台 建设#Other*] , 让 [@行业#Fin-Concept*] 、 [@企业#Fin-Concept*] 、 [@科研 院所#Organization*] 等 各 方 广泛 参与 , 共同 谋划 如何 具体 落实 [@中国 制造 智能 升级#Fin-Concept*] 的 [@路线图#Other*] 。 93 | [@期权 收盘 涨跌幅#Fin-Concept*] ( % ) [@成交量#Fin-Concept*] ( 手 ) 50ET F2.3350-0.3495 02596 250ETF购 3月 2.350.0089 - 27.0540,10950ETF沽 3月 2.350.0254.1736,7424 [@外汇#Fin-Concept*] 与 [@大宗 商品#Artifical*] [@美元 指数#Fin-Concept*] 走弱 , [@工业品#Artifical*] 整体 回调 趋缓 ( [@张 磊#Person*] ) 今日 , [@美元 指数#Fin-Concept*] 走弱 , [@COMEX 黄金#Artifical*] [@价格#Fin-Concept*] 跌到 了 1200 附近 的 敏感 区域 , 21点30 分公布 [@美国#Organization*] [@非农#Fin-Concept*] 与 [@失业率#Fin-Concept*] , [@市场#Fin-Concept*] 预期 20万 人 左右 。 94 | ( 6 ) [@财政 事务 预算数#Fin-Concept*] 为 14.81亿 元 , 比 2015年 [@执行数#Fin-Concept*] 增加 1.57亿 元 , 增长 11.9% 。 95 | 我们 认为 至少 应该 尝试 一下 , 看看 是否 有所 收获 。 ” 他 的 [@团队#Organization*] 所 设想 的 那 个 实验 , 最终 被 证明 对 搜索 至关 重要 : 即 文件 排名 与 搜索 请求 的 匹配 程度 有 多 高 。 96 | [@IMF#Organization*] 下调 [@16年 全球 经济 增速 预期#Fin-Concept*] 从 3.4%至3.2%, 上调 [@2016年 中国 经济 增速 预估#Fin-Concept*] 至 6.5% 。 97 | [@中欧 国际 工商 学院 副院长 张维烔#Person*] 表示 ,自 2015年 [@中央#Organization*] 明确 提出 着力 加强 [@供给侧 结构性 改革#Artifical*] 后 , 今年 已经 成为 [@供给侧 改革#Artifical*] 的 元年 。 98 | 和 [@微面#Artifical*] 相当 的 [@价格#Fin-Concept*] , 完全 不同 的 [@销售 模式#Fin-Concept*] , 想 分得 [@农村 消费 升级 市场#Fin-Concept*] 的 一杯羹 。 99 | 据 他 介绍 , 目前 [@临汾市#Location*] 有 [@焦化 企业#Organization*] 20余 家 。 100 | [@傅莹#Person*] : [@房地产税 立法#Artifical*] 涉及 多方 利益 , 今年 没有 提请 审议 安排 [@澎湃 新闻 记者 范瑟#Person*] 来源 : [@澎湃 新闻#Organization*] 3月4日 , [@十二 届 全 国 人大 五 次 会议 新闻 发言人 傅莹#Person*] 表示 , “ 今年 没有 把 [@房地产税 草案#Artifical*] 提请 [@全 国 人大 常委会#Organization*] 审议 的 安排 。 ” 据 [@新华网#Organization*] 报道 , [@十二 届 全 国 人大 五 次 会议 首 场 新闻 发布会#Event*] 于 3月4日 上午 11 时 举行 , [@大会 新闻 发言人 傅莹#Person*] 向 [@中外 媒体#Organization*] 介绍 本 次 大会 有关 情况 并 回答 记者 提问 。 101 | -------------------------------------------------------------------------------- /demotext/UserB.ann: -------------------------------------------------------------------------------- 1 | 我们 看到 [@债券 市场 收益率#Fin-Concept*] 相比 去年 已经 有 明显 的 上涨 , 这 种 情况 还 会 延续 。 2 | [@规划#Artifical*] 特别 提出 , 将 推动 [@房地产税 立法#Fin-Concept*] , 但 未 明确 [@税收 立法 完成 时限#Fin-Concept*] 。 3 | 在 [@投资#Fin-Concept*] 这 个 领域 , “ 带着 镣铐 起舞 ” 有 可能 不 是 种 限制 反而 是 种 [@保护 机制#Fin-Concept*] 。 4 | 但 对 [@富 人#Person*] 来说 , 这 种 [@加 杠杆#Artifical*] 更 刺激 , 1000万 的 [@房子#Artifical*] , 转眼 成 2000万 了 , 干 什么 能 迅速 来 1000万 啊 ! 5 | 想想 [@光纤#Artifical*] , 为何 速度 这么 快 , 因为 它 完全 不 受 外界 干扰 。 6 | [@中国#Organization*] 前 段 时间 禁止 进口 [@朝鲜#Organization*] 的 [@煤炭#Artifical*] , [@煤炭#Artifical*] 占 [@朝鲜#Organization*] 对 [@中国#Organization*] [@出口#Fin-Concept*] 的 近 一半 , 这下 [@中#Organization*] [@朝#Organization*] 之间 的 [@贸易#Fin-Concept*] 雪崩式 下降 。 7 | 初步 测算 , [@五 大 商业 银行#Organization*] 此 次 降准 1 个 百分点 , 释放 [@流动性 规模#Fin-Concept*] 在 5800亿 左右 , 另外 , 本 周 [@央行#Organization*] [@公开 市场#Fin-Concept*] 大规模 投放 了 近 1.13万亿 , 释放 的 [@资金 规模#Fin-Concept*] 创 历史 单周 新高 ;③ [@躁动 条件#Fin-Concept*] 均 具备 , 有助于 年 内 “ [@春季 躁动#Fin-Concept*] ” [@行情#Fin-Concept*] 的 开启 , [@目标 点位#Fin-Concept*] 3300点 。 8 | [@房地产 贷款 余额#Fin-Concept*] 占 各 项 [@贷款 余额#Fin-Concept*] 的 23.6% , 比3月 末 高 0.7 个 百分点 。 9 | 计算 公式 如下 : [@加权 平均 条款#Artifical*] 有 两 种 细分 形式 , [@广义 加权 平均#Artifical*] 和 [@狭义 加权 平均#Artifical*] , 区别 在于 对 [@后轮 融资#Fin-Concept*] 时 的 [@已 发行 股份#Fin-Concept*] 及 其 数量 的 定义 : [@广义 加权#Fin-Concept*] 包括 已 发行 的 [@普通股#Fin-Concept*] 、 [@优先 股#Fin-Concept*] 可转 换成 的 [@普通股#Fin-Concept*] 、 可以 通过 执行 [@期权#Fin-Concept*] 等 获得 [@普通股 数量#Fin-Concept*] 。 10 | 2 . 原因 之一 : [@企业#Organization*] [@盈利#Fin-Concept*] 低迷 , [@投资 意愿#Fin-Concept*] 较 弱 2.1  [@投资#Fin-Concept*] 迭 创新 低 , [@货币 刺激#Fin-Concept*] 失效 ? 11 | 过去 这 两 年 整 个 [@金融 市场#Sector*] 的 [@波动#Fin-Concept*] 比较 大 , 无论是 [@股票#Fin-Concept*] 还是 [@债券#Fin-Concept*] 等 大 类 [@资产 配置 板块#Fin-Concept*] , 抑或是 具体 到 [@股票 阿尔法 策略#Artifical*] 甚至 包括 [@CTA 策略#Artifical*] 的 表现 都 不 甚 理想 , 这 都 会 给 [@投资者#Person*] 在 决策 时 造成 一定 压力 。 12 | 当前 , [@监管 层#Organization*] 已 宣布 重启 [@IPO#Fin-Concept*] , 11月 30日 开始 首 轮 [@新股#Fin-Concept*] 陆续 [@申购#Fin-Concept*] 。 13 | 10年 [@国开 活跃 券#Fin-Concept*] 160213 [@收益率#Fin-Concept*] 上行 8.64bp 报 3.91% , 160210 [@收益率#Fin-Concept*] 上行 11p 报 3.97% ; 10年 [@国债 活跃 券#Fin-Concept*] 160023 [@收益率#Fin-Concept*] 上行 4.01bp 报 3.28% 。 14 | [@民间 投资#Fin-Concept*] 同 [@全 社会 固定 资产 投资#Fin-Concept*] 的 [@增速#Fin-Concept*] 出现 了 明显 的 喇叭 口 , [@民间 投资 比重#Fin-Concept*] 占 60% 左右 , 如果 降低 , [@固定 资产 投资#Fin-Concept*] 则 不 乐观 。 15 | [@华盛顿 大学 房地产 和 城市 分析 中心 主席 克里斯托弗•莱恩博格#Person*] ( [@Christop her Leinberger#Person*] ) 说到 : “ 在 郊区 , 现在 的 大 挑战 是 维修 目前 的 [@高速 公路 系统#Artifical*] , 要 建设 新 的 [@公路#Artifical*] 是 不 可能 的 了 , 因为 我们 现在 还 没有 来 维护 现有 [@公路#Fin-Concept*] 的 资金 ” 。 16 | 将 探索 完善 [@省属 国有 资本 投资 运营 公司#Organization*] 的 运营 机制 , 加快 实现 由 管 [@企业#Organization*] 到 管 [@资本#Fin-Concept*] 的 转变 ; 加速 [@国有 资本#Fin-Concept*] 向 战略性 [@新兴 产业#Sector*] 、 [@高 端 服务业#Sector*] 、 [@优势 产业#Other*] 、 [@基础 设施#Sector*] 和 [@民生 保障#Sector*] 等 五 大 领域 集中 。 17 | 有色 : 上 周 [@LME铜价#Fin-Concept*] 降 、 [@铝价#Fin-Concept*]升 , [@铜 库 存#Fin-Concept*]续 降 、 [@铝 库存#Fin-Concept*] 微 升 。 18 | 游戏 的 规则 在 慢慢 改变 , 我们 不 能 只 看到 [@财务 回报#Fin-Concept*] , 就 以为 自己 主宰 命运 了 。 19 | 来源 : [@阿尔法 工厂#Organization*] ( ID:[@alpworks#Organization*]) 市场 普遍 认为 [@美国#Organization*] [@房地产 市场#Sector*] 将 再次 好转 成为 不错 的 [@投资 标的#Fin-Concept*] 。 20 | 然而 [@大头#Person*] 却 再 也 没有 在 这 座 [@城市#Location*] 买 房 , 言谈 也 不 再 有 当年 那 股 傲 劲 , 借 朋友 很多 钱 , 座驾 也 从 [@宝马#Artifical*] 变成 了 [@桑塔纳#Artifical*] , 每 天 仍 奔波 在 自己 的 创业 之 路 中 。 21 | 具体 来 看 , [@李克强#Person*] 提出 在 [@供给#Fin-Concept*] 方面 , 继续 运用 好 [@结构性 减税#Fin-Concept*] 等 手段 , 推动 “ [@双创#Artifical*] ” 和 “ [@中国 制造 2025#Artifical*] ” 、 “ [@互联网 + #Artifical*]” 行动 计划 , 促进 [@服务业#Sector*] 、 [@先进 制造业#Sector*] 发展 , 扶持 [@小微 企业#Organization*] 成长 , 发挥 制度 创新 和 技术 进步 对 [@供给 升级#Fin-Concept*] 的 倍增 效用 , 扩大 有效 供给 。 22 | 因此 , 需要 进一步 澄清 的 是 , 「 非 公开性 」 针对 的 是 特定 的 「 [@私募 产品#Artifical*] ( 项目 ) 」 不 得 进行 公开 的 宣传 , 但 并 不 禁止 对 [@私募#Artifical*] 的 [@发起人#Other*] ( 如 [@基金 公司#Organization*] ) 、 [@过往 业绩#Fin-Concept*] 、 [@私募 基金 管理人#Person*] 等 进行 公开 宣传 。 23 | 建议 拓展 [@前海 蛇口 自贸区 离岸 账户#Artifical*] ([@OSA#Artifical*]) 功能 [@马蔚华#Person*] 在 《 [@关于 推进 前海 蛇口 自贸区 金融 改革 的 提案#Artifical*] 》 中 表示 , [@前海 蛇口 自贸区 金融 改革#Artifical*] 做 了 一 系列 有益 探索 , 取得 了 很大 进展 。 24 | 根据 [@通货膨胀#Fin-Concept*] 的 定义 , [@通货膨胀#Fin-Concept*] 是 [@货币 过 多 发行#Fin-Concept*] 所 造成 的 [@物价#Fin-Concept*] 全面 上涨 , “ 现在 还 很 难 说 [@物价#Fin-Concept*] 全面 上涨 。 ” [@张世贤#Person*] 的 判断 不 无 道理 。 25 | [@中金 公司#Organization*] 维持 2016 年 [@CPI#Fin-Concept*] 为 1.9% 的 预测 不 变 。 26 | [@交通 银行 金研 中心#Organization*] : 下半年 [@财政 政策#Fin-Concept*] 积极 [@货币 政策#Fin-Concept*] 宽松 [@晨报 记者 刘志飞#Person*] [@交通 银行 金融 研究 中心#Organization*] 昨日 发布 的 [@下半年 展望 报告#Artifical*] 认为 , 下半年 , 我 国 积极 [@财政 政策#Fin-Concept*] 将 继续 发力 , 发挥 对 稳 增长 的 关键 作用 。 27 | 今年 反复 出现 这个 事情 , 跟 [@QE#Artifical*] 没有 什么 关系 , [@地方 债#Fin-Concept*] 是 纳入 是 [@全球 央行#Organization*] 的 一 个 普遍 的 实践 , 就 是 扩大 到 [@试点#Fin-Concept*] , 将来 可能 要 扩大 到 全 国 去 , 这 是 必然 的 过程 。 28 | [@贸易商#Fin-Concept*] 低价 出货 后 发现 得 从 [@钢厂#Organization*] 高价 补货 , 午后 部分 [@钢厂 封盘 停售#Fin-Concept*] 再次 拉 涨 [@现货#Fin-Concept*] 。 29 | 还 有 一 个 更 有利 的 因素 , [@铜 期货#Fin-Concept*] 近月 [@合约 限仓#Fin-Concept*] 为 1500吨 , 而 该 [@现货 电子盘#Fin-Concept*] 却 [@限仓#Fin-Concept*] 为 20000吨 , 相对 来 说 “ 战场 空间 ” 更 充裕 , 更 有利于 打 一 场 大 决战 。 30 | 这些 [@动能#Fin-Concept*] 的 逐步 释放 会 使 [@经济#Fin-Concept*] 保持 中 高速 增长 。 31 | 他 还 特别 强调 , 其实 [@中国#Organization*] 一直 在 进行 的 [@体制 改革#Fin-Concept*] 等 都 属于 [@供给 侧 改革#Fin-Concept*] , 此 次 是 对 此 类型 [@改革#Fin-Concept*] 进行 的 一 次 总结 和 归纳 , 并 形成 统一 提法 。 32 | 自 [@政府 工作 报告#Artifical*] 首提 “ 淘汰 、 停建 、 缓建 [@煤电 产能#Fin-Concept*] 5000万 千瓦 以上 , 以 防范 化解 [@煤电 产能 过剩 风险#Fin-Concept*] , 提高 [@煤电 行业 效率#Fin-Concept*] , 为 [@清洁 能源 发展#Fin-Concept*] 腾空间 ” , 发改委 主任 再提 [@煤电 去 产能#Artifical*] , 我们 认为 [@煤电 产能 过剩 状况#Fin-Concept*] 已 引起 高层 足够 重视 ,且 考虑 到 环保 渐趋 严格 , 后期 [@煤电#Sector*] [@产能#Fin-Concept*] [@去化 推进 力度#Fin-Concept*] 或 超 预期 , 从而 为 [@清洁 能源#Sector*] 提供 良好 的 发展 机遇 , 相关 [@标的#Fin-Concept*] 有 [@大唐 发电#Organization*] 。 33 | 要 真正 实现 [@新 旧 产业 更 替#Fin-Concept*] , 必须 使 [@市场 机制#Fin-Concept*] 真正 在 [@资源 配置#Fin-Concept*] 中 发挥 决定性 作用 , 加快 出清 [@僵尸 企业#Fin-Concept*] , 为 [@新 产业#Other*] 和 [@新 动能#Other*] 腾挪 空间 。 34 | [@电力#Sector*] : 1月 [@发电 耗煤#Fin-Concept*] [@同比 跌幅#Fin-Concept*] 扩大 , 预示 [@工业 经济#Fin-Concept*] 或 开局 不 佳 。 35 | 要 继续 深化 [@金融 改革#Fin-Concept*] , 协调 推进 [@利率#Fin-Concept*] 、 [@汇率#Fin-Concept*] 改革 和 [@资本 账户#Fin-Concept*] 开放 。 36 | 后者 则 指 [@期权#Fin-Concept*] 的 买方 ( 权利方) 有 权 在 约定 时间 以 约定 价格 将 一定 数量 的 [@标的 资产#Fin-Concept*] 卖给 [@期权#Fin-Concept*] 的 卖方 ( 义务方 ) , 买方 享有 [@卖出 选择权#Fin-Concept*] 。 37 | [@陆家嘴 [@金融#Fin-Concept*]#Organization*] 微 信号 : [@FinanceLJZ#Organization*]▲长 按 二维码 “ 识别 ” 关注 推荐 理由 :助 您 洞悉 [@金融 趋势#Fin-Concept*] , 发现 [@投资 机遇#Fin-Concept*] ! 38 | 三 、 促进 [@结构 调整#Fin-Concept*] , 化解 [@过剩 产能#Fin-Concept*] 为 促进 [@结构 调整#Fin-Concept*] , 化解 [@过剩 产能#Fin-Concept*] , [@国家#Organization*] 利用 部分 [@电价 降价 空间#Fin-Concept*] 设立 [@工业 企业 结构 调整 专项 资金#Fin-Concept*] , 支持 地方 在 淘汰 [@煤炭#Sector*] 、 [@钢铁 行业#Sector*] [@落后 产能#Fin-Concept*] 中 安置 [@下岗 失业 人员#Person*] 等 。 39 | [@赵辰昕#Person*] 说 : “ 为 做好 [@全 年 经济 社会 发展 工作#Fin-Concept*] , 我 [@委#Organization*] 和 各 [@部门#Organization*] 各 [@地方#Organization*] 还 将 不断 调整 充实 [@政策 工具 箱#Fin-Concept*] , 按照 [@党 中央 国务院#Organization*] 的 [@决策 部署#Fin-Concept*] , 适度 扩大 [@总 需求#Fin-Concept*] , 以 [@供给 侧 结构性 改革#Artifical*] 为 主线 , 及时 推出 务实 管用 的 政策 措施 , 并 切实 抓好 执行 和 落实 , 引导 好 发展 预期 , 确保 [@经济#Fin-Concept*] 运行 在 合理 区间 。 ” [@去 产能#Artifical*] : 年底 要 一一 盘点 交账 [@去 产能#Artifical*] 被 排 在 今年 [@供给 侧 结构性 改革#Artifical*] 五 大 任务 之 首 , [@钢铁#Sector*] 和 [@煤炭 行业#Sector*] 尤其是 关键 。 40 | 还 有 一 头 , [@税收 领域#Sector*] 一 个 月 1万 收入 的 人 , 不知不觉 需要 缴纳 6600 的 [@税费#Fin-Concept*] 。 41 | 另外 , 11月 17日 , [@新加坡#Organization*] [@RQFII 额度#Fin-Concept*] 扩大 至 1000亿 元 人民币 , 较 之前 增加 500亿 元 。 42 | 就 [@公共 部门#Organization*] 而 言 , 虽然 从 国际 比较 来 看 , 我 国 [@政府 债务 率#Fin-Concept*] 并 不 高 , 但 以 如此 快 的 速度 [@加 杠杆#Artifical*] 将 大大 [@透支#Fin-Concept*] 未来 [@财政 政策#Fin-Concept*] 的 操作 空间 , 也 很 容易 陷入 发达 国家 那样 的 [@财政#Fin-Concept*] 困境 , 带来 很多 长期 隐患 。 43 | [@铁 物资#Event-Past*] 、 [@东北 特钢#Event-Past*] 等 信用 违约 事件 频发 , 对 [@企业#Organization*] [@融资 成本#Fin-Concept*] 、 借新 还 旧 、 [@金融 稳定#Fin-Concept*] 、 [@风险 溢价#Fin-Concept*] 等 产生 负面 传染 效应 , [@P2P#Organization*] 各 种 跑路 , [@金融 风险 防范 压力#Fin-Concept*] 加大 。 44 | [@上海 证券 分析师 胡月晓#Person*] 表示 , [@PPI#Fin-Concept*] 持续 改善 , [@环比#Fin-Concept*] 继续 大幅 明显 上涨 , 超出 [@市场 预期#Fin-Concept*] 。 45 | 6.5% 的 [@经济 增速 目标#Fin-Concept*] 对 当前 体量 规模 的 [@中国 经济#Fin-Concept*] 较为 适宜 的 , 并且 不 难 达成 。 46 | 当 事实 落地 的 时候 [@交易#Fin-Concept*] 的 预期 在 发生 转变 , 从 [@交易#Fin-Concept*] 的 行为 上 来 看 , 马上 出现 的 是 [@平仓#Artifical*] 的 一 个 行为 , 典型 的 “ 买 预期 、 卖 事实 ” —— 当 事实 落地 的 时候 交易 的 预期 在 发生 转变 。 47 | [@国家 统计局 新闻 发言人 盛来运#Person*] 表示 , 当前 [@供给侧 结构性 改革#Artifical*] 取得 积极 进展 , 新 的 [@动能#Other*] 在 加快 成长 , 因此 “ 稳 ” 的 基础 有所 加强 。 48 | 往往 [@新兴 行业#Other*] , [@利润#Fin-Concept*] 没有 放 出来 , 有的 是 还 没有 成熟 的 产品 。 49 | 2010年 和 2015年 两 次 [@大 涨#Event-Past*] 之间 , 经历 了 几 次 [@紧 就 跌松 反弹#Fin-Concept*] , 最后 呈现 大松 大涨 的 局面 。 50 | 值得 一 提 的 是 , 去年 [@吉林省#Organization*] [@经济 增速#Fin-Concept*] 逐步 上升 : 一 、 二 、 三 季度 的 [@GDP 增速#Fin-Concept*] 分别 为 6.2% 、 6.7% 、 6.9% 。 51 | 2015年 12月 ,PMI 为 49.7% , 高于 上 月 0.1 个 百分点 ;非 制造业 商务 活动 指数 为 54.4% , 比 上 月 上升 0.8 个 百分点 , 升至 2015年 以来 的 高点 。 52 | 有 问题 , 对 孩子 一样 的 , 该 说 也 要 说 , 直接 说 直接 讲 。 53 | 核心 原因 是 : ( 1 ) 在 风险 监管 及 金融 体制 改革 背景 下 , 投资者 风险 偏好 提升 空间 较为 有限 ; ( 2 ) IPO开闸 带来 的 新兴 板块 标的 稀缺性 缺失 , 使得 估值 提升 空间 有限 。 54 | 除 对 2016年 全球 经济 增长 预测 外,科法斯 还 发布 了 最新 国家 风险 评级 调整 名单 ( 参见 图表 ) 。 55 | 在 投资 及 生活 领域 , 坦伯顿 深信 绝对 不 要 追随 群众 , 而 应 逆势 操作 ( Dontfollow thecrowd ) 的 理念 , 他 独具慧眼 的 前瞻 视野 , 以及 严谨 的 研究 精神 , 将 其 终生 成就 臻至 巅峰 。 56 | 其中 , 实物 商品 网 上 零售额 21239亿 元 , 增长 26.1% , 占 社会 消费品 零售 总额 的 比重 为 11.6% ; 在 实物 商品 网 上 零售额 中 , 吃 、 穿 和 用 类 商品 分别 增长 30.8% 、 17.3% 和 29.4% 。 57 | 考虑 到 页岩油 的 威胁 , 意味 着 当前 油价 反弹 很 难 突破 50 - 60 美元 的 天花板 。 58 | 风 投 从业者 的 性格 一般 都 是 怎样 的 ? 59 | 房地产 回暖 提供 安全垫 中国 货币 政策 将 呈现 中性 尽管 没有 降准 降息 等 大规模 货币 政策 出台 , 中国 的 货币 市场 利率 总体 平稳 , 并 保持 低位 运行 。 60 | 而 需求 回暖 、 毛利 可观 , 令 生产 依然 旺盛 。 61 |     甘肃 的 棚改 货币化 安置率 已 高于 全 国 水平 。 62 | 我们 筛选 出 过去 三 年 业绩 亏损 或者 归属于 母 公司 净 利润 大幅 下降 的 标的 公司 ; 此外 , 大 股东 持股 比例 也 是 很 重要 的 标准 , 第一 大 股东 持股 比例 超过 50%, 有 绝对 控制权 。 63 | 因而 , 在 金融 监管 的 过程 中 , 实体 经济 大 概率 也 将 被 波及 , 进一步 增加 需求 端 的 下行 风险 。 64 | 写 在 前面 的 话 by 木头 老师 这 一 系列 的 内容 是 我 按照 《 万物简史 》 这 本 书 的 知识 脉络 来 讲 的 , 涉及 的 内容 非常 广泛 , 从 宇宙 到 恐龙 , 从 黑洞 到 相对论 , 都 是 孩子们 非常 好奇 的 知识 。 65 | 总体 上 , 发布会 发言 要点 如下 : 1 改革 和 稳定 是 相辅相成 的 。 66 | 甘肃省 住房 和 城乡 建设厅 一 位 工作 人员 介绍 , 2015年 以来 , 甘肃省 共 有 2.85万 户 棚改 对象 , 通过 货币化 得到 安置 , 货币化 安置率 为 31% , 高于 全 国 同 期 水平 5.6 个 百分点 。 67 | 目前 三 大 股东 分别 为 中油 资产 管理 有限 公司 、 天津 经济 技术 开发区 国有 资产 经营 公司 、 广博 投资 控股 有限 公司 , 分别 持股 82.18% 、 12.82% 和 5% 。 68 | 农谚 说 : “ 春分 麦 起身 , 一刻 值千金 。 ” 这时 我 国 大部分 地区 越 冬 作物 进入 春季 生长 阶段 , 春耕 、 春种 将 进入 繁忙 阶段 。 69 | 上述 债券 基金 经理 表示 , 如果 消息 持续 发酵 , 不少 机构 会 出现 跟风 现象 , 届时 就 真的 变成 第二 次 “ 钱荒 ” 。 70 | 基金 经理 “ 一 拖多 ” , 表面 上 只 是 基金 经理 数量 跟 不 上 产品 数量 , 实际上 反映 了 诸多 问题 。 71 | 6月 经销商 库存 系数 升至 1.55 , 再度 转差 且 仍 高于 警戒 线 , 表明 终端 需求 改善 较为 有限 , 厂家 销量 转化 为 经销商 库存 。 72 | 研报 受到 “ 最 大 回撤 ” 这 一 思想 的 启发 , 认为 可以 通过 回撤 来 衡量 股指 期货 价格 序列 的 平稳 度 , 进而 判断 今日 行情 的 走势 。 73 | 供给 侧 改革 将 继续 推进 这些 具体 改革 的 前进 。 74 | 业主 : 水牛城 与 福特艾瑞 公共 桥梁署 电话 : 1(716)884-674428 、 MBTAGreenLine Extension , Boston 波士顿 绿线 地铁 扩展 项目 , 总 投资 30亿 美元 项目 简介 : 该 项目 计划 扩建 波士顿 绿线 地铁 , 延长 线 全长 6.9 公里 , 项目 正在 审批 中 。 75 | 一大早 美图 的 创始人 之一 蔡总 就 在 朋友圈 里 不断 地 直播 着 美 图 奇迹 : 下午 2点 左右 市值 900亿 的 美图 市值 出现 , 很 显然 蔡 老板 很 兴奋 ; 然后 。 76 | 对于 市场 关注 的 [@房地产 税#Fin-Concept*] ,[@盛松成#Person*] 认为 由于 [@房地产税#Fin-Concept*] 设计 复杂 , 几 年 内 很 难 推出 。 77 | 建议 根据 自身 的 [@财富 保值#Fin-Concept*] 、 [@增值 需求#Fin-Concept*] , 合理 运用 [@保险#Fin-Concept*] 、 [@保险金 信托#Fin-Concept*] 或 [@家族 信托#Fin-Concept*] 等 方式 化解 自身 及 子女 [@婚姻 风险#Fin-Concept*] 带来 的 [@财富 缩水#Fin-Concept*] 。 78 | 两 年 里面 一 块 土地 也 不 出 , 市场 不 就 恢复 到 8点 , 还 是 严重 供过于求 , 不 供 地 有 什么 问题 ? 79 | “ [@非 制造业#Sector*] , 特别是 [@服务业#Sector*] 近 两 年 总体 保持 了 较 快 增速 , 这 与 [@中国 经济 结构 持续 优化#Fin-Concept*] 密切 相关 。 80 | 要 有 人文 关怀 , 带着 感情 , 将心比心 , 设身处地 为 他们 着想 , 既 帮 他们 解决 好 生活 困难 , 又 助 他们 提高 [@再 就业 能力#Fin-Concept*] 。 81 | 想要 创业 , 一定 要 有 一 颗 强大 的 内心 , 创业 一定 会 遇到 挫折 。 82 | 做好 [@明年 经济 工作#Fin-Concept*] , 就 是 要 把 思想 和 行动 统一 到 [@中央#Organization*] 的 思路 和 方法 上 来 , 服从 和 服务 于 大局 , 下 好 全 国 一 盘棋 , 全面 做好 稳 增长 、 促 [@改革#Fin-Concept*] 、 调结构 、 惠[@民生#Fin-Concept*] 、 防[@风险#Fin-Concept*] 各 项 工作 。 83 | 同时 , 大幅 提升 [@制造业#Sector*] 的 [@研发 投资 强度#Fin-Concept*] , 改变 我 国 在 国际 分工 中 的 不利 地位 。 84 | 如果 是 这样 的 模式 , 那么 拿到 [@不良 贷款#Fin-Concept*] 的 [@资产 管理 公司#Organization*] 就 可 把 部分 [@贷款#Fin-Concept*] 转换 成 [@股权#Fin-Concept*] , 这样 也 不 一定 就 是 糟糕 的 做法 , 或许 这 是 应 对 某 具体 [@贷款#Fin-Concept*] 的 适当 举措 。 85 | 二 者 均 有助于 缓和 [@企业 部门 资产 质量#Fin-Concept*] 恶化 、 放缓 [@不良 贷款 生成 速度#Fin-Concept*] 。 86 | [@李 迅雷#Person*] : 从 [@国家 统计局#Organization*] 公布 的 [@数据#Artifical*] 来 看 , [@经济 增速#Fin-Concept*] 整体 平稳 , 6月份 的 [@工业 增加值 增速#Fin-Concept*] 有所 回升 , 这 个 [@数据#Artifical*] 比 预期 的 要好 一些 , 这 可能 有 一 季度 [@投资#Fin-Concept*] 回升 后 的 [@滞后 效应#Fin-Concept*] 。 87 | 这个 非常 重要 , [@实体 经济#Fin-Concept*] 是 [@经济 发展#Fin-Concept*] 的 根基 。 88 | 万 般 皆 下品 , 唯有 买房 高 , 正在 成为 事实 。 89 | 过剩 的 [@货币#Fin-Concept*] 涌入 [@金融 资产#Fin-Concept*] 中 , [@债市#Sector*] 、 [@股市#Sector*] 相继 迎来 [@牛市#Fin-Concept*] , 而 [@房地产 市场#Sector*] 也 大幅 扩张 。 90 | 作为 [@货币 超发#Fin-Concept*] 的 后果 之一 , 12年 以来 [@中国 居民 中长贷#Fin-Concept*] 爆发式 增长 ,[@月 均 新增 额#Fin-Concept*] 从 12年 的 1120亿 元 飙升 至 16年 上半年 的 4379亿 元 。 91 | 因而 以往 [@去产能#Artifical*] 不但 力度 不 足 , 且 精力 较为 分散 。 92 | [@专家#Person*] 认为 , [@中国#Organization*] 发展 [@智能 制造#Fin-Concept*] 也 需要 加强 [@平台 建设#Fin-Concept*] , 让 [@行业#Other*] 、 [@企业#Organization*] 、 [@科研 院所#Organization*] 等 各 方 广泛 参与 , 共同 谋划 如何 具体 落实 [@中国 制造#Fin-Concept*] 智能 升级 的 路线图 。 93 | [@期权#Fin-Concept*] [@收盘#Fin-Concept*] [@涨跌幅#Fin-Concept*] ( % ) [@成交量#Fin-Concept*] ( 手 ) 50ET F2.3350-0.3495 02596 250ETF购 3月 2.350.0089 - 27.0540,10950ETF沽 3月 2.350.0254.1736,7424 [@外汇#Fin-Concept*] 与 [@大宗 商品#Fin-Concept*] [@美元 指数#Fin-Concept*] 走弱 , [@工业品 整体 回调#Fin-Concept*] 趋缓 ( 张 磊 ) 今日 , [@美元 指数#Fin-Concept*] 走弱 , [@COMEX 黄金 价格#Fin-Concept*] 跌到 了 1200 附近 的 敏感 区域 , 21点30 分公布 [@美国#Organization*] [@非农#Fin-Concept*] 与 [@失业率#Fin-Concept*] , 市场 预期 20万 人 左右 。 94 | ( 6 ) [@财政 事务 预算数#Fin-Concept*] 为 14.81亿 元 , 比 2015年 [@执行数#Fin-Concept*] 增加 1.57亿 元 , 增长 11.9% 。 95 | 我们 认为 至少 应该 尝试 一下 , 看看 是否 有所 收获 。 ” 他 的 [@团队#Organization*] 所 设想 的 那 个 实验 , 最终 被 证明 对 搜索 至关 重要 : 即 文件 排名 与 搜索 请求 的 匹配 程度 有 多 高 。 96 | [@IMF#Organization*] 下调 [@16年 全球 经济 增速 预期#Fin-Concept*] 从 3.4%至3.2%, 上调 [@2016年 中国 经济 增速 预估#Fin-Concept*] 至 6.5% 。 97 | [@中欧 国际 工商 学院 副院长 张维烔#Person*] 表示 ,自 2015年 [@中央#Organization*] 明确 提出 着力 加强 [@供给侧 结构性 改革#Fin-Concept*] 后 , 今年 已经 成为 [@供给侧 改革#Fin-Concept*] 的 元年 。 98 | 和 [@微面#Fin-Concept*] 相当 的 价格 , 完全 不同 的 [@销售 模式#Fin-Concept*] , 想 分得 [@农村 消费 升级 市场#Sector*] 的 一杯羹 。 99 | 据 他 介绍 , 目前 [@临汾市#Location*] 有 [@焦化 企业#Organization*] 20余 家 。 100 | [@傅莹#Person*] : [@房地产税 立法#Fin-Concept*] 涉及 多方 利益 , 今年 没有 提请 审议 安排 [@澎湃 新闻 记者 范瑟#Person*] 来源 : [@澎湃 新闻#Organization*] 3月4日 , [@十二 届 全 国 人大 五 次 会议 新闻 发言人 傅莹#Person*] 表示 , “ 今年 没有 把 [@房地产税 草案#Artifical*] 提请 [@全 国 人大 常委会#Organization*] 审议 的 安排 。 ” 据 [@新华网#Organization*] 报道 , [@十二 届 全 国 人大 五 次 会议 首 场 新闻 发布会#Event-Past*] 于 3月4日 上午 11 时 举行 , [@大会 新闻 发言人 傅莹#Person*] 向 [@中外 媒体#Organization*] 介绍 本 次 [@大会#Event-Past*] 有关 情况 并 回答 [@记者#Person*] 提问 。 -------------------------------------------------------------------------------- /demotext/UserC.ann: -------------------------------------------------------------------------------- 1 | 我们 看到 [@债券 市场 收益率#Fin-Concept*] 相比 去年 已经 有 明显 的 [@上涨#Fin-Concept*] , 这 种 情况 还 会 延续 。 2 | [@规划#Artifical*] 特别 提出 , 将 推动 [@房地产税 立法#Fin-Concept*] , 但 未 明确 [@税收 立法 完成 时限#Fin-Concept*] 。 3 | 在 [@投资#Fin-Concept*] 这 个 领域 , “ 带着 镣铐 起舞 ” 有 可能 不 是 种 限制 反而 是 种 [@保护 机制#Fin-Concept*] 。 4 | 但 对 [@富 人#Person*] 来说 , 这 种 [@加 杠杆#Artifical*] 更 刺激 , 1000万 的 [@房子#Artifical*] , 转眼 成 2000万 了 , 干 什么 能 迅速 来 1000万 啊 ! 5 | 想想 [@光纤#Artifical*] , 为何 速度 这么 快 , 因为 它 完全 不 受 外界 干扰 。 6 | [@中国#Organization*] 前 段 时间 禁止 进口 [@朝鲜#Organization*] 的 [@煤炭#Artifical*] , [@煤炭#Artifical*] 占 [@朝鲜#Organization*] 对 [@中国#Organization*] [@出口#Fin-Concept*] 的 近 一半 , 这下 [@中#Organization*] [@朝 #Organization*]之间 的 [@贸易#Fin-Concept*] 雪崩式 下降 。 7 | 初步 测算 , [@五 大 商业 银行#Organization*] 此 次 降准 1 个 百分点 , 释放 [@流动性 规模#Fin-Concept*] 在 5800亿 左右 , 另外 , 本 周 [@央行#Organization*] [@公开 市场#Fin-Concept*]大规模 投放 了 近 1.13万亿 , 释放 的 [@资金 规模#Fin-Concept*] 创 历史 单周 新高 ;③ 躁动 条件 均 具备 , 有助于 年 内 “ [@春季 躁动#Fin-Concept*] ” [@行情#Fin-Concept*] 的 开启 , [@目标 点位#Fin-Concept*] 3300点 。 8 | [@房地产 贷款 余额#Fin-Concept*] 占 各 项 [@贷款 余额#Fin-Concept*] 的 23.6% , 比3月 末 高 0.7 个 百分点 。 9 | 计算 公式 如下 : [@加权 平均 条款#Artifical*] 有 两 种 细分 形式 , [@广义 加权 平均#Artifical*] 和 [@狭义 加权 平均#Artifical*] , 区别 在于 对 [@后轮 融资#Fin-Concept*] 时 的 [@已 发行 股份#Fin-Concept*] 及 其 数量 的 定义 : [@广义 加权#Artifical*] 包括 已 发行 的 [@普通股#Fin-Concept*] 、 [@优先 股#Fin-Concept*] 可转 换成 的 [@普通股#Fin-Concept*] 、 可以 通过 执行 [@期权#Fin-Concept*] 等 获得 [@普通股 数量#Fin-Concept*] 。 10 | 2 . 原因 之一 : [@企业#Organization*] [@盈利#Fin-Concept*] 低迷 , [@投资#Fin-Concept*] 意愿 较 弱 2.1  [@投资#Fin-Concept*] 迭 创 新 低 , [@货币 刺激#Fin-Concept*] 失效 ? 11 | 过去 这 两 年 整 个 [@金融 市场#Fin-Concept*] 的 波动 比较 大 , 无论是 [@股票#Fin-Concept*] 还是 [@债券#Fin-Concept*] 等 [@大 类 资产 配置 板块#Fin-Concept*] , 抑或是 具体 到 [@股票 阿尔法 策略#Artifical*] 甚至 包括 [@CTA 策略#Artifical*] 的 表现 都 不 甚 理想 , 这 都 会 给 [@投资者#Person*] 在 决策 时 造成 一定 压力 。 12 | 当前 , [@监管 层#Organization*] 已 宣布 重启 [@IPO#Fin-Concept*] , 11月 30日 开始 首 轮 新股 陆续 [@申购#Fin-Concept*] 。 13 | 10年 [@国开 活跃 券#Organization*] 160213 收益率 上行 8.64bp 报 3.91% , 160210 收益率 上行 11p 报 3.97% ; 10年 [@国债 活跃 券#Organization*] 160023 收益率 上行 4.01bp 报 3.28% 。 14 | [@民间 投资#Fin-Concept*] 同 [@全 社会 固定 资产 投资#Fin-Concept*] 的 [@增速#Fin-Concept*] 出现 了 明显 的 喇叭 口 , [@民间 投资#Fin-Concept*] 比重 占 60% 左右 , 如果 降低 , [@固定 资产 投资#Fin-Concept*] 则 不 乐观 。 15 | [@华盛顿 大学 房地产 和 城市 分析 中心 主席 克里斯托弗•莱恩博格#Person*] ( Christop her Leinberger ) 说到 : “ 在 郊区 , 现在 的 大 挑战 是 维修 目前 的 [@高速 公路 系统#Artifical*] , 要 建设 新 的 公路 是 不 可能 的 了 , 因为 我们 现在 还 没有 来 维护 现有 公路 的 资金 ” 。 16 | 将 探索 完善 [@省属 国有 资本 投资 运营 公司#Organization*] 的 运营 机制 , 加快 实现 由 管 企业 到 管 资本 的 转变 ; 加速 [@国有 资本#Organization*] 向 [@战略性 新兴 产业#Sector*] 、 [@高 端 服务业#Sector*] 、 [@优势 产业#Event*] 、 [@基础 设施 和 民生 保障#Sector*] 等 五 大 领域 集中 。 17 | [@有色#Sector*] : 上 周 [@LME铜价#Fin-Concept*] 降 、 [@铝价#Fin-Concept*]升 , [@铜 库 #Fin-Concept*]存续 降 、 [@铝 库存#Fin-Concept*] 微 升 。 18 | 游戏 的 规则 在 慢慢 改变 , 我们 不 能 只 看到 [@财务 回报#Fin-Concept*] , 就 以为 自己 主宰 命运 了 。 19 | 来源 : [@阿尔法 工厂#Organization*] ( ID:alpworks) [@市场#Fin-Concept*] 普遍 认为 [@美国 房地产 市场#Fin-Concept*] 将 再次 好转 成为 不错 的 [@投资 标的#Fin-Concept*] 。 20 | 然而 [@大头#Person*] 却 再 也 没有 在 这 座 城市 买 房 , 言谈 也 不 再 有 当年 那 股 傲 劲 , 借 朋友 很多 钱 , 座驾 也 从 [@宝马#Artifical*] 变成 了 [@桑塔纳#Artifical*] , 每 天 仍 奔波 在 自己 的 创业 之 路 中 。 21 | 具体 来 看 , [@李克强#Person*] 提出 在 供给 方面 , 继续 运用 好 [@结构性 减税#Artifical*] 等 手段 , 推动 “ [@双创#Artifical*] ” 和 “ [@中国 制造 2025#Artifical*] ” 、 “ [@互联网 +#Artifical*] ” 行动 计划 , 促进 [@服务业#Sector*] 、 [@先进 制造业#Sector*] 发展 , 扶持 [@小微 企业#Organization*] 成长 , 发挥 制度 创新 和 技术 进步 对 [@供给 升级#Fin-Concept*] 的 [@倍增 效用#Fin-Concept*] , 扩大 [@有效 供给#Fin-Concept*] 。 22 | 因此 , 需要 进一步 澄清 的 是 , 「 非 公开性 」 针对 的 是 特定 的 「 [@私募 产品#Fin-Concept*] ( 项目 ) 」 不 得 进行 公开 的 宣传 , 但 并 不 禁止 对 [@私募#Organization*] 的 [@发起人#Person*] ( 如 [@基金 公司#Organization*] ) 、 过往 业绩 、 [@私募 基金 管理人#Person*] 等 进行 公开 宣传 。 23 | 建议 拓展 [@前海 蛇口 自贸区 离岸 账户 (OSA) 功能#Artifical*] [@马蔚华#Person*] 在 《 [@关于 推进 前海 蛇口 自贸区 金融 改革 的 提案#Artifical*] 》 中 表示 , [@前海 蛇口 自贸区 金融 改革#Artifical*] 做 了 一 系列 有益 探索 , 取得 了 很大 进展 。 24 | 根据 [@通货膨胀#Fin-Concept*] 的 定义 , [@通货膨胀#Fin-Concept*] 是 [@货币#Fin-Concept*] 过 多 发行 所 造成 的 [@物价#Fin-Concept*] 全面 上涨 , “ 现在 还 很 难 说 [@物价#Fin-Concept*] 全面 上涨 。 ” [@张世贤#Person*] 的 判断 不 无 道理 。 25 | [@中金 公司#Organization*] 维持 [@2016 年 CPI#Fin-Concept*] 为 1.9% 的 预测 不 变 。 26 | [@交通 银行 金研 中心#Organization*] : 下半年 [@财政 政策#Fin-Concept*] [@积极 货币 政策#Fin-Concept*] [@宽松#Fin-Concept*] [@晨报 记者 刘志飞#Person*] [@交通 银行 金融 研究 中心#Organization*] 昨日 发布 的 [@下半年 展望 报告#Artifical*] 认为 , 下半年 , 我 国 [@积极 财政 政策#Fin-Concept*] 将 继续 发力 , 发挥 对 稳 增长 的 关键 作用 。 27 | 今年 反复 出现 这个 事情 , 跟 [@QE#Fin-Concept*] 没有 什么 关系 , [@地方 债#Fin-Concept*] 是 纳入 是 [@全球 央行#Organization*] 的 一 个 普遍 的 实践 , 就 是 扩大 到 试点 , 将来 可能 要 扩大 到 全 国 去 , 这 是 必然 的 过程 。 28 | [@贸易商#Fin-Concept*] 低价 出货 后 发现 得 从 [@钢厂#Organization*] 高价 补货 , 午后 部分 [@钢厂#Organization*] [@封盘 停售#Fin-Concept*] 再次 拉 涨 [@现货#Fin-Concept*] 。 29 | 还 有 一 个 更 有利 的 因素 , [@铜 期货#Artifical*] 近月 合约 [@限仓#Fin-Concept*] 为 1500吨 , 而 该 现货 [@电子盘#Fin-Concept*] 却 [@限仓#Fin-Concept*] 为 20000吨 , 相对 来 说 “ 战场 空间 ” 更 充裕 , 更 有利于 打 一 场 大 决战 。 30 | 这些 动能 的 逐步 释放 会 使 [@经济#Fin-Concept*] 保持 中 高速 增长 。 31 | 他 还 特别 强调 , 其实 [@中国#Organization*] 一直 在 进行 的 [@体制 改革#Artifical*] 等 都 属于 [@供给 侧 改革#Artifical*] , 此 次 是 对 此 类型 改革 进行 的 一 次 总结 和 归纳 , 并 形成 统一 提法 。 32 | 自 [@政府 工作 报告#Artifical*] 首提 “ 淘汰 、 停建 、 缓建 [@煤电 产能#Artifical*] 5000万 千瓦 以上 , 以 防范 化解 [@煤电 产能 过剩 风险#Fin-Concept*] , 提高 [@煤电 行业 效率#Fin-Concept*] , 为 [@清洁 能源#Sector*] 发展 腾空间 ” , [@发改委 主任#Person*] 再提 [@煤电 去 产能#Artifical*] , 我们 认为 [@煤电 产能 过剩 状况#Event-Past*] 已 引起 [@高层#Organization*] 足够 重视 ,且 考虑 到 环保 渐趋 严格 , 后期 [@煤电 产能 去化 推进 力度#Artifical*] 或 超 预期 , 从而 为 [@清洁 能源#Sector*] 提供 良好 的 发展 机遇 , 相关 标的 有 [@大唐 发电#Organization*] 。 33 | 要 真正 实现 新 旧 产业 更 替 , 必须 使 [@市场 机制#Fin-Concept*] 真正 在 [@资源 配置#Fin-Concept*] 中 发挥 决定性 作用 , 加快 出清 [@僵尸 企业#Organization*] , 为 新 产业 和 新 动能 腾挪 空间 。 34 | [@电力#Sector*] : 1月 发电 耗煤 同比 跌幅 扩大 , 预示 [@工业 经济#Fin-Concept*] 或 开局 不 佳 。 35 | 要 继续 深化 [@金融 改革#Artifical*] , 协调 推进 [@利率 、 汇率 改革#Artifical*] 和 [@资本 账户#Fin-Concept*] 开放 。 36 | 后者 则 指 [@期权#Fin-Concept*] 的 [@买方#Fin-Concept*] ( 权利方) 有 权 在 约定 时间 以 约定 价格 将 一定 数量 的 [@标的 资产#Fin-Concept*] 卖给 [@期权#Fin-Concept*] 的 [@卖方#Fin-Concept*] ( 义务方 ) , [@买方#Fin-Concept*] 享有 [@卖出 选择权#Fin-Concept*] 。 37 | [@陆家嘴 金融 微 信号#Organization*] : FinanceLJZ▲长 按 二维码 “ 识别 ” 关注 推荐 理由 :助 您 洞悉 [@金融 趋势#Fin-Concept*] , 发现 [@投资 机遇#Fin-Concept*] ! 38 | 三 、 促进 结构 调整 , 化解 [@过剩 产能#Fin-Concept*] 为 促进 结构 调整 , 化解 [@过剩 产能#Fin-Concept*] , 国家 利用 部分 [@电价 降价 空间#Fin-Concept*] 设立 工业 企业 结构 调整 专项 资金 , 支持 地方 在 淘汰 [@煤炭#Artifical*] 、 [@钢铁#Artifical*] 行业 [@落后 产能#Fin-Concept*] 中 安置 [@下岗 失业 人员#Person*] 等 。 39 | [@赵辰昕#Person*] 说 : “ 为 做好 全 年 [@经济#Fin-Concept*] 社会 发展 工作 , 我 委 和 各 部门 各 地方 还 将 不断 调整 充实 政策 工具 箱 , 按照 [@党 中央 国务院#Organization*] 的 决策 部署 , 适度 扩大 总 需求 , 以 [@供给 侧 结构性 改革#Artifical*] 为 主线 , 及时 推出 务实 管用 的 政策 措施 , 并 切实 抓好 执行 和 落实 , 引导 好 发展 预期 , 确保 [@经济#Fin-Concept*] 运行 在 合理 区间 。 ” [@去 产能#Artifical*] : 年底 要 一一 盘点 交账 [@去 产能#Artifical*] 被 排 在 今年 [@供给 侧 结构性 改革#Artifical*] 五 大 任务 之 首 , [@钢铁#Artifical*] 和 [@煤炭#Artifical*] 行业 尤其是 关键 。 40 | 还 有 一 头 , [@税收 领域#Fin-Concept*] 一 个 月 1万 收入 的 人 , 不知不觉 需要 缴纳 6600 的 [@税费#Fin-Concept*] 。 41 | 另外 , 11月 17日 , [@新加坡 RQFII 额度#Fin-Concept*] 扩大 至 1000亿 元 人民币 , 较 之前 增加 500亿 元 。 42 | 就 [@公共 部门#Organization*] 而 言 , 虽然 从 国际 比较 来 看 , 我 国 [@政府 债务 率#Fin-Concept*] 并 不 高 , 但 以 如此 快 的 速度 [@加 杠杆#Fin-Concept*] 将 大大 透支 [@未来 财政 政策#Fin-Concept*] 的 操作 空间 , 也 很 容易 陷入 [@发达 国家#Organization*] 那样 的 [@财政 困境#Fin-Concept*] , 带来 很多 长期 隐患 。 43 | [@铁 物资#Event-Past*] 、 [@东北 特钢#Event-Past*] 等 信用 违约 事件 频发 , 对 [@企业 融资 成本#Fin-Concept*] 、 [@借新 还 旧#Fin-Concept*] 、 [@金融 稳定#Fin-Concept*] 、 [@风险 溢价#Fin-Concept*] 等 产生 负面 传染 效应 , [@P2P#Fin-Concept*] 各 种 [@跑路#Fin-Concept*] , [@金融 风险 防范 压力#Fin-Concept*] 加大 。 44 | [@上海 证券 分析师 胡月晓#Person*] 表示 , [@PPI#Fin-Concept*] 持续 改善 , 环比 继续 大幅 明显 上涨 , 超出 [@市场 预期#Fin-Concept*] 。 45 | 6.5% 的 [@经济 增速 目标#Fin-Concept*] 对 当前 体量 规模 的 [@中国 经济#Fin-Concept*] 较为 适宜 的 , 并且 不 难 达成 。 46 | 当 事实 落地 的 时候 [@交易#Fin-Concept*] 的 预期 在 发生 转变 , 从 [@交易#Fin-Concept*] 的 行为 上 来 看 , 马上 出现 的 是 [@平仓#Fin-Concept*] 的 一 个 行为 , 典型 的 “ 买 预期 、 卖 事实 ” —— 当 事实 落地 的 时候 [@交易#Fin-Concept*] 的 预期 在 发生 转变 。 47 | [@国家 统计局 新闻 发言人 盛来运#Person*] 表示 , 当前 [@供给侧 结构性 改革#Artifical*] 取得 积极 进展 , 新 的 动能 在 加快 成长 , 因此 “ 稳 ” 的 基础 有所 加强 。 48 | 往往 新兴 行业 , [@利润#Fin-Concept*] 没有 放 出来 , 有的 是 还 没有 成熟 的 产品 。 49 | 2010年 和 2015年 两 次 大 涨 之间 , 经历 了 几 次 [@紧 就 跌松 反弹#Fin-Concept*] , 最后 呈现 大松 大涨 的 局面 。 50 | 值得 一 提 的 是 , 去年 [@吉林省 经济 增速#Fin-Concept*] 逐步 上升 : 一 、 二 、 三 季度 的 [@GDP 增速#Fin-Concept*] 分别 为 6.2% 、 6.7% 、 6.9% 。 51 | 2015年 12月 ,PMI 为 49.7% , 高于 上 月 0.1 个 百分点 ;非 制造业 商务 活动 指数 为 54.4% , 比 上 月 上升 0.8 个 百分点 , 升至 2015年 以来 的 高点 。 52 | 有 问题 , 对 孩子 一样 的 , 该 说 也 要 说 , 直接 说 直接 讲 。 53 | 核心 原因 是 : ( 1 ) 在 风险 监管 及 金融 体制 改革 背景 下 , 投资者 风险 偏好 提升 空间 较为 有限 ; ( 2 ) IPO开闸 带来 的 新兴 板块 标的 稀缺性 缺失 , 使得 估值 提升 空间 有限 。 54 | 除 对 2016年 全球 经济 增长 预测 外,科法斯 还 发布 了 最新 国家 风险 评级 调整 名单 ( 参见 图表 ) 。 55 | 在 投资 及 生活 领域 , 坦伯顿 深信 绝对 不 要 追随 群众 , 而 应 逆势 操作 ( Dontfollow thecrowd ) 的 理念 , 他 独具慧眼 的 前瞻 视野 , 以及 严谨 的 研究 精神 , 将 其 终生 成就 臻至 巅峰 。 56 | 其中 , 实物 商品 网 上 零售额 21239亿 元 , 增长 26.1% , 占 社会 消费品 零售 总额 的 比重 为 11.6% ; 在 实物 商品 网 上 零售额 中 , 吃 、 穿 和 用 类 商品 分别 增长 30.8% 、 17.3% 和 29.4% 。 57 | 考虑 到 页岩油 的 威胁 , 意味 着 当前 油价 反弹 很 难 突破 50 - 60 美元 的 天花板 。 58 | 风 投 从业者 的 性格 一般 都 是 怎样 的 ? 59 | 房地产 回暖 提供 安全垫 中国 货币 政策 将 呈现 中性 尽管 没有 降准 降息 等 大规模 货币 政策 出台 , 中国 的 货币 市场 利率 总体 平稳 , 并 保持 低位 运行 。 60 | 而 需求 回暖 、 毛利 可观 , 令 生产 依然 旺盛 。 61 |     甘肃 的 棚改 货币化 安置率 已 高于 全 国 水平 。 62 | 我们 筛选 出 过去 三 年 业绩 亏损 或者 归属于 母 公司 净 利润 大幅 下降 的 标的 公司 ; 此外 , 大 股东 持股 比例 也 是 很 重要 的 标准 , 第一 大 股东 持股 比例 超过 50%, 有 绝对 控制权 。 63 | 因而 , 在 金融 监管 的 过程 中 , 实体 经济 大 概率 也 将 被 波及 , 进一步 增加 需求 端 的 下行 风险 。 64 | 写 在 前面 的 话 by 木头 老师 这 一 系列 的 内容 是 我 按照 《 万物简史 》 这 本 书 的 知识 脉络 来 讲 的 , 涉及 的 内容 非常 广泛 , 从 宇宙 到 恐龙 , 从 黑洞 到 相对论 , 都 是 孩子们 非常 好奇 的 知识 。 65 | 总体 上 , 发布会 发言 要点 如下 : 1 改革 和 稳定 是 相辅相成 的 。 66 | 甘肃省 住房 和 城乡 建设厅 一 位 工作 人员 介绍 , 2015年 以来 , 甘肃省 共 有 2.85万 户 棚改 对象 , 通过 货币化 得到 安置 , 货币化 安置率 为 31% , 高于 全 国 同 期 水平 5.6 个 百分点 。 67 | 目前 三 大 股东 分别 为 中油 资产 管理 有限 公司 、 天津 经济 技术 开发区 国有 资产 经营 公司 、 广博 投资 控股 有限 公司 , 分别 持股 82.18% 、 12.82% 和 5% 。 68 | 农谚 说 : “ 春分 麦 起身 , 一刻 值千金 。 ” 这时 我 国 大部分 地区 越 冬 作物 进入 春季 生长 阶段 , 春耕 、 春种 将 进入 繁忙 阶段 。 69 | 上述 债券 基金 经理 表示 , 如果 消息 持续 发酵 , 不少 机构 会 出现 跟风 现象 , 届时 就 真的 变成 第二 次 “ 钱荒 ” 。 70 | 基金 经理 “ 一 拖多 ” , 表面 上 只 是 基金 经理 数量 跟 不 上 产品 数量 , 实际上 反映 了 诸多 问题 。 71 | 6月 经销商 库存 系数 升至 1.55 , 再度 转差 且 仍 高于 警戒 线 , 表明 终端 需求 改善 较为 有限 , 厂家 销量 转化 为 经销商 库存 。 72 | 研报 受到 “ 最 大 回撤 ” 这 一 思想 的 启发 , 认为 可以 通过 回撤 来 衡量 股指 期货 价格 序列 的 平稳 度 , 进而 判断 今日 行情 的 走势 。 73 | 供给 侧 改革 将 继续 推进 这些 具体 改革 的 前进 。 74 | 业主 : 水牛城 与 福特艾瑞 公共 桥梁署 电话 : 1(716)884-674428 、 MBTAGreenLine Extension , Boston 波士顿 绿线 地铁 扩展 项目 , 总 投资 30亿 美元 项目 简介 : 该 项目 计划 扩建 波士顿 绿线 地铁 , 延长 线 全长 6.9 公里 , 项目 正在 审批 中 。 75 | 一大早 美图 的 创始人 之一 蔡总 就 在 朋友圈 里 不断 地 直播 着 美 图 奇迹 : 下午 2点 左右 市值 900亿 的 美图 市值 出现 , 很 显然 蔡 老板 很 兴奋 ; 然后 。 76 | 对于 [@市场#Fin-Concept*] 关注 的 [@房地产 税#Fin-Concept*] , [@盛松成#Person*] 认为 由于 [@房地产税#Fin-Concept*] 设计 复杂 , 几 年 内 很 难 推出 。 77 | 建议 根据 自身 的 [@财富#Fin-Concept*] [@保值#Fin-Concept*] 、 [@增值#Fin-Concept*] [@需求#Fin-Concept*] , 合理 运用 [@保险#Fin-Concept*] 、 [@保险金 信托#Fin-Concept*] 或 [@家族 信托 #Fin-Concept*]等 方式 化解 自身 及 子女 婚姻 风险 带来 的 [@财富 缩水#Fin-Concept*] 。 78 | 两 年 里面 一 块 [@土地#Artifical*] 也 不 出 , [@市场#Fin-Concept*] 不 就 恢复 到 8点 , 还 是 严重 供过于求 , 不 供 [@地#Artifical*] 有 什么 问题 ? 79 | “ [@非 制造业#Sector*] , 特别是 [@服务业#Sector*] 近 两 年 总体 保持 了 较 快 [@增速#Fin-Concept*] , 这 与 [@中国 经济 结构 持续 优化#Fin-Concept*] 密切 相关 。 80 | 要 有 人文 关怀 , 带着 感情 , 将心比心 , 设身处地 为 他们 着想 , 既 帮 他们 解决 好 生活 困难 , 又 助 他们 提高 [@再 就业 能力#Fin-Concept*] 。 81 | 想要 [@创业#Fin-Concept*] , 一定 要 有 一 颗 强大 的 内心 , [@创业#Fin-Concept*] 一定 会 遇到 挫折 。 82 | 做好 [@明年 经济 工作#Fin-Concept*] , 就 是 要 把 思想 和 行动 统一 到 [@中央#Organization*] 的 思路 和 方法 上 来 , 服从 和 服务 于 大局 , 下 好 全 国 一 盘棋 , 全面 做好 [@稳 增长#Artifical*] 、 [@促 改革#Artifical*] 、 [@调结构#Artifical*] 、 [@惠民生#Artifical*] 、 [@防风险#Artifical*] 各 项 工作 。 83 | 同时 , 大幅 提升 [@制造业#Sector*] 的 [@研发 投资 强度#Fin-Concept*] , 改变 [@我 国#Organization*] 在 [@国际 分工#Fin-Concept*] 中 的 不利 地位 。 84 | 如果 是 这样 的 模式 , 那么 拿到 [@不良 贷款#Fin-Concept*] 的 [@资产 管理 公司#Organization*] 就 可 把 [@部分 贷款#Fin-Concept*] 转换 成 [@股权#Fin-Concept*] , 这样 也 不 一定 就 是 糟糕 的 做法 , 或许 这 是 应 对 某 [@具体 贷款#Fin-Concept*] 的 适当 举措 。 85 | 二 者 均 有助于 缓和 [@企业 部门 资产 质量 恶化#Fin-Concept*] 、 放缓 [@不良 贷款 生成 速度#Fin-Concept*] 。 86 | [@李 迅雷#Person*] : 从 [@国家 统计局#Organization*] 公布 的 [@数据#Artifical*] 来 看 , [@经济 增速#Fin-Concept*] 整体 平稳 , 6月份 的 [@工业 增加值 增速#Fin-Concept*] 有所 回升 , 这 个 [@数据#Artifical*] 比 预期 的 要好 一些 , 这 可能 有 一 季度 投资 回升 后 的 [@滞后 效应#Fin-Concept*] 。 87 | 这个 非常 重要 , [@实体 经济#Fin-Concept*] 是 [@经济 发展#Fin-Concept*] 的 根基 。 88 | 万 般 皆 下品 , 唯有 买房 高 , 正在 成为 事实 。 89 | 过剩 的 [@货币#Fin-Concept*] 涌入 [@金融 资产#Fin-Concept*] 中 , [@债市#Fin-Concept*] 、 [@股市#Fin-Concept*] 相继 迎来 [@牛市#Fin-Concept*] , 而 [@房地产 市场#Sector*] 也 大幅 扩张 。 90 | 作为 [@货币 超发#Fin-Concept*] 的 后果 之一 , 12年 以来 [@中国 居民#Person*] [@中长贷#Fin-Concept*] 爆发式 增长 ,[@月 均 新增 额#Fin-Concept*] 从 12年 的 1120亿 元 飙升 至 16年 上半年 的 4379亿 元 。 91 | 因而 以往 [@去产能#Artifical*] 不但 力度 不 足 , 且 精力 较为 分散 。 92 | [@专家#Person*] 认为 , [@中国#Organization*] 发展 [@智能 制造#Artifical*] 也 需要 加强 [@平台 建设#Other*] , 让 [@行业#Other*] 、 [@企业#Organization*] 、 [@科研 院所#Organization*] 等 各 方 广泛 参与 , 共同 谋划 如何 具体 落实 [@中国 制造 智能 升级#Fin-Concept*] 的 路线图 。 93 | [@期权 收盘 涨跌幅#Fin-Concept*] ( % ) [@成交量#Fin-Concept*] ( 手 ) 50ET F2.3350-0.3495 02596 250ETF购 3月 2.350.0089 - 27.0540,10950ETF沽 3月 2.350.0254.1736,7424 [@外汇#Fin-Concept*] 与 [@大宗 商品#Artifical*] [@美元 指数#Fin-Concept*] 走弱 , [@工业品 整体 回调 趋缓#Fin-Concept*] ( [@张 磊#Person*] ) 今日 , [@美元 指数#Fin-Concept*] 走弱 , [@COMEX 黄金#Artifical*] [@价格#Fin-Concept*] 跌到 了 1200 附近 的 敏感 区域 , 21点30 分公布 [@美国#Organization*] [@非农#Fin-Concept*] 与 [@失业率#Fin-Concept*] , [@市场#Fin-Concept*] 预期 20万 人 左右 。 94 | ( 6 ) [@财政 事务 预算数#Fin-Concept*] 为 14.81亿 元 , 比 2015年 [@执行数#Fin-Concept*] 增加 1.57亿 元 , 增长 11.9% 。 95 | 我们 认为 至少 应该 尝试 一下 , 看看 是否 有所 收获 。 ” 他 的 [@团队#Person*] 所 设想 的 那 个 实验 , 最终 被 证明 对 搜索 至关 重要 : 即 文件 排名 与 搜索 请求 的 匹配 程度 有 多 高 。 96 | [@IMF#Organization*] 下调 [@16年 全球 经济 增速 预期#Fin-Concept*] 从 3.4%至3.2%, 上调 [@2016年 中国 经济 增速 预估#Fin-Concept*] 至 6.5% 。 97 | [@中欧 国际 工商 学院 副院长 张维烔#Person*] 表示 ,自 2015年 [@中央#Organization*] 明确 提出 着力 加强 [@供给侧 结构性 改革#Artifical*] 后 , 今年 已经 成为 [@供给侧 改革#Artifical*] 的 元年 。 98 | 和 [@微面#Artifical*] 相当 的 [@价格#Fin-Concept*] , 完全 不同 的 [@销售 模式#Fin-Concept*] , 想 分得 [@农村 消费 升级 市场#Fin-Concept*] 的 一杯羹 。 99 | 据 他 介绍 , 目前 [@临汾市#Location*] 有 [@焦化 企业#Organization*] 20余 家 。 100 | [@傅莹#Person*] : 房地产税 立法 涉及 多方 利益 , 今年 没有 提请 审议 安排 [@澎湃 新闻 记者 范瑟#Person*] 来源 : [@澎湃 新闻#Organization*] 3月4日 , [@十二 届 全 国 人大 五 次 会议 新闻 发言人 傅莹#Person*] 表示 , “ 今年 没有 把 [@房地产税 草案#Artifical*] 提请 [@全 国 人大 常委会#Organization*] 审议 的 安排 。 ” 据 [@新华网#Organization*] 报道 , [@十二 届 全 国 人大 五 次 会议 首 场 新闻 发布会#Event-Past*] 于 3月4日 上午 11 时 举行 , [@大会 新闻 发言人 傅莹#Person*] 向 [@中外 媒体#Organization*] 介绍 本 次 [@大会#Event-Past*] 有关 情况 并 回答 记者 提问 。 101 | -------------------------------------------------------------------------------- /demotext/UserD.ann: -------------------------------------------------------------------------------- 1 | 我们 看到 [@债券 市场 收益率#Fin-Concept*] 相比 去年 已经 有 明显 的 上涨 , 这 种 情况 还 会 延续 。 2 | [@规划#Artifical*] 特别 提出 , 将 推动 [@房地产税 立法#Fin-Concept*] , 但 未 明确 [@税收 立法 完成 时限#Fin-Concept*] 。 3 | 在 [@投资#Fin-Concept*] 这 个 领域 , “ 带着 镣铐 起舞 ” 有 可能 不 是 种 限制 反而 是 种 [@保护 机制#Fin-Concept*] 。 4 | 但 对 [@富 人#Person*] 来说 , 这 种 [@加 杠杆#Artifical*] 更 刺激 , 1000万 的 [@房子#Artifical*] , 转眼 成 2000万 了 , 干 什么 能 迅速 来 1000万 啊 ! 5 | 想想 [@光纤#Artifical*] , 为何 速度 这么 快 , 因为 它 完全 不 受 外界 干扰 。 6 | [@中国#Organization*] 前 段 时间 禁止 进口 [@朝鲜#Organization*] 的 [@煤炭#Artifical*] , [@煤炭#Artifical*] 占 [@朝鲜#Organization*] 对 [@中国#Organization*] [@出口#Fin-Concept*] 的 近 一半 , 这下 [@中#Organization*] [@朝#Organization*] 之间 的 [@贸易#Fin-Concept*] 雪崩式 下降 。 7 | 初步 测算 , [@五 大 商业 银行#Organization*] 此 次 [@降准#Fin-Concept*] 1 个 百分点 , 释放 [@流动性 规模#Fin-Concept*] 在 5800亿 左右 , 另外 , 本 周 [@央行#Organization*] [@公开 市场#Fin-Concept*] 大规模 投放 了 近 1.13万亿 , 释放 的 [@资金 规模#Fin-Concept*] 创 历史 单周 新高 ;③ [@躁动 条件#Fin-Concept*] 均 具备 , 有助于 年 内 “ [@春季 躁动#Fin-Concept*] ” [@行情#Fin-Concept*] 的 开启 , [@目标 点位#Fin-Concept*] 3300点 。 8 | [@房地产 贷款 余额#Fin-Concept*] 占 各 项 [@贷款 余额#Fin-Concept*] 的 23.6% , 比3月 末 高 0.7 个 百分点 。 9 | 计算 公式 如下 : [@加权 平均 条款#Artifical*] 有 两 种 细分 形式 , [@广义 加权 平均#Artifical*] 和 [@狭义 加权 平均#Artifical*] , 区别 在于 对 [@后轮 融资#Fin-Concept*] 时 的 [@已 发行 股份#Fin-Concept*] 及 其 [@数量#Fin-Concept*] 的 定义 : [@广义 加权#Fin-Concept*] 包括 已 发行 的 [@普通股#Fin-Concept*] 、 [@优先 股#Fin-Concept*] 可转 换成 的 [@普通股#Fin-Concept*] 、 可以 通过 执行 [@期权#Fin-Concept*] 等 获得 [@普通股 数量#Fin-Concept*] 。 10 | 2 . 原因 之一 : [@企业#Organization*] [@盈利#Fin-Concept*] 低迷 , [@投资 意愿#Fin-Concept*] 较 弱 2.1  [@投资#Fin-Concept*] 迭 创新 低 , [@货币 刺激#Fin-Concept*] 失效 ? 11 | 过去 这 两 年 整 个 [@金融 市场#Fin-Concept*] 的 [@波动#Fin-Concept*] 比较 大 , 无论是 [@股票#Fin-Concept*] 还是 [@债券#Fin-Concept*] 等 [@大 类 资产 配置 板块#Fin-Concept*] , 抑或是 具体 到 [@股票 阿尔法 策略#Fin-Concept*] 甚至 包括 [@CTA 策略#Fin-Concept*] 的 表现 都 不 甚 理想 , 这 都 会 给 [@投资者#Person*] 在 决策 时 造成 一定 压力 。 12 | 当前 , [@监管 层#Organization*] 已 宣布 重启 [@IPO#Fin-Concept*] , 11月 30日 开始 首 轮 [@新股#Fin-Concept*] 陆续 申购 。 13 | [@10年 国开 活跃 券 160213 收益率#Fin-Concept*] 上行 8.64bp 报 3.91% , [@160210 收益率#Fin-Concept*] 上行 11p 报 3.97% ; [@10年 国债 活跃 券 160023 收益率#Fin-Concept*] 上行 4.01bp 报 3.28% 。 14 | [@民间 投资#Fin-Concept*] 同 [@全 社会 固定 资产 投资#Fin-Concept*] 的 [@增速#Fin-Concept*] 出现 了 明显 的 [@喇叭 口#Fin-Concept*] , [@民间 投资 比重#Fin-Concept*] 占 60% 左右 , 如果 降低 , [@固定 资产 投资#Fin-Concept*] 则 不 乐观 。 15 | [@华盛顿 大学 房地产 和 城市 分析 中心 主席 克里斯托弗•莱恩博格#Person*] ( [@Christop her Leinberger#Person*] ) 说到 : “ 在 郊区 , 现在 的 大 挑战 是 维修 目前 的 [@高速 公路 系统#Artifical*] , 要 建设 新 的 [@公路#Artifical*] 是 不 可能 的 了 , 因为 我们 现在 还 没有 来 维护 [@现有 公路#Artifical*] 的 [@资金#Fin-Concept*] ” 。 16 | 将 探索 完善 [@省属 国有 资本 投资 运营 公司#Organization*] 的 [@运营 机制#Fin-Concept*] , 加快 实现 由 管 [@企业#Organization*] 到 管 [@资本#Fin-Concept*] 的 转变 ; 加速 [@国有 资本#Fin-Concept*] 向 [@战略性 新兴 产业#Sector*] 、 [@高 端 服务业#Sector*] 、 [@优势 产业#Sector*] 、 [@基础 设施#Sector*] 和 [@民生 保障#Sector*] 等 五 大 领域 集中 。 17 | [@有色#Artifical*] : 上 周 [@LME铜价#Fin-Concept*] 降 、 [@铝价#Fin-Concept*]升 , [@铜 库 存#Fin-Concept*]续 降 、 [@铝 库存#Fin-Concept*] 微 升 。 18 | 游戏 的 规则 在 慢慢 改变 , 我们 不 能 只 看到 [@财务 回报#Fin-Concept*] , 就 以为 自己 主宰 命运 了 。 19 | 来源 : [@阿尔法 工厂#Organization*] ( ID:[@alpworks#Organization*]) [@市场#Fin-Concept*] 普遍 认为 [@美国 房地产 市场#Fin-Concept*] 将 再次 好转 成为 不错 的 [@投资 标的#Fin-Concept*] 。 20 | 然而 [@大头#Person*] 却 再 也 没有 在 这 座 城市 买 [@房#Artifical*] , 言谈 也 不 再 有 当年 那 股 傲 劲 , 借 朋友 很多 钱 , 座驾 也 从 [@宝马#Artifical*] 变成 了 [@桑塔纳#Artifical*] , 每 天 仍 奔波 在 自己 的 [@创业#Fin-Concept*] 之 路 中 。 21 | 具体 来 看 , [@李克强#Person*] 提出 在 [@供给 方面#Fin-Concept*] , 继续 运用 好 [@结构性 减税#Fin-Concept*] 等 手段 , 推动 “ [@双创#Artifical*] ” 和 “ [@中国 制造 2025#Artifical*] ” 、 “ [@互联网 + #Artifical*]” 行动 计划 , 促进 [@服务业#Sector*] 、 先进 [@制造业#Sector*] 发展 , 扶持 [@小微 企业#Organization*] 成长 , 发挥 [@制度 创新#Fin-Concept*] 和 [@技术 进步#Fin-Concept*] 对 [@供给 升级#Fin-Concept*] 的 [@倍增 效用#Fin-Concept*] , 扩大 [@有效 供给#Fin-Concept*] 。 22 | 因此 , 需要 进一步 澄清 的 是 , 「 [@非 公开性#Fin-Concept*] 」 针对 的 是 特定 的 「 [@私募 产品#Artifical*] ( 项目 ) 」 不 得 进行 公开 的 宣传 , 但 并 不 禁止 对 [@私募#Artifical*] 的 [@发起人#Organization*] ( 如 [@基金 公司#Organization*] ) 、 [@过往 业绩#Fin-Concept*] 、 [@私募 基金 管理人#Person*] 等 进行 公开 宣传 。 23 | 建议 拓展 [@前海 蛇口 自贸区 离岸 账户#Fin-Concept*] ([@OSA#Fin-Concept*]) 功能 [@马蔚华#Person*] 在 《 [@关于 推进 前海 蛇口 自贸区 金融 改革 的 提案#Artifical*] 》 中 表示 , [@前海 蛇口 自贸区 金融 改革#Fin-Concept*] 做 了 一 系列 有益 探索 , 取得 了 很大 进展 。 24 | 根据 [@通货膨胀#Fin-Concept*] 的 定义 , [@通货膨胀#Fin-Concept*] 是 [@货币 过 多 发行#Fin-Concept*] 所 造成 的 [@物价 全面 上涨#Fin-Concept*] , “ 现在 还 很 难 说 [@物价 全面 上涨#Fin-Concept*] 。 ” [@张世贤#Person*] 的 判断 不 无 道理 。 25 | [@中金 公司#Organization*] 维持 2016 年 [@CPI#Fin-Concept*] 为 1.9% 的 预测 不 变 。 26 | [@交通 银行 金研 中心#Organization*] : 下半年 [@财政 政策#Fin-Concept*] 积极 [@货币 政策#Fin-Concept*] 宽松 [@晨报 记者 刘志飞#Person*] [@交通 银行 金融 研究 中心#Organization*] 昨日 发布 的 [@下半年 展望 报告#Artifical*] 认为 , 下半年 , 我 国 积极 [@财政 政策#Fin-Concept*] 将 继续 发力 , 发挥 对 [@稳 增长#Fin-Concept*] 的 关键 作用 。 27 | 今年 反复 出现 这个 事情 , 跟 [@QE#Artifical*] 没有 什么 关系 , [@地方 债#Fin-Concept*] 是 纳入 是 [@全球 央行#Organization*] 的 一 个 普遍 的 实践 , 就 是 扩大 到 试点 , 将来 可能 要 扩大 到 [@全 国#Organization*] 去 , 这 是 必然 的 过程 。 28 | [@贸易商#Organization*] 低价 [@出货#Fin-Concept*] 后 发现 得 从 [@钢厂#Organization*] 高价 [@补货#Fin-Concept*] , 午后 [@部分 钢厂#Organization*] [@封盘 停售#Fin-Concept*] 再次 [@拉 涨 现货#Fin-Concept*] 。 29 | 还 有 一 个 更 有利 的 因素 , [@铜 期货#Artifical*] 近月 [@合约 限仓#Fin-Concept*] 为 1500吨 , 而 该 [@现货 电子盘#Fin-Concept*] 却 [@限仓#Fin-Concept*] 为 20000吨 , 相对 来 说 “ 战场 空间 ” 更 充裕 , 更 有利于 打 一 场 大 决战 。 30 | 这些 [@动能#Fin-Concept*] 的 逐步 释放 会 使 [@经济#Fin-Concept*] 保持 中 高速 增长 。 31 | 他 还 特别 强调 , 其实 中国 一直 在 进行 的 [@体制 改革#Fin-Concept*] 等 都 属于 [@供给 侧 改革#Fin-Concept*] , 此 次 是 对 此 类型 [@改革#Fin-Concept*] 进行 的 一 次 总结 和 归纳 , 并 形成 统一 提法 。 32 | 自 [@政府 工作 报告#Artifical*] 首提 “ 淘汰 、 停建 、 缓建 [@煤电 产能#Fin-Concept*] 5000万 千瓦 以上 , 以 防范 化解 [@煤电 产能 过剩 风险#Fin-Concept*] , 提高 [@煤电 行业 效率#Fin-Concept*] , 为 [@清洁 能源 发展#Fin-Concept*] 腾空间 ” , [@发改委 主任#Person*] 再提 [@煤电 去 产能#Artifical*] , 我们 认为 [@煤电 产能 过剩 状况#Fin-Concept*] 已 引起 高层 足够 重视 ,且 考虑 到 [@环保#Fin-Concept*] 渐趋 严格 , 后期 [@煤电 产能 去化 推进 力度#Fin-Concept*] 或 超 预期 , 从而 为 [@清洁 能源#Artifical*] 提供 良好 的 发展 机遇 , 相关 [@标的#Organization*] 有 [@大唐 发电#Organization*] 。 33 | 要 真正 实现 [@新 旧 产业 更 替#Fin-Concept*] , 必须 使 [@市场 机制#Fin-Concept*] 真正 在 [@资源 配置#Fin-Concept*] 中 发挥 决定性 作用 , 加快 出清 [@僵尸 企业#Organization*] , 为 [@新 产业#Sector*] 和 [@新 动能#Artifical*] 腾挪 空间 。 34 | [@电力#Artifical*] : 1月 [@发电 耗煤 同比 跌幅#Fin-Concept*] 扩大 , 预示 [@工业 经济#Fin-Concept*] 或 开局 不 佳 。 35 | 要 继续 深化 [@金融 改革#Fin-Concept*] , 协调 推进 [@利率#Fin-Concept*] 、 [@汇率 改革#Fin-Concept*] 和 [@资本 账户 开放#Fin-Concept*] 。 36 | 后者 则 指 [@期权#Fin-Concept*] 的 [@买方#Fin-Concept*] ( [@权利方#Fin-Concept*]) 有 权 在 约定 时间 以 约定 价格 将 一定 数量 的 [@标的 资产#Fin-Concept*] 卖给 [@期权#Fin-Concept*] 的 [@卖方#Fin-Concept*] ( [@义务方#Fin-Concept*] ) , [@买方#Fin-Concept*] 享有 [@卖出 选择权#Fin-Concept*] 。 37 | [@陆家嘴 金融 微 信号#Organization*] : [@FinanceLJZ#Organization*]▲长 按 二维码 “ 识别 ” 关注 推荐 理由 :助 您 洞悉 [@金融 趋势#Fin-Concept*] , 发现 [@投资 机遇#Fin-Concept*] ! 38 | 三 、 促进 [@结构 调整#Fin-Concept*] , 化解 [@过剩 产能#Fin-Concept*] 为 促进 [@结构 调整#Fin-Concept*] , 化解 [@过剩 产能#Fin-Concept*] , [@国家#Organization*] 利用 [@部分 电价 降价 空间#Fin-Concept*] 设立 [@工业 企业 结构 调整 专项 资金#Fin-Concept*] , 支持 [@地方#Organization*] 在 淘汰 [@煤炭#Sector*] 、 [@钢铁 行业 落后 产能#Fin-Concept*] 中 安置 [@下岗 失业 人员#Person*] 等 。 39 | [@赵辰昕#Person*] 说 : “ 为 做好 [@全 年 经济 社会 发展 工作#Fin-Concept*] , 我 [@委#Organization*] 和 各 [@部门#Organization*] 各 [@地方#Organization*] 还 将 不断 调整 充实 [@政策 工具 箱#Fin-Concept*] , 按照 [@党 中央 国务院#Organization*] 的 决策 部署 , 适度 扩大 [@总 需求#Fin-Concept*] , 以 [@供给 侧 结构性 改革#Fin-Concept*] 为 主线 , 及时 推出 务实 管用 的 政策 措施 , 并 切实 抓好 执行 和 落实 , 引导 好 发展 预期 , 确保 [@经济#Fin-Concept*] 运行 在 合理 区间 。 ” [@去 产能#Artifical*] : 年底 要 一一 [@盘点 交账 去 产能#Fin-Concept*] 被 排 在 今年 [@供给 侧 结构性 改革#Fin-Concept*] 五 大 任务 之 首 , [@钢铁#Sector*] 和 [@煤炭 行业#Sector*] 尤其是 关键 。 40 | 还 有 一 头 , [@税收 领域#Fin-Concept*] 一 个 月 1万 收入 的 人 , 不知不觉 需要 缴纳 6600 的 [@税费#Fin-Concept*] 。 41 | 另外 , 11月 17日 , [@新加坡 RQFII 额度#Fin-Concept*] 扩大 至 1000亿 元 人民币 , 较 之前 增加 500亿 元 。 42 | 就 [@公共 部门#Organization*] 而 言 , 虽然 从 国际 比较 来 看 , [@我 国 政府 债务 率#Fin-Concept*] 并 不 高 , 但 以 如此 快 的 速度 [@加 杠杆#Artifical*] 将 大大 透支 未来 [@财政 政策#Fin-Concept*] 的 [@操作 空间#Fin-Concept*] , 也 很 容易 陷入 [@发达 国家#Organization*] 那样 的 [@财政 困境#Fin-Concept*] , 带来 很多 长期 隐患 。 43 | [@铁 物资#Artifical*] 、 [@东北 特钢#Artifical*] 等 [@信用 违约 事件#Event-Past*] 频发 , 对 [@企业 融资 成本 #Fin-Concept*]、 [@借新 还 旧#Fin-Concept*] 、 [@金融 稳定#Fin-Concept*] 、 [@风险 溢价#Fin-Concept*] 等 产生 负面 [@传染 效应#Fin-Concept*] , [@P2P#Fin-Concept*] 各 种 跑路 , [@金融 风险 防范 压力#Fin-Concept*] 加大 。 44 | [@上海 证券 分析师 胡月晓 #Person*]表示 , [@PPI#Fin-Concept*] 持续 改善 , 环比 继续 大幅 明显 上涨 , 超出 [@市场 预期#Fin-Concept*] 。 45 | 6.5% 的 [@经济 增速 目标#Fin-Concept*] 对 当前 体量 规模 的 [@中国 经济#Fin-Concept*] 较为 适宜 的 , 并且 不 难 达成 。 46 | 当 事实 落地 的 时候 [@交易#Fin-Concept*] 的 [@预期#Fin-Concept*] 在 发生 转变 , 从 [@交易#Fin-Concept*] 的 行为 上 来 看 , 马上 出现 的 是 [@平仓#Artifical*] 的 一 个 行为 , 典型 的 “ 买 [@预期#Fin-Concept*] 、 卖 事实 ” —— 当 事实 落地 的 时候 [@交易#Fin-Concept*] 的 [@预期#Fin-Concept*] 在 发生 转变 。 47 | [@国家 统计局 新闻 发言人 盛来运#Person*] 表示 , 当前 [@供给侧 结构性 改革#Fin-Concept*] 取得 积极 进展 , 新 的 [@动能#Fin-Concept*] 在 加快 成长 , 因此 “ 稳 ” 的 基础 有所 加强 。 48 | 往往 [@新兴 行业#Sector*] , [@利润#Fin-Concept*] 没有 放 出来 , 有的 是 还 没有 成熟 的 [@产品#Artifical*] 。 49 | 2010年 和 2015年 两 次 [@大 涨#Event-Past*] 之间 , 经历 了 几 次 紧 就 跌松 反弹 , 最后 呈现 大松 大涨 的 局面 。 50 | 值得 一 提 的 是 , 去年 [@吉林省 经济 增速#Fin-Concept*] 逐步 上升 : 一 、 二 、 三 季度 的 [@GDP 增速#Fin-Concept*] 分别 为 6.2% 、 6.7% 、 6.9% 。 51 | 2015年 12月 ,[@PMI#Fin-Concept*] 为 49.7% , 高于 上 月 0.1 个 百分点 ;[@非 制造业 商务 活动 指数#Fin-Concept*] 为 54.4% , 比 上 月 上升 0.8 个 百分点 , 升至 2015年 以来 的 高点 。 52 | 有 问题 , 对 孩子 一样 的 , 该 说 也 要 说 , 直接 说 直接 讲 。 53 | 核心 原因 是 : ( 1 ) 在 [@风险 监管#Fin-Concept*] 及 [@金融 体制 改革#Fin-Concept*] 背景 下 , [@投资者 风险 偏好 提升 空间#Fin-Concept*] 较为 有限 ; ( 2 ) [@IPO开闸#Fin-Concept*] 带来 的 [@新兴 板块 标的 稀缺性#Fin-Concept*] 缺失 , 使得 [@估值 提升 空间#Fin-Concept*] 有限 。 54 | 除 对 2016年 [@全球 经济 增长#Fin-Concept*] 预测 外 , [@科法斯#Person*] 还 发布 了 [@最新 国家 风险 评级 调整 名单#Artifical*] ( 参见 图表 ) 。 55 | 在 [@投资#Fin-Concept*] 及 生活 领域 , [@坦伯顿#Person*] 深信 绝对 不 要 追随 群众 , 而 应 [@逆势 操作#Artifical*] ( [@Dontfollow thecrowd#Artifical*] ) 的 理念 , 他 独具慧眼 的 前瞻 视野 , 以及 严谨 的 研究 精神 , 将 其 终生 成就 臻至 巅峰 。 56 | 其中 , [@实物 商品 网 上 零售额#Fin-Concept*] 21239亿 元 , 增长 26.1% , 占 [@社会 消费品 零售 总额#Fin-Concept*] 的 比重 为 11.6% ; 在 [@实物 商品 网 上 零售额#Fin-Concept*] 中 , [@吃#Artifical*] 、 [@穿#Artifical*] 和 [@用 类 商品#Artifical*] 分别 增长 30.8% 、 17.3% 和 29.4% 。 57 | 考虑 到 [@页岩油#Artifical*] 的 威胁 , 意味 着 当前 [@油价 反弹#Fin-Concept*] 很 难 突破 50 - 60 美元 的 [@天花板#Fin-Concept*] 。 58 | [@风 投 从业者#Person*] 的 性格 一般 都 是 怎样 的 ? 59 | [@房地产 回暖#Fin-Concept*] 提供 [@安全垫#Fin-Concept*] [@中国 货币 政策#Fin-Concept*] 将 呈现 中性 尽管 没有 [@降准#Artifical*] [@降息#Artifical*] 等 大规模 [@货币 政策#Fin-Concept*] 出台 , [@中国#Organization*] 的 [@货币 市场 利率#Fin-Concept*] 总体 平稳 , 并 保持 低位 运行 。 60 | 而 [@需求#Fin-Concept*] 回暖 、 [@毛利#Fin-Concept*] 可观 , 令 [@生产#Fin-Concept*] 依然 旺盛 。 61 |     [@甘肃#Organization*] 的 [@棚改 货币化 安置率#Fin-Concept*] 已 高于 全 国 水平 。 62 | 我们 筛选 出 过去 三 年 [@业绩#Fin-Concept*] 亏损 或者 归属于 [@母 公司#Organization*] [@净 利润#Fin-Concept*] 大幅 下降 的 [@标的 公司#Fin-Concept*] ; 此外 , [@大 股东 持股 比例#Fin-Concept*] 也 是 很 重要 的 标准 , [@第一 大 股东 持股 比例#Fin-Concept*] 超过 50%, 有 [@绝对 控制权#Fin-Concept*] 。 63 | 因而 , 在 [@金融 监管#Fin-Concept*] 的 过程 中 , [@实体 经济 大 概率#Fin-Concept*] 也 将 被 波及 , 进一步 增加 [@需求 端#Fin-Concept*] 的 [@下行 风险#Fin-Concept*] 。 64 | 写 在 前面 的 话 by [@木头 老师#Person*] 这 一 系列 的 内容 是 我 按照 《 [@万物简史#Artifical*] 》 这 本 书 的 知识 脉络 来 讲 的 , 涉及 的 内容 非常 广泛 , 从 宇宙 到 恐龙 , 从 黑洞 到 相对论 , 都 是 [@孩子们#Person*] 非常 好奇 的 知识 。 65 | 总体 上 , [@发布会#Event-Past*] [@发言 要点#Fin-Concept*] 如下 : 1 [@改革#Fin-Concept*] 和 稳定 是 相辅相成 的 。 66 | [@甘肃省 住房 和 城乡 建设厅#Organization*] 一 位 [@工作 人员#Person*] 介绍 , 2015年 以来 , [@甘肃省#Organization*] 共 有 2.85万 户 [@棚改 对象#Person*] , 通过 [@货币化#Fin-Concept*] 得到 安置 , [@货币化 安置率#Fin-Concept*] 为 31% , 高于 全 国 同 期 水平 5.6 个 百分点 。 67 | 目前 三 大 [@股东#Fin-Concept*] 分别 为 [@中油 资产 管理 有限 公司#Organization*] 、 [@天津 经济 技术 开发区 国有 资产 经营 公司#Organization*] 、 [@广博 投资 控股 有限 公司#Organization*] , 分别 [@持股#Fin-Concept*] 82.18% 、 12.82% 和 5% 。 68 | 农谚 说 : “ 春分 麦 起身 , 一刻 值千金 。 ” 这时 我 国 大部分 地区 [@越 冬 作物#Artifical*] 进入 春季 生长 阶段 , 春耕 、 春种 将 进入 繁忙 阶段 。 69 | 上述 [@债券 基金 经理#Person*] 表示 , 如果 消息 持续 发酵 , 不少 [@机构#Organization*] 会 出现 [@跟风 现象#Event*] , 届时 就 真的 变成 第二 次 “ [@钱荒#Event*] ” 。 70 | [@基金 经理#Person*] “ 一 拖多 ” , 表面 上 只 是 [@基金 经理 数量#Fin-Concept*] 跟 不 上 [@产品 数量#Fin-Concept*] , 实际上 反映 了 诸多 问题 。 71 | 6月 [@经销商 库存 系数#Fin-Concept*] 升至 1.55 , 再度 转差 且 仍 高于 [@警戒 线#Fin-Concept*] , 表明 [@终端 需求 改善#Fin-Concept*] 较为 有限 , [@厂家 销量#Fin-Concept*] 转化 为 [@经销商 库存#Fin-Concept*] 。 72 | [@研报#Artifical*] 受到 “ [@最 大 回撤#Artifical*] ” 这 一 思想 的 启发 , 认为 可以 通过 [@回撤#Artifical*] 来 衡量 [@股指 期货 价格 序列#Fin-Concept*] 的 [@平稳 度#Fin-Concept*] , 进而 判断 今日 [@行情#Fin-Concept*] 的 [@走势#Fin-Concept*] 。 73 | [@供给 侧 改革#Fin-Concept*] 将 继续 推进 这些 具体 改革 的 前进 。 74 | [@业主#Person*] : [@水牛城 与 福特艾瑞 公共 桥梁署#Organization*] 电话 : 1(716)884-674428 、 [@MBTAGreenLine Extension#Artifical*] , [@Boston#Location*] [@波士顿 绿线 地铁 扩展 项目#Artifical*] , [@总 投资#Fin-Concept*] 30亿 美元 项目 简介 : 该 [@项目#Artifical*] 计划 扩建 [@波士顿#Location*] [@绿线 地铁#Artifical*] , 延长 线 全长 6.9 公里 , [@项目#Artifical*] 正在 审批 中 。 75 | 一大早 [@美图#Organization*] 的 [@创始人#Person*] 之一 [@蔡总#Person*] 就 在 [@朋友圈#Organization*] 里 不断 地 直播 着 美 图 奇迹 : 下午 2点 左右 [@市值#Fin-Concept*] 900亿 的 [@美图#Organization*] [@市值#Fin-Concept*] 出现 , 很 显然 [@蔡 老板#Person*] 很 兴奋 ; 然后 。 76 | 对于 [@市场#Fin-Concept*] 关注 的 [@房地产 税#Fin-Concept*] ,[@盛松成#Person*] 认为 由于 [@房地产税#Fin-Concept*] 设计 复杂 , 几 年 内 很 难 推出 。 77 | 建议 根据 自身 的 [@财富 保值#Fin-Concept*] 、 [@增值#Fin-Concept*] 需求 , 合理 运用 [@保险#Artifical*] 、 [@保险金 信托#Artifical*] 或 [@家族 信托#Artifical*] 等 方式 化解 自身 及 子女 婚姻 风险 带来 的 [@财富#Fin-Concept*] 缩水 。 78 | 两 年 里面 一 块 [@土地#Artifical*] 也 不 出 , [@市场#Fin-Concept*] 不 就 恢复 到 8点 , 还 是 严重 [@供过于求#Fin-Concept*] , 不 供 [@地#Artifical*] 有 什么 问题 ? 79 | “ [@非 制造业#Sector*] , 特别是 [@服务业#Sector*] 近 两 年 总体 保持 了 较 快 增速 , 这 与 [@中国 经济 结构#Fin-Concept*] 持续 优化 密切 相关 。 80 | 要 有 人文 关怀 , 带着 感情 , 将心比心 , 设身处地 为 他们 着想 , 既 帮 他们 解决 好 生活 困难 , 又 助 他们 提高 [@再 就业 能力#Fin-Concept*] 。 81 | 想要 [@创业#Fin-Concept*] , 一定 要 有 一 颗 强大 的 内心 , [@创业#Fin-Concept*] 一定 会 遇到 挫折 。 82 | 做好 明年 [@经济 工作#Fin-Concept*] , 就 是 要 把 思想 和 行动 统一 到 [@中央#Organization*] 的 思路 和 方法 上 来 , 服从 和 服务 于 大局 , 下 好 全 国 一 盘棋 , 全面 做好 [@稳 增长#Artifical*] 、 [@促 改革 #Artifical*]、 [@调结构#Artifical*] 、 [@惠民生#Artifical*] 、 [@防风险#Artifical*] 各 项 工作 。 83 | 同时 , 大幅 提升 [@制造业#Sector*] 的 研发 [@投资#Fin-Concept*] 强度 , 改变 我 国 在 [@国际 分工#Fin-Concept*] 中 的 不利 地位 。 84 | 如果 是 这样 的 模式 , 那么 拿到 [@不良 贷款#Fin-Concept*] 的 [@资产 管理 公司#Organization*] 就 可 把 部分 [@贷款#Fin-Concept*] 转换 成 [@股权#Fin-Concept*] , 这样 也 不 一定 就 是 糟糕 的 做法 , 或许 这 是 应 对 某 具体 [@贷款#Fin-Concept*] 的 适当 举措 。 85 | 二 者 均 有助于 缓和 [@企业 部门 资产 质量#Fin-Concept*] 恶化 、 放缓 [@不良 贷款#Fin-Concept*] 生成 速度 。 86 | [@李 迅雷#Person*] : 从 [@国家 统计局#Organization*] 公布 的 [@数据#Artifical*] 来 看 , [@经济 增速#Fin-Concept*] 整体 平稳 , 6月份 的 [@工业 增加值 增速#Fin-Concept*] 有所 回升 , 这 个 [@数据#Artifical*] 比 预期 的 要好 一些 , 这 可能 有 一 季度 [@投资#Fin-Concept*] 回升 后 的 [@滞后 效应#Fin-Concept*] 。 87 | 这个 非常 重要 , [@实体 经济#Fin-Concept*] 是 [@经济 发展#Fin-Concept*] 的 根基 。 88 | 万 般 皆 下品 , 唯有 买[@房#Artifical*] 高 , 正在 成为 事实 。 89 | 过剩 的 [@货币#Fin-Concept*] 涌入 [@金融 资产#Fin-Concept*] 中 , [@债市#Sector*] 、 [@股市#Sector*] 相继 迎来 [@牛市#Fin-Concept*] , 而 [@房地产 市场#Sector*] 也 大幅 扩张 。 90 | 作为 [@货币 超发#Fin-Concept*] 的 后果 之一 , 12年 以来 [@中国 居民 中长贷#Fin-Concept*] 爆发式 增长 ,[@月 均 新增 #Fin-Concept*]额 从 12年 的 1120亿 元 飙升 至 16年 上半年 的 4379亿 元 。 91 | 因而 以往 [@去产能#Artifical*] 不但 力度 不 足 , 且 精力 较为 分散 。 92 | 专家 认为 , [@中国#Organization*] 发展 [@智能 制造#Artifical*] 也 需要 加强 平台 建设 , 让 [@行业#Organization*] 、 [@企业#Organization*] 、 [@科研 院所#Organization*] 等 各 方 广泛 参与 , 共同 谋划 如何 具体 落实 [@中国 制造 智能 升级#Fin-Concept*] 的 路线图 。 93 | [@期权 收盘 涨跌幅 #Fin-Concept*]( % ) [@成交量#Fin-Concept*] ( 手 ) [@50ET F#Fin-Concept*]2.3350-0.3495 02596 [@250ETF#Fin-Concept*]购 3月 2.350.0089 - 27.0540,[@10950ETF#Fin-Concept*]沽 3月 2.350.0254.1736,7424 [@外汇#Fin-Concept*] 与 [@大宗 商品 美元 指数#Fin-Concept*] 走弱 , [@工业品#Artifical*] 整体 回调 趋缓 ( [@张 磊#Person*] ) 今日 , [@美元 指数#Fin-Concept*] 走弱 , [@COMEX 黄金 价格#Fin-Concept*] 跌到 了 1200 附近 的 敏感 区域 , 21点30 分公布 [@美国 非农 与 失业率#Fin-Concept*] , [@市场#Fin-Concept*] 预期 20万 人 左右 。 94 | ( 6 ) [@财政 事务 预算数#Fin-Concept*] 为 14.81亿 元 , 比 2015年 [@执行数#Fin-Concept*] 增加 1.57亿 元 , 增长 11.9% 。 95 | 我们 认为 至少 应该 尝试 一下 , 看看 是否 有所 收获 。 ” 他 的 团队 所 设想 的 那 个 实验 , 最终 被 证明 对 [@搜索#Artifical*] 至关 重要 : 即 文件 排名 与 搜索 请求 的 匹配 程度 有 多 高 。 96 | [@IMF#Organization*] 下调 16年 [@全球 经济 增速#Fin-Concept*] 预期 从 3.4%至3.2%, 上调 2016年 [@中国 经济 增速#Fin-Concept*] 预估 至 6.5% 。 97 | [@中欧 国际 工商 学院 副院长 张维烔#Person*] 表示 ,自 2015年 [@中央#Organization*] 明确 提出 着力 加强 [@供给侧 结构性 改革#Fin-Concept*] 后 , 今年 已经 成为 [@供给侧 改革#Fin-Concept*] 的 元年 。 98 | 和 [@微面#Artifical*] 相当 的 价格 , 完全 不同 的 [@销售 模式#Fin-Concept*] , 想 分得 [@农村 消费 升级 市场#Fin-Concept*] 的 一杯羹 。 99 | 据 他 介绍 , 目前 [@临汾市#Organization*] 有 [@焦化 企业#Organization*] 20余 家 。 100 | [@傅莹#Person*] : [@房地产税 立法#Fin-Concept*] 涉及 多方 利益 , 今年 没有 提请 审议 安排 [@澎湃 新闻 记者 范瑟#Person*] 来源 : [@澎湃 新闻#Organization*] 3月4日 , [@十二 届 全 国 人大 五 次 会议 新闻 发言人 傅莹#Person*] 表示 , “ 今年 没有 把 [@房地产税 草案#Artifical*] 提请 [@全 国 人大 常委会#Event-Past*] 审议 的 安排 。 ” 据 [@新华网#Organization*] 报道 , [@十二 届 全 国 人大 五 次 会议 首 场 新闻 发布会#Event-Past*] 于 3月4日 上午 11 时 举行 , [@大会 新闻 发言人 傅莹#Person*] 向 [@中外 媒体#Organization*] 介绍 本 次 [@大会#Event-Past*] 有关 情况 并 回答 [@记者#Person*] 提问 。 101 | -------------------------------------------------------------------------------- /demotext/UserE.ann: -------------------------------------------------------------------------------- 1 | 我们 看到 [@债券 市场 收益率#Fin-Concept*] 相比 去年 已经 有 明显 的 上涨 , 这 种 情况 还 会 延续 。 2 | [@规划#Artifical*] 特别 提出 , 将 推动 [@房地产税 立法#Fin-Concept*] , 但 未 明确 [@税收 立法 完成 时限#Fin-Concept*] 。 3 | 在 [@投资#Fin-Concept*] 这 个 领域 , “ 带着 镣铐 起舞 ” 有 可能 不 是 种 限制 反而 是 种 [@保护 机制#Fin-Concept*] 。 4 | 但 对 富 人 来说 , 这 种 [@加 杠杆#Artifical*] 更 刺激 , 1000万 的 [@房子#Artifical*] , 转眼 成 2000万 了 , 干 什么 能 迅速 来 1000万 啊 ! 5 | 想想 [@光纤#Artifical*] , 为何 速度 这么 快 , 因为 它 完全 不 受 外界 干扰 。 6 | [@中国#Organization*] 前 段 时间 禁止 进口 [@朝鲜#Organization*] 的 [@煤炭#Artifical*] , [@煤炭#Artifical*] 占 [@朝鲜#Organization*] 对 [@中国#Organization*] [@出口#Fin-Concept*] 的 近 一半 , 这下 [@中#Organization*] [@朝#Organization*] 之间 的 [@贸易#Fin-Concept*] 雪崩式 下降 。 7 | 初步 测算 , [@五 大 商业 银行#Organization*] 此 次 降准 1 个 百分点 , 释放 [@流动性 规模#Fin-Concept*] 在 5800亿 左右 , 另外 , 本 周 [@央行#Organization*] 公开 [@市场#Fin-Concept*] 大规模 投放 了 近 1.13万亿 , 释放 的 [@资金 规模#Fin-Concept*] 创 历史 单周 新高 ; ③ [@躁动 条件#Fin-Concept*] 均 具备 , 有助于 年 内 “ 春季 躁动 ” 行情 的 开启 , [@目标 点位#Fin-Concept*] 3300点 。 8 | [@房地产 贷款 余额#Fin-Concept*] 占 各 项 [@贷款 余额#Fin-Concept*] 的 23.6% , 比3月 末 高 0.7 个 百分点 。 9 | 计算 公式 如下 : [@加权 平均 条款#Artifical*] 有 两 种 细分 形式 , [@广义 加权 平均#Fin-Concept*] 和 [@狭义 加权 平均#Fin-Concept*] , 区别 在于 对 [@后轮 融资#Fin-Concept*] 时 的 [@已 发行 股份#Fin-Concept*] 及 其 数量 的 定义 : [@广义 加权#Fin-Concept*] 包括 已 [@发行#Fin-Concept*] 的 [@普通股#Fin-Concept*] 、 [@优先 股#Fin-Concept*] 可转 换成 的 [@普通股#Fin-Concept*] 、 可以 通过 执行 [@期权#Fin-Concept*] 等 获得 [@普通股 数量#Fin-Concept*] 。 10 | 2 . 原因 之一 : [@企业#Organization*] [@盈利#Fin-Concept*] 低迷 , [@投资 意愿#Fin-Concept*] 较 弱 2.1  [@投资#Fin-Concept*] 迭创 新低 , [@货币 刺激#Fin-Concept*] 失效 ? 11 | 过去 这 两 年 整 个 [@金融 市场#Sector*] 的 波动 比较 大 , 无论是 [@股票#Artifical*] 还是 [@债券#Artifical*] 等 [@大 类 资产 配置 板块#Fin-Concept*] , 抑或是 具体 到 [@股票 阿尔法 策略#Artifical*] 甚至 包括 [@CTA 策略#Artifical*] 的 表现 都 不 甚 理想 , 这 都 会 给 [@投资者#Person*] 在 决策 时 造成 一定 压力 。 12 | 当前 , [@监管 层#Organization*] 已 宣布 重启 [@IPO#Artifical*] , 11月 30日 开始 首 轮 [@新股#Fin-Concept*] 陆续 申购 。 13 | 10年 [@国开 活跃 券#Fin-Concept*] 160213 [@收益率#Fin-Concept*] 上行 8.64bp 报 3.91% , 160210 [@收益率#Fin-Concept*] 上行 11p 报 3.97% ; 10年 [@国债 活跃 券#Artifical*] 160023 [@收益率#Artifical*] 上行 4.01bp 报 3.28% 。 14 | [@民间 投资#Fin-Concept*] 同 [@全 社会 固定 资产 投资#Fin-Concept*] 的 [@增速#Fin-Concept*] 出现 了 明显 的 [@喇叭 口#Fin-Concept*] , [@民间 投资 比重#Fin-Concept*] 占 60% 左右 , 如果 降低 , [@固定 资产 投资#Fin-Concept*] 则 不 乐观 。 15 | [@华盛顿 大学 房地产 和 城市 分析 中心 主席 克里斯托弗•莱恩博格#Person*] ( [@Christop her Leinberger#Person*] ) 说到 : “ 在 [@郊区#Location*] , 现在 的 大 挑战 是 维修 目前 的 [@高速 公路 系统#Artifical*] , 要 建设 新 的 [@公路#Artifical*] 是 不 可能 的 了 , 因为 我们 现在 还 没有 来 维护 现有 [@公路#Artifical*] 的 [@资金#Artifical*] ” 。 16 | 将 探索 完善 [@省属 国有 资本 投资 运营 公司#Organization*] 的 [@运营 机制#Fin-Concept*] , 加快 实现 由 管 [@企业#Organization*] 到 管 [@资本#Fin-Concept*] 的 转变 ; 加速 [@国有 资本#Fin-Concept*] 向 战略性 [@新兴 产业#Sector*] 、 [@高 端 服务业#Fin-Concept*] 、 [@优势 产业#Sector*] 、 [@基础 设施#Fin-Concept*] 和 [@民生 保障#Fin-Concept*] 等 五 大 领域 集中 。 17 | [@有色#Sector*] : 上 周 [@LME铜价#Fin-Concept*] 降 、 [@铝价#Fin-Concept*] 升 , [@铜 库存#Fin-Concept*] 续 降 、 [@铝 库存#Fin-Concept*] 微 升 。 18 | 游戏 的 规则 在 慢慢 改变 , 我们 不 能 只 看到 [@财务 回报#Fin-Concept*] , 就 以为 自己 主宰 命运 了 。 19 | 来源 : [@阿尔法 工厂#Organization*] ( ID: [@alpworks#Organization*] ) [@市场#Fin-Concept*] 普遍 认为 [@美国 房地产 市场#Sector*] 将 再次 好转 成为 不错 的 [@投资 标的#Fin-Concept*] 。 20 | 然而 [@大头#Person*] 却 再 也 没有 在 这 座 城市 买 房 , 言谈 也 不 再 有 当年 那 股 傲 劲 , 借 朋友 很多 钱 , 座驾 也 从 宝马 变成 了 桑塔纳 , 每 天 仍 奔波 在 自己 的 [@创业 之 路#Fin-Concept*] 中 。 21 | 具体 来 看 , [@李克强#Person*] 提出 在 [@供给#Fin-Concept*] 方面 , 继续 运用 好 [@结构性 减税#Artifical*] 等 [@手段#Artifical*] , 推动 “ [@双创#Artifical*] ” 和 “ [@中国 制造 2025#Artifical*] ” 、 “ [@互联网 +#Artifical*] ” 行动 计划 , 促进 [@服务业#Sector*] 、 先进 [@制造业#Sector*] 发展 , 扶持 [@小微 企业#Organization*] 成长 , 发挥 [@制度 创新#Fin-Concept*] 和 [@技术 进步#Fin-Concept*] 对 [@供给 升级#Fin-Concept*] 的 倍增 [@效用#Fin-Concept*] , 扩大 [@有效 供给#Fin-Concept*] 。 22 | 因此 , 需要 进一步 澄清 的 是 , 「 [@非 公开性#Fin-Concept*] 」 针对 的 是 特定 的 「 [@私募 产品#Artifical*] ( 项目 ) 」 不 得 进行 公开 的 [@宣传#Fin-Concept*] , 但 并 不 禁止 对 [@私募#Organization*] 的 [@发起人#Person*] ( 如 [@基金 公司#Organization*] ) 、 [@过往 业绩#Fin-Concept*] 、 [@私募 基金 管理人#Person*] 等 进行 [@公开 宣传#Fin-Concept*] 。 23 | 建议 拓展 [@前海 蛇口 自贸区 离岸 账户 (OSA) 功能#Artifical*] [@马蔚华#Person*] 在 《 [@关于 推进 前海 蛇口 自贸区 金融 改革 的 提案#Artifical*] 》 中 表示 , [@前海 蛇口 自贸区 金融 改革#Artifical*] 做 了 一 系列 有益 探索 , 取得 了 很大 进展 。 24 | 根据 [@通货膨胀#Fin-Concept*] 的 定义 , [@通货膨胀#Fin-Concept*] 是 [@货币#Fin-Concept*] 过 多 发行 所 造成 的 [@物价#Fin-Concept*] 全面 上涨 , “ 现在 还 很 难 说 [@物价#Fin-Concept*] 全面 上涨 。 ” [@张世贤#Person*] 的 判断 不 无 道理 。 25 | [@中金 公司#Organization*] 维持 2016 年 [@CPI#Fin-Concept*] 为 1.9% 的 预测 不 变 。 26 | [@交通 银行 金研 中心#Organization*] : 下半年 [@财政 政策#Artifical*] [@积极 货币 政策#Artifical*] 宽松 [@晨报 记者 刘志飞#Person*] [@交通 银行 金融 研究 中心#Organization*] 昨日 发布 的 [@下半年 展望 报告#Artifical*] 认为 , 下半年 , 我 国 [@积极 财政 政策#Artifical*] 将 继续 发力 , 发挥 对 稳 增长 的 关键 作用 。 27 | 今年 反复 出现 这个 事情 , 跟 [@QE#Artifical*] 没有 什么 关系 , [@地方 债#Fin-Concept*] 是 纳入 是 全球 [@央行#Organization*] 的 一 个 普遍 的 实践 , 就 是 扩大 到 试点 , 将来 可能 要 扩大 到 全 国 去 , 这 是 必然 的 过程 。 28 | [@贸易商#Person*] [@低价 出货#Fin-Concept*] 后 发现 得 从 钢厂 [@高价 补货#Fin-Concept*] , 午后 部分 [@钢厂#Organization*] [@封盘 停售#Fin-Concept*] 再次 拉 涨 [@现货#Artifical*] 。 29 | 还 有 一 个 更 有利 的 因素 , [@铜 期货#Fin-Concept*] 近月 [@合约 限仓#Fin-Concept*] 为 1500吨 , 而 该 [@现货#Artifical*] [@电子盘#Fin-Concept*] 却 [@限仓#Fin-Concept*] 为 20000吨 , 相对 来 说 “ 战场 空间 ” 更 充裕 , 更 有利于 打 一 场 大 决战 。 30 | 这些 动能 的 逐步 释放 会 使 [@经济#Fin-Concept*] 保持 中 高速 增长 。 31 | 他 还 特别 强调 , 其实 [@中国#Organization*] 一直 在 进行 的 [@体制 改革#Artifical*] 等 都 属于 [@供给 侧 改革#Artifical*] , 此 次 是 对 此 类型 [@改革#Artifical*] 进行 的 一 次 总结 和 归纳 , 并 形成 统一 提法 。 32 | 自 [@政府 工作 报告#Artifical*] 首提 “ 淘汰 、 停建 、 缓建 [@煤电 产能#Fin-Concept*] 5000万 千瓦 以上 , 以 防范 化解 [@煤电 产能 过剩 风险#Fin-Concept*] , 提高 [@煤电 行业 效率#Fin-Concept*] , 为 [@清洁 能源#Fin-Concept*] 发展 腾空间 ” , [@发改委 主任#Person*] 再提 [@煤电 去 产能#Artifical*] , 我们 认为 [@煤电 产能 过剩 状况#Fin-Concept*] 已 引起 [@高层#Other*] 足够 重视 ,且 考虑 到 环保 渐趋 严格 , 后期 [@煤电 产能 去化 推进 力度#Fin-Concept*] 或 超 [@预期#Fin-Concept*] , 从而 为 [@清洁 能源#Fin-Concept*] 提供 良好 的 [@发展 机遇#Fin-Concept*] , 相关 [@标的#Fin-Concept*] 有 [@大唐 发电#Organization*] 。 33 | 要 真正 实现 [@新 旧 产业#Other*] 更 替 , 必须 使 [@市场 机制#Fin-Concept*] 真正 在 [@资源 配置#Fin-Concept*] 中 发挥 决定性 作用 , 加快 出清 [@僵尸 企业#Organization*] , 为 [@新 产业#Fin-Concept*] 和 [@新 动能#Fin-Concept*] 腾挪 空间 。 34 | [@电力#Sector*] : 1月 [@发电 耗煤#Fin-Concept*] 同比 跌幅 扩大 , 预示 [@工业 经济#Fin-Concept*] 或 开局 不 佳 。 35 | 要 继续 深化 [@金融 改革#Artifical*] , 协调 推进 [@利率#Fin-Concept*] 、 [@汇率#Fin-Concept*] [@改革#Fin-Concept*] 和 [@资本 账户 开放#Fin-Concept*] 。 36 | 后者 则 指 [@期权#Fin-Concept*] 的 [@买方#Person*] ( [@权利方#Person*]) 有 权 在 约定 时间 以 约定 价格 将 一定 数量 的 [@标的 资产#Fin-Concept*] 卖给 [@期权#Fin-Concept*] 的 [@卖方#Person*] ( [@义务方#Person*] ) , [@买方#Person*] 享有 卖出 [@选择权#Fin-Concept*] 。 37 | [@陆家嘴 金融#Organization*] 微 信号 : [@FinanceLJZ #Organization*]▲长 按 二维码 “ 识别 ” 关注 推荐 理由 :助 您 洞悉 [@金融 趋势#Fin-Concept*] , 发现 [@投资 机遇#Fin-Concept*] ! 38 | 三 、 促进 [@结构 调整#Fin-Concept*] , 化解 [@过剩 产能#Fin-Concept*] 为 促进 [@结构 调整#Fin-Concept*] , 化解 [@过剩 产能#Fin-Concept*] , [@国家#Organization*] 利用 部分 [@电价 降价 空间#Fin-Concept*] 设立 [@工业 企业 结构 调整 专项 资金#Fin-Concept*] , 支持 [@地方#Organization*] 在 淘汰 [@煤炭#Sector*] 、 [@钢铁#Sector*] [@行业 落后 产能#Fin-Concept*] 中 安置 [@下岗 失业 人员#Person*] 等 。 39 | [@赵辰昕#Person*] 说 : “ 为 做好 [@全 年 经济 社会 发展 工作#Fin-Concept*] , 我 [@委#Organization*] 和 各 [@部门#Organization*] 各 [@地方#Organization*] 还 将 不断 调整 充实 [@政策 工具 箱#Fin-Concept*] , 按照 [@党 中央 国务院#Organization*] 的 [@决策 部署#Fin-Concept*] , 适度 扩大 [@总 需求#Fin-Concept*] , 以 [@供给 侧 结构性 改革#Fin-Concept*] 为 主线 , 及时 推出 务实 管用 的 [@政策 措施#Fin-Concept*] , 并 切实 抓好 执行 和 落实 , 引导 好 发展 预期 , 确保 经济 运行 在 合理 区间 。 ” [@去 产能#Artifical*] : 年底 要 一一 盘点 交账 [@去 产能#Artifical*] 被 排 在 今年 [@供给 侧 结构性 改革#Fin-Concept*] 五 大 任务 之 首 , [@钢铁#Fin-Concept*] 和 [@煤炭#Fin-Concept*] [@行业#Sector*] 尤其是 关键 。 40 | 还 有 一 头 , [@税收 领域#Fin-Concept*] 一 个 月 1万 收入 的 人 , 不知不觉 需要 缴纳 6600 的 [@税费#Fin-Concept*] 。 41 | 另外 , 11月 17日 , [@新加坡 RQFII 额度#Fin-Concept*] 扩大 至 1000亿 元 人民币 , 较 之前 增加 500亿 元 。 42 | 就 [@公共 部门#Organization*] 而 言 , 虽然 从 国际 比较 来 看 , 我 国 [@政府 债务 率#Fin-Concept*] 并 不 高 , 但 以 如此 快 的 速度 加 [@杠杆#Fin-Concept*] 将 大大 透支 [@未来 财政 政策#Fin-Concept*] 的 [@操作 空间#Fin-Concept*] , 也 很 容易 陷入 [@发达 国家#Organization*] 那样 的 [@财政 困境#Fin-Concept*] , 带来 很多 长期 隐患 。 43 | [@铁 物资#Event-Past*] 、 [@东北 特钢#Event-Past*] 等 [@信用 违约 事件#Event-Past*] 频发 , 对 [@企业 融资 成本#Fin-Concept*] 、 借新 还 旧 、 [@金融 稳定#Fin-Concept*] 、 [@风险 溢价#Fin-Concept*] 等 产生 [@负面 传染 效应#Fin-Concept*] , [@P2P#Fin-Concept*] 各 种 跑路 , [@金融 风险#Fin-Concept*] 防范 压力 加大 。 44 | [@上海 证券 分析师 胡月晓#Person*] 表示 , [@PPI#Fin-Concept*] 持续 改善 , 环比 继续 大幅 明显 上涨 , 超出 [@市场 预期#Fin-Concept*] 。 45 | 6.5% 的 [@经济 增速 目标#Fin-Concept*] 对 当前 [@体量 规模#Fin-Concept*] 的 [@中国 经济#Fin-Concept*] 较为 适宜 的 , 并且 不 难 达成 。 46 | 当 事实 落地 的 时候 [@交易#Fin-Concept*] 的 [@预期#Fin-Concept*] 在 发生 转变 , 从 交易 的 行为 上 来 看 , 马上 出现 的 是 [@平仓#Fin-Concept*] 的 一 个 行为 , 典型 的 “ 买 [@预期#Fin-Concept*] 、 卖 事实 ” —— 当 事实 落地 的 时候 [@交易#Fin-Concept*] 的 [@预期#Fin-Concept*] 在 发生 转变 。 47 | [@国家 统计局 新闻 发言人 盛来运#Person*] 表示 , 当前 [@供给侧 结构性 改革#Fin-Concept*] 取得 积极 进展 , 新 的 动能 在 加快 成长 , 因此 “ 稳 ” 的 基础 有所 加强 。 48 | 往往 [@新兴 行业#Sector*] , 利润 没有 放 出来 , 有的 是 还 没有 成熟 的 [@产品#Fin-Concept*] 。 49 | 2010年 和 2015年 两 次 大 涨 之间 , 经历 了 几 次 紧 就 跌松 反弹 , 最后 呈现 大松 大涨 的 局面 。 50 | 值得 一 提 的 是 , 去年 [@吉林省 经济#Fin-Concept*] 增速 逐步 上升 : 一 、 二 、 三 季度 的 [@GDP#Fin-Concept*] 增速 分别 为 6.2% 、 6.7% 、 6.9% 。 51 | 2015年 12月 , [@PMI#Fin-Concept*] 为 49.7% , 高于 上 月 0.1 个 百分点 ; [@非 制造业 商务 活动 指数#Fin-Concept*] 为 54.4% , 比 上 月 上升 0.8 个 百分点 , 升至 2015年 以来 的 高点 。 52 | 有 问题 , 对 孩子 一样 的 , 该 说 也 要 说 , 直接 说 直接 讲 。 53 | 核心 原因 是 : ( 1 ) 在 [@风险 监管#Fin-Concept*] 及 [@金融 体制 改革#Fin-Concept*] 背景 下 , [@投资者#Person*] [@风险 偏好 提升 空间#Fin-Concept*] 较为 有限 ; ( 2 ) [@IPO 开闸#Fin-Concept*] 带来 的 [@新兴 板块 标的 稀缺性 缺失#Fin-Concept*] , 使得 [@估值 提升 空间#Fin-Concept*] 有限 。 54 | 除 对 [@2016年 全球 经济 增长#Fin-Concept*] 预测 外 , [@科法斯#Organization*] 还 发布 了 [@最新 国家 风险 评级 调整 名单#Artifical*] ( 参见 [@图表#Artifical*] ) 。 55 | 在 [@投资#Fin-Concept*] 及 [@生活#Fin-Concept*] [@领域#Fin-Concept*] , [@坦伯顿#Person*] 深信 绝对 不 要 追随 [@群众#Person*] , 而 应 [@逆势 操作#Artifical*] ( [@Dontfollow thecrowd #Artifical*]) 的 理念 , 他 独具慧眼 的 前瞻 视野 , 以及 严谨 的 研究 精神 , 将 其 终生 成就 臻至 巅峰 。 56 | 其中 , [@实物 商品 网 上 零售额#Fin-Concept*] 21239亿 元 , 增长 26.1% , 占 [@社会 消费品 零售 总额#Fin-Concept*] 的 比重 为 11.6% ; 在 [@实物 商品 网 上 零售额#Fin-Concept*] 中 , 吃 、 穿 和 用 类 [@商品#Fin-Concept*] 分别 增长 30.8% 、 17.3% 和 29.4% 。 57 | 考虑 到 [@页岩油#Artifical*] 的 威胁 , 意味 着 当前 [@油价 反弹#Fin-Concept*] 很 难 突破 50 - 60 [@美元#Fin-Concept*] 的 天花板 。 58 | [@风 投 从业者#Person*] 的 性格 一般 都 是 怎样 的 ? 59 | [@房地产 回暖#Fin-Concept*] 提供 安全垫 [@中国 货币 政策#Artifical*] 将 呈现 中性 尽管 没有 [@降准 降息#Artifical*] 等 大规模 [@货币 政策#Artifical*] 出台 , [@中国#Organization*] 的 [@货币 市场 利率#Fin-Concept*] 总体 平稳 , 并 保持 低位 运行 。 60 | 而 [@需求 回暖#Fin-Concept*] 、 [@毛利 可观#Fin-Concept*] , 令 [@生产#Fin-Concept*] 依然 旺盛 。 61 |     [@甘肃#Location*] 的 [@棚改 货币化 安置率#Fin-Concept*] 已 高于 全 国 水平 。 62 | 我们 筛选 出 过去 三 年 [@业绩 亏损#Fin-Concept*] 或者 归属于 [@母 公司 净 利润#Fin-Concept*] 大幅 下降 的 [@标的 公司#Organization*] ; 此外 , [@大 股东 持股 比例#Fin-Concept*] 也 是 很 重要 的 标准 , [@第一 大 股东 持股 比例#Fin-Concept*] 超过 50%, 有 [@绝对 控制权#Fin-Concept*] 。 63 | 因而 , 在 [@金融 监管#Fin-Concept*] 的 过程 中 , [@实体 经济 大 概率#Fin-Concept*] 也 将 被 波及 , 进一步 增加 [@需求 端#Fin-Concept*] 的 [@下行 风险#Fin-Concept*] 。 64 | 写 在 前面 的 话 by [@木头 老师#Person*] 这 一 系列 的 内容 是 我 按照 《 [@万物简史#Artifical*] 》 这 本 [@书#Artifical*] 的 知识 脉络 来 讲 的 , 涉及 的 内容 非常 广泛 , 从 宇宙 到 恐龙 , 从 黑洞 到 相对论 , 都 是 [@孩子们#Person*] 非常 好奇 的 知识 。 65 | 总体 上 , [@发布会#Event-Past*] 发言 要点 如下 : 1 [@改革#Fin-Concept*] 和 稳定 是 相辅相成 的 。 66 | [@甘肃省 住房 和 城乡 建设厅#Organization*] 一 位 [@工作 人员#Person*] 介绍 , 2015年 以来 , [@甘肃省#Organization*] 共 有 2.85万 户 [@棚改 对象#Fin-Concept*] , 通过 [@货币化#Fin-Concept*] 得到 安置 , [@货币化 安置率#Fin-Concept*] 为 31% , 高于 全 国 同 期 水平 5.6 个 百分点 。 67 | 目前 三 大 [@股东#Organization*] 分别 为 [@中油 资产 管理 有限 公司#Organization*] 、 [@天津 经济 技术 开发区 国有 资产 经营 公司#Organization*] 、 [@广博 投资 控股 有限 公司#Organization*] , 分别 持股 82.18% 、 12.82% 和 5% 。 68 | 农谚 说 : “ 春分 麦 起身 , 一刻 值千金 。 ” 这时 我 国 大部分 地区 越 冬 作物 进入 春季 生长 阶段 , 春耕 、 春种 将 进入 繁忙 阶段 。 69 | 上述 [@债券 基金 经理#Person*] 表示 , 如果 消息 持续 发酵 , 不少 [@机构#Organization*] 会 出现 [@跟风 现象#Event-Past*] , 届时 就 真的 变成 第二 次 “ [@钱荒#Event*] ” 。 70 | [@基金 经理#Person*] “ 一 拖多 ” , 表面 上 只 是 [@基金 经理 数量#Fin-Concept*] 跟 不 上 [@产品 数量#Fin-Concept*] , 实际上 反映 了 诸多 问题 。 71 | 6月 [@经销商 库存 系数#Fin-Concept*] 升至 1.55 , 再度 转差 且 仍 高于 警戒 线 , 表明 [@终端 需求 改善#Fin-Concept*] 较为 有限 , [@厂家 销量#Fin-Concept*] 转化 为 [@经销商 库存#Fin-Concept*] 。 72 | [@研报#Artifical*] 受到 “ 最 大 回撤 ” 这 一 思想 的 启发 , 认为 可以 通过 [@回撤#Fin-Concept*] 来 衡量 [@股指 期货 价格 序列#Fin-Concept*] 的 [@平稳 度#Fin-Concept*] , 进而 判断 今日 行情 的 走势 。 73 | [@供给 侧 改革#Artifical*] 将 继续 推进 这些 具体 [@改革#Artifical*] 的 前进 。 74 | [@业主#Person*] : [@水牛城 与 福特艾瑞 公共 桥梁署#Organization*] 电话 : 1(716)884-674428 、 [@MBTAGreenLine Extension#Artifical*] , [@Boston [@波士顿 绿线 地铁#Artifical*] 扩展 项目#Artifical*] , 总 投资 30亿 [@美元#Fin-Concept*] [@项目 简介#Fin-Concept*] : 该 [@项目#Artifical*] 计划 扩建 [@波士顿 绿线 地铁#Artifical*] , 延长 线 全长 6.9 公里 , [@项目#Artifical*] 正在 审批 中 。 75 | 一大早 [@美图#Organization*] 的 [@创始人#Person*] 之一 [@蔡总#Person*] 就 在 朋友圈 里 不断 地 直播 着 [@美 图#Organization*] 奇迹 : 下午 2点 左右 [@市值#Fin-Concept*] 900亿 的 [@美图 市值#Fin-Concept*] 出现 , 很 显然 [@蔡 老板#Person*] 很 兴奋 ; 然后 。 76 | 对于 [@市场#Fin-Concept*] 关注 的 [@房地产 税#Fin-Concept*] , [@盛松成#Person*] 认为 由于 [@房地产税#Fin-Concept*] 设计 复杂 , 几 年 内 很 难 推出 。 77 | 建议 根据 自身 的 [@财富#Fin-Concept*] [@保值#Fin-Concept*] 、 [@增值#Fin-Concept*] [@需求#Fin-Concept*] , 合理 运用 [@保险#Artifical*] 、 [@保险金#Fin-Concept*] [@信托#Artifical*] 或 [@家族 信托#Artifical*] 等 方式 化解 自身 及 子女 婚姻 风险 带来 的 [@财富 缩水#Fin-Concept*] 。 78 | 两 年 里面 一 块 土地 也 不 出 , [@市场#Fin-Concept*] 不 就 恢复 到 8点 , 还 是 严重 供过于求 , 不 供 [@地#Artifical*] 有 什么 问题 ? 79 | “ [@非 制造业#Sector*] , 特别是 [@服务业#Sector*] 近 两 年 总体 保持 了 较 快 [@增速#Fin-Concept*] , 这 与 [@中国 经济 结构 持续 优化#Fin-Concept*] 密切 相关 。 80 | 要 有 人文 关怀 , 带着 感情 , 将心比心 , 设身处地 为 他们 着想 , 既 帮 他们 解决 好 生活 困难 , 又 助 他们 提高 [@再 就业 能力#Fin-Concept*] 。 81 | 想要 创业 , 一定 要 有 一 颗 强大 的 内心 , [@创业#Fin-Concept*] 一定 会 遇到 挫折 。 82 | 做好 [@明年 经济 工作#Fin-Concept*] , 就 是 要 把 思想 和 行动 统一 到 [@中央#Organization*] 的 思路 和 方法 上 来 , 服从 和 服务 于 大局 , 下 好 全 国 一 盘棋 , 全面 做好 稳 增长 、 促 [@改革#Fin-Concept*] 、 调 结构 、 惠 [@民生#Fin-Concept*] 、 防 风险 各 项 工作 。 83 | 同时 , 大幅 提升 [@制造业#Sector*] 的 [@研发 投资 强度#Fin-Concept*] , 改变 我 国 在 [@国际 分工#Fin-Concept*] 中 的 不利 地位 。 84 | 如果 是 这样 的 模式 , 那么 拿到 [@不良 贷款#Fin-Concept*] 的 [@资产 管理 公司#Organization*] 就 可 把 [@部分 贷款#Fin-Concept*] 转换 成 [@股权#Fin-Concept*] , 这样 也 不 一定 就 是 糟糕 的 做法 , 或许 这 是 应 对 某 [@具体 贷款#Fin-Concept*] 的 适当 举措 。 85 | 二 者 均 有助于 缓和 [@企业 部门 资产 质量 恶化#Fin-Concept*] 、 放缓 [@不良 贷款 生成 速度#Fin-Concept*] 。 86 | [@李 迅雷#Person*] : 从 [@国家 统计局#Organization*] 公布 的 [@数据#Artifical*] 来 看 , [@经济 增速#Fin-Concept*] 整体 平稳 , 6月份 的 [@工业 增加值 增速#Fin-Concept*] 有所 回升 , 这 个 [@数据#Artifical*] 比 预期 的 要好 一些 , 这 可能 有 [@一 季度 投资 回升#Fin-Concept*] 后 的 [@滞后 效应#Fin-Concept*] 。 87 | 这个 非常 重要 , [@实体 经济#Fin-Concept*] 是 [@经济 发展#Fin-Concept*] 的 根基 。 88 | 万 般 皆 下品 , 唯有 买房 高 , 正在 成为 事实 。 89 | 过剩 的 [@货币#Fin-Concept*] 涌入 [@金融 资产#Fin-Concept*] 中 , [@债市#Sector*] 、 [@股市#Sector*] 相继 迎来 [@牛市#Fin-Concept*] , 而 [@房地产 市场#Sector*] 也 大幅 扩张 。 90 | 作为 [@货币 超发#Fin-Concept*] 的 后果 之一 , 12年 以来 [@中国 居民#Person*] [@中长贷#Fin-Concept*] 爆发式 增长 , [@月 均 新增 额#Fin-Concept*] 从 12年 的 1120亿 元 飙升 至 16年 上半年 的 4379亿 元 。 91 | 因而 以往 [@去产能#Artifical*] 不但 力度 不 足 , 且 精力 较为 分散 。 92 | [@专家#Person*] 认为 , [@中国#Organization*] 发展 [@智能 制造#Artifical*] 也 需要 加强 平台 建设 , 让 [@行业#Fin-Concept*] 、 [@企业#Fin-Concept*] 、 [@科研 院所#Organization*] 等 各 方 广泛 参与 , 共同 谋划 如何 具体 落实 [@中国 制造 智能 升级#Fin-Concept*] 的 路线图 。 93 | [@期权 收盘 涨跌幅#Fin-Concept*] ( % ) [@成交量#Fin-Concept*] ( 手 ) 50ETF 2.3350-0.3495 02596 250ETF 购 3月 2.350.0089 - 27.0540 , 10950ETF 沽 3月 2.350.0254.1736,7424 [@外汇#Fin-Concept*] 与 [@大宗 商品#Artifical*] [@美元 指数#Fin-Concept*] 走弱 , [@工业品#Artifical*] 整体 回调 趋缓 ( [@张 磊#Person*] ) 今日 , [@美元 指数#Fin-Concept*] 走弱 , [@COMEX 黄金#Artifical*] [@价格#Fin-Concept*] 跌到 了 1200 附近 的 [@敏感 区域#Fin-Concept*] , 21点30 分公布 [@美国 非农 与 失业率#Artifical*] , [@市场#Fin-Concept*] 预期 20万 人 左右 。 94 | ( 6 ) [@财政 事务 预算数#Fin-Concept*] 为 14.81亿 元 , 比 2015年 [@执行数#Fin-Concept*] 增加 1.57亿 元 , 增长 11.9% 。 95 | 我们 认为 至少 应该 尝试 一下 , 看看 是否 有所 收获 。 ” 他 的 [@团队#Organization*] 所 设想 的 那 个 实验 , 最终 被 证明 对 搜索 至关 重要 : 即 文件 排名 与 搜索 请求 的 匹配 程度 有 多 高 。 96 | [@IMF#Organization*] 下调 [@16年 全球 经济 增速 预期#Fin-Concept*] 从 3.4%至3.2% , 上调 [@2016年 中国 经济 增速#Fin-Concept*] 预估 至 6.5% 。 97 | [@中欧 国际 工商 学院 副院长 张维烔#Person*] 表示 ,自 2015年 [@中央#Organization*] 明确 提出 着力 加强 [@供给侧 结构性 改革#Artifical*] 后 , 今年 已经 成为 [@供给侧 改革#Artifical*] 的 元年 。 98 | 和 [@微面#Artifical*] 相当 的 [@价格#Fin-Concept*] , 完全 不同 的 [@销售 模式#Fin-Concept*] , 想 分得 [@农村 消费 升级 市场#Sector*] 的 一杯羹 。 99 | 据 他 介绍 , 目前 [@临汾市#Location*] 有 [@焦化 企业#Organization*] 20余 家 。 100 | [@傅莹#Person*] : [@房地产税 立法#Fin-Concept*] 涉及 多方 利益 , 今年 没有 提请 审议 安排 [@澎湃 新闻 记者 范瑟#Person*] 来源 : [@澎湃 新闻#Organization*] 3月4日 , [@十二 届 全 国 人大 五 次 会议 新闻 发言人 傅莹#Person*] 表示 , “ 今年 没有 把 [@房地产税 草案#Artifical*] 提请 [@全 国 人大 常委会#Organization*] 审议 的 安排 。 ” 据 [@新华网#Organization*] 报道 , [@十二 届 全 国 人大 五 次 会议 首 场 新闻 发布会#Event-Past*] 于 3月4日 上午 11 时 举行 , [@大会 新闻 发言人 傅莹#Person*] 向 [@中外 媒体#Organization*] 介绍 本 次 [@大会#Event-Past*] 有关 情况 并 回答 [@记者#Person*] 提问 。 -------------------------------------------------------------------------------- /demotext/test.tex: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%% file typeinst.tex %%%%%%%%%%%%%%%%%%%%%%%%% 2 | \documentclass[runningheads,a4paper]{llncs} 3 | \usepackage{amssymb} 4 | \setcounter{tocdepth}{3} 5 | \usepackage{graphicx} 6 | \usepackage{multirow} 7 | \usepackage{subfigure} 8 | \usepackage{amsmath} 9 | \usepackage{CJK} 10 | \usepackage{color} 11 | \usepackage{xcolor} 12 | \usepackage{url} 13 | \begin{document} 14 | \begin{CJK*}{UTF8}{gbsn} 15 | \mainmatter % start of an individual contribution 16 | \title{Annotation Comparison Report} 17 | \author{SUTDNLP Group} 18 | \institute{Singapore University of Technology and Design} 19 | \maketitle 20 | 21 | \section{Overall Statistics} 22 | File1 color: \colorbox{blue!30}{Blue}; Dir: \colorbox{blue!30}{/Users/Jie/Dropbox/Research/SUTDAnnotator/demotext/UserB.ann}\\ 23 | File2 color: \colorbox{red!30}{Red}; Dir: \colorbox{red!30}{/Users/Jie/Dropbox/Research/SUTDAnnotator/demotext/UserA.ann}\\ 24 | \begin{table}[!htbp] 25 | \centering 26 | \caption{Statistics for two annotations, assume File1 as gold standard} 27 | \begin{tabular}{l|l|l} 28 | \hline 29 | P/R/F (\%)& Entity &Boundary\\ 30 | \hline 31 | Artifical& 50.0/74.36/59.79 &--\\ 32 | Event-Past& Nan/0.0/Nan &--\\ 33 | Fin-Concept& 68.07/57.36/62.26 &--\\ 34 | Location& 100.0/50.0/66.67 &--\\ 35 | Organization& 82.93/66.67/73.91 &--\\ 36 | Other& 44.44/57.14/50.0 &--\\ 37 | Person& 67.74/91.3/77.78 &--\\ 38 | Sector& 76.47/56.52/65.0 &--\\ 39 | \hline 40 | Overall& 66.36/61.96/64.08 &77.16/72.05/74.52\\ 41 | \hline 42 | \end{tabular} 43 | \end{table} 44 | \section{Detail Content Comparison} 45 | \colorbox{blue!30}{Blue}: only annotated in File1.\\ 46 | \colorbox{red!30}{Red}: only annotated in File2.\\ 47 | \colorbox{green!30}{Green}: annotated in both files.\\ 48 | \rule{5cm}{0.1em}\\ 49 | \vspace{0.3cm}\\ 50 | 来源:\colorbox{green!30}{阿尔法工厂}(ID:\colorbox{blue!30}{alpworks})\colorbox{red!30}{市场}普遍认为\colorbox{green!30}{美国房地产市场}将再次好转成为不错的\colorbox{green!30}{投资标的}。\\ 51 | 然而\colorbox{green!30}{大头}却再也没有在这座\colorbox{blue!30}{城市}买房,\colorbox{red!30}{言谈}也不再有当年那股傲劲,借朋友很多钱,座驾也从\colorbox{green!30}{宝马}变成了\colorbox{green!30}{桑塔纳},每天仍奔波在自己的创业之路中。\\ 52 | 具体来看,\colorbox{green!30}{李克强}提出在\colorbox{blue!30}{供给}方面,继续运用好\colorbox{green!30}{结构性减税}等手段,推动“\colorbox{green!30}{双创}”和“\colorbox{green!30}{中国制造2025}”、“\colorbox{green!30}{互联网+}”行动计划,促进\colorbox{green!30}{服务业}、\colorbox{green!30}{先进制造业}发展,扶持\colorbox{green!30}{小微企业}成长,发挥制度创新和技术进步对\colorbox{blue!30}{供给升级}的倍增效用,扩大有效供给。\\ 53 | 因此,需要进一步澄清的是,「非公开性」针对的是特定的「\colorbox{green!30}{私募产品}(项目)」不得进行公开的宣传,但并不禁止对\colorbox{green!30}{私募}的\colorbox{green!30}{发起人}(如\colorbox{green!30}{基金公司})、\colorbox{blue!30}{过往}\colorbox{green!30}{业绩}、\colorbox{green!30}{私募基金管理人}等进行公开宣传。\\ 54 | 建议\colorbox{red!30}{拓展}\colorbox{green!30}{前海蛇口自贸区}\colorbox{blue!30}{离岸账户}(\colorbox{blue!30}{OSA})功能\colorbox{green!30}{马蔚华}在《\colorbox{green!30}{关于推进前海蛇口自贸区金融改革的提案}》中表示,\colorbox{green!30}{前海蛇口自贸区金融改革}做了一系列有益探索,取得了很大进展。\\ 55 | 根据\colorbox{green!30}{通货膨胀}的定义,\colorbox{green!30}{通货膨胀}是\colorbox{green!30}{货币}\colorbox{blue!30}{过多发行}所造成的\colorbox{green!30}{物价}全面上涨,“现在还很难说\colorbox{green!30}{物价}全面上涨。”\colorbox{green!30}{张世贤}的判断不无道理。\\ 56 | \colorbox{green!30}{中金公司}维持2016年\colorbox{green!30}{CPI}为1.9%的预测不变。\\ 57 | \colorbox{green!30}{交通银行金研中心}:下半年\colorbox{green!30}{财政政策}积极\colorbox{green!30}{货币政策}宽松\colorbox{green!30}{晨报记者刘志飞交通银行金融研究中心}昨日发布的\colorbox{green!30}{下半年展望报告}认为,下半年,我国积极\colorbox{green!30}{财政政策}将继续发力,发挥对\colorbox{red!30}{稳增长}的关键作用。\\ 58 | 今年反复出现这个事情,跟\colorbox{green!30}{QE}没有什么关系,\colorbox{green!30}{地方债}是纳入是\colorbox{green!30}{全球央行}的一个普遍的实践,就是扩大到\colorbox{blue!30}{试点},将来可能要扩大到全国去,这是必然的过程。\\ 59 | \colorbox{green!30}{贸易商}低价出货后发现得从\colorbox{green!30}{钢厂}高价补货,午后部分\colorbox{green!30}{钢厂封盘停售}再次拉涨\colorbox{green!30}{现货}。\\ 60 | 还有一个更有利的因素,\colorbox{green!30}{铜期货}近月\colorbox{green!30}{合约限仓}为1500吨,而该\colorbox{green!30}{现货电子盘}却\colorbox{green!30}{限仓}为20000吨,相对来说“战场空间”更充裕,更有利于打一场大决战。\\ 61 | 这些\colorbox{blue!30}{动能}的逐步释放会使\colorbox{green!30}{经济}保持中高速增长。\\ 62 | 他还特别强调,其实\colorbox{blue!30}{中国}一直在进行的\colorbox{green!30}{体制改革}等都属于\colorbox{green!30}{供给侧改革},此次是对此类型\colorbox{green!30}{改革}进行的一次总结和归纳,并形成统一提法。\\ 63 | 自\colorbox{green!30}{政府工作报告}首提“淘汰、停建、缓建\colorbox{blue!30}{煤电产能}5000万千瓦以上,以防范化解\colorbox{green!30}{煤电产能过剩}\colorbox{blue!30}{风险},提高\colorbox{green!30}{煤电行业效率},为\colorbox{green!30}{清洁能源发展}腾空间”,\colorbox{red!30}{发改委主任}再提\colorbox{blue!30}{煤电去产能},我们认为\colorbox{green!30}{煤电产能过剩}\colorbox{blue!30}{状况}已引起\colorbox{red!30}{高层}足够重视,且考虑到环保渐趋严格,\colorbox{red!30}{后期}\colorbox{green!30}{煤电产能去化推进力度}或超预期,从而为\colorbox{green!30}{清洁能源}提供良好的发展机遇,相关\colorbox{blue!30}{标的}有\colorbox{green!30}{大唐发电}。\\ 64 | 要真正实现\colorbox{blue!30}{新旧产业更替},必须使\colorbox{green!30}{市场机制}真正在\colorbox{green!30}{资源配置}中发挥决定性作用,加快出清\colorbox{green!30}{僵尸企业},为\colorbox{green!30}{新产业}和\colorbox{green!30}{新动能}腾挪空间。\\ 65 | \colorbox{blue!30}{电力}:1月\colorbox{blue!30}{发电耗煤同比跌幅}扩大,预示\colorbox{green!30}{工业经济}或开局不佳。\\ 66 | 要继续深化\colorbox{green!30}{金融改革},协调推进\colorbox{green!30}{利率}、\colorbox{green!30}{汇率}\colorbox{red!30}{改革}和\colorbox{green!30}{资本账户}开放。\\ 67 | 后者则指\colorbox{green!30}{期权}的买方(权利方)有权在约定时间以约定价格将一定数量的\colorbox{green!30}{标的资产}卖给\colorbox{green!30}{期权}的卖方(义务方),买方享有\colorbox{blue!30}{卖出选择权}。\\ 68 | \colorbox{green!30}{陆家嘴金融}微信号:\colorbox{blue!30}{FinanceLJZ}▲长按二维码“识别”关注推荐理由:助您洞悉\colorbox{green!30}{金融趋势},发现\colorbox{green!30}{投资机遇}!\\ 69 | 三、促进\colorbox{blue!30}{结构调整},化解\colorbox{blue!30}{过剩产能}为促进\colorbox{blue!30}{结构调整},化解\colorbox{blue!30}{过剩产能},\colorbox{blue!30}{国家}利用部分\colorbox{green!30}{电价}\colorbox{blue!30}{降价空间}设立\colorbox{green!30}{工业企业结构调整专项资金},支持地方在淘汰\colorbox{green!30}{煤炭}、\colorbox{green!30}{钢铁行业}\colorbox{blue!30}{落后产能}中安置\colorbox{blue!30}{下岗}\colorbox{green!30}{失业人员}等。\\ 70 | \colorbox{green!30}{赵辰昕}说:“为做好\colorbox{blue!30}{全年经济社会发展工作},我\colorbox{blue!30}{委}和各\colorbox{blue!30}{部门}各\colorbox{blue!30}{地方}还将不断调整充实\colorbox{blue!30}{政策工具箱},按照\colorbox{green!30}{党中央国务院}的\colorbox{blue!30}{决策部署},适度扩大\colorbox{blue!30}{总需求},以\colorbox{green!30}{供给侧结构性改革}为主线,及时推出务实管用的政策措施,并切实抓好执行和落实,引导好发展预期,确保\colorbox{blue!30}{经济}运行在合理区间。”\colorbox{green!30}{去产能}:年底要一一盘点交账\colorbox{blue!30}{去产能}被排在今年\colorbox{green!30}{供给侧结构性改革}五大任务之首,\colorbox{green!30}{钢铁}和\colorbox{green!30}{煤炭行业}尤其是关键。\\ 71 | 还有一头,\colorbox{green!30}{税收领域}一个月1万收入的人,不知不觉需要缴纳6600的\colorbox{green!30}{税费}。\\ 72 | 另外,11月17日,\colorbox{green!30}{新加坡RQFII额度}扩大至1000亿元人民币,较之前增加500亿元。\\ 73 | 就\colorbox{blue!30}{公共部门}而言,虽然从国际比较来看,我国\colorbox{green!30}{政府债务率}并不高,但以如此快的速度\colorbox{green!30}{加杠杆}将大大\colorbox{blue!30}{透支}\colorbox{red!30}{未来}\colorbox{green!30}{财政政策}的操作空间,也很容易陷入\colorbox{red!30}{发达国家}那样的\colorbox{green!30}{财政}\colorbox{red!30}{困境},带来很多长期隐患。\\ 74 | \colorbox{green!30}{铁物资}、\colorbox{green!30}{东北特钢}等信用违约事件频发,对\colorbox{blue!30}{企业}\colorbox{green!30}{融资成本}、借新还旧、\colorbox{green!30}{金融}\colorbox{blue!30}{稳定}、\colorbox{green!30}{风险溢价}等产生负面传染效应,\colorbox{green!30}{P2P}各种跑路,\colorbox{green!30}{金融风险防范压力}加大。\\ 75 | \colorbox{green!30}{上海证券分析师胡月晓}表示,\colorbox{green!30}{PPI}持续改善,\colorbox{green!30}{环比}继续大幅明显上涨,超出\colorbox{green!30}{市场预期}。\\ 76 | 6.5%的\colorbox{green!30}{经济增速目标}对当前体量规模的\colorbox{green!30}{中国经济}较为适宜的,并且不难达成。\\ 77 | 当事实落地的时候\colorbox{green!30}{交易}的预期在发生转变,从\colorbox{green!30}{交易}的行为上来看,马上出现的是\colorbox{green!30}{平仓}的一个行为,典型的“买预期、卖事实”——当事实落地的时候\colorbox{red!30}{交易}的预期在发生转变。\\ 78 | \colorbox{green!30}{国家统计局新闻发言人盛来运}表示,当前\colorbox{green!30}{供给侧结构性改革}取得积极进展,新的\colorbox{blue!30}{动能}在加快成长,因此“稳”的基础有所加强。\\ 79 | 往往\colorbox{green!30}{新兴行业},\colorbox{green!30}{利润}没有放出来,有的是还没有成熟的产品。\\ 80 | 2010年和2015年两次\colorbox{blue!30}{大涨}之间,经历了几次\colorbox{blue!30}{紧就跌松反弹},最后呈现大松大涨的局面。\\ 81 | 值得一提的是,去年\colorbox{green!30}{吉林省经济}\colorbox{blue!30}{增速}逐步上升:一、二、三季度的\colorbox{green!30}{GDP}\colorbox{blue!30}{增速}分别为6.2%、6.7%、6.9%。\\ 82 | 2015年12月,PMI为49.7%,高于上月0.1个百分点;非制造业商务活动指数为54.4%,比上月上升0.8个百分点,升至2015年以来的高点。\\ 83 | 有问题,对孩子一样的,该说也要说,直接说直接讲。\\ 84 | 核心原因是:(1)在风险监管及金融体制改革背景下,投资者风险偏好提升空间较为有限;(2)IPO开闸带来的新兴板块标的稀缺性缺失,使得估值提升空间有限。\\ 85 | 除对2016年全球经济增长预测外,科法斯还发布了最新国家风险评级调整名单(参见图表)。\\ 86 | 在投资及生活领域,坦伯顿深信绝对不要追随群众,而应逆势操作(Dontfollowthecrowd)的理念,他独具慧眼的前瞻视野,以及严谨的研究精神,将其终生成就臻至巅峰。\\ 87 | 其中,实物商品网上零售额21239亿元,增长26.1%,占社会消费品零售总额的比重为11.6%;在实物商品网上零售额中,吃、穿和用类商品分别增长30.8%、17.3%和29.4%。\\ 88 | 考虑到页岩油的威胁,意味着当前油价反弹很难突破50-60美元的天花板。\\ 89 | 风投从业者的性格一般都是怎样的?\\ 90 | 房地产回暖提供安全垫中国货币政策将呈现中性尽管没有降准降息等大规模货币政策出台,中国的货币市场利率总体平稳,并保持低位运行。\\ 91 | 而需求回暖、毛利可观,令生产依然旺盛。\\ 92 |   甘肃的棚改货币化安置率已高于全国水平。\\ 93 | 我们筛选出过去三年业绩亏损或者归属于母公司净利润大幅下降的标的公司;此外,大股东持股比例也是很重要的标准,第一大股东持股比例超过50%,有绝对控制权。\\ 94 | 因而,在金融监管的过程中,实体经济大概率也将被波及,进一步增加需求端的下行风险。\\ 95 | 写在前面的话by木头老师这一系列的内容是我按照《万物简史》这本书的知识脉络来讲的,涉及的内容非常广泛,从宇宙到恐龙,从黑洞到相对论,都是孩子们非常好奇的知识。\\ 96 | 总体上,发布会发言要点如下:1改革和稳定是相辅相成的。\\ 97 | 甘肃省住房和城乡建设厅一位工作人员介绍,2015年以来,甘肃省共有2.85万户棚改对象,通过货币化得到安置,货币化安置率为31%,高于全国同期水平5.6个百分点。\\ 98 | 目前三大股东分别为中油资产管理有限公司、天津经济技术开发区国有资产经营公司、广博投资控股有限公司,分别持股82.18%、12.82%和5%。\\ 99 | 农谚说:“春分麦起身,一刻值千金。”这时我国大部分地区越冬作物进入春季生长阶段,春耕、春种将进入繁忙阶段。\\ 100 | 上述债券基金经理表示,如果消息持续发酵,不少机构会出现跟风现象,届时就真的变成第二次“钱荒”。\\ 101 | 基金经理“一拖多”,表面上只是基金经理数量跟不上产品数量,实际上反映了诸多问题。\\ 102 | 6月经销商库存系数升至1.55,再度转差且仍高于警戒线,表明终端需求改善较为有限,厂家销量转化为经销商库存。\\ 103 | 研报受到“最大回撤”这一思想的启发,认为可以通过回撤来衡量股指期货价格序列的平稳度,进而判断今日行情的走势。\\ 104 | 供给侧改革将继续推进这些具体改革的前进。\\ 105 | 业主:水牛城与福特艾瑞公共桥梁署电话:1(716)884-674428、MBTAGreenLineExtension,Boston波士顿绿线地铁扩展项目,总投资30亿美元项目简介:该项目计划扩建波士顿绿线地铁,延长线全长6.9公里,项目正在审批中。\\ 106 | 一大早\colorbox{red!30}{美图}的\colorbox{red!30}{创始人之一蔡总}就在\colorbox{red!30}{朋友圈}里不断地直播着\colorbox{red!30}{美图奇迹}:下午2点左右\colorbox{red!30}{市值}900亿的\colorbox{red!30}{美图市值}出现,很显然\colorbox{red!30}{蔡老板}很兴奋;然后。\\ 107 | 对于\colorbox{red!30}{市场}关注的\colorbox{green!30}{房地产税},\colorbox{green!30}{盛松成}认为由于\colorbox{green!30}{房地产税}设计复杂,几年内很难推出。\\ 108 | 建议根据自身的\colorbox{green!30}{财富保值}、\colorbox{green!30}{增值需求},合理运用\colorbox{green!30}{保险}、\colorbox{green!30}{保险金信托}或\colorbox{green!30}{家族信托}等方式化解自身及子女\colorbox{green!30}{婚姻风险}带来的\colorbox{green!30}{财富缩水}。\\ 109 | 两年里面一块土地也不出,\colorbox{red!30}{市场}不就恢复到8点,还是严重供过于求,不供地有什么问题?\\ 110 | “\colorbox{green!30}{非制造业},特别是\colorbox{green!30}{服务业}近两年总体保持了较快\colorbox{red!30}{增速},这与\colorbox{green!30}{中国经济结构持续优化}密切相关。\\ 111 | 要有人文关怀,带着感情,将心比心,设身处地为他们着想,既帮他们解决好生活困难,又助他们提高\colorbox{green!30}{再就业能力}。\\ 112 | 想要创业,一定要有一颗强大的内心,\colorbox{red!30}{创业}一定会遇到挫折。\\ 113 | 做好\colorbox{green!30}{明年经济工作},就是要把思想和行动统一到\colorbox{green!30}{中央}的思路和方法上来,服从和服务于大局,下好全国一盘棋,全面做好\colorbox{red!30}{稳增长}、\colorbox{red!30}{促}\colorbox{green!30}{改革}、\colorbox{red!30}{调结构}、\colorbox{red!30}{惠}\colorbox{green!30}{民生}、\colorbox{red!30}{防}\colorbox{green!30}{风险}各项工作。\\ 114 | 同时,大幅提升\colorbox{green!30}{制造业}的\colorbox{green!30}{研发投资强度},改变我国在\colorbox{red!30}{国际分工}中的不利地位。\\ 115 | 如果是这样的模式,那么拿到\colorbox{green!30}{不良贷款}的\colorbox{green!30}{资产管理公司}就可把\colorbox{red!30}{部分}\colorbox{green!30}{贷款}转换成\colorbox{green!30}{股权},这样也不一定就是糟糕的做法,或许这是应对某\colorbox{red!30}{具体}\colorbox{green!30}{贷款}的适当举措。\\ 116 | 二者均有助于缓和\colorbox{green!30}{企业部门资产质量}\colorbox{red!30}{恶化}、放缓\colorbox{green!30}{不良贷款生成速度}。\\ 117 | \colorbox{green!30}{李迅雷}:从\colorbox{green!30}{国家统计局}公布的\colorbox{green!30}{数据}来看,\colorbox{green!30}{经济增速}整体平稳,6月份的\colorbox{green!30}{工业增加值增速}有所回升,这个\colorbox{green!30}{数据}比预期的要好一些,这可能有\colorbox{red!30}{一季度}\colorbox{green!30}{投资}\colorbox{red!30}{回升}后的\colorbox{green!30}{滞后效应}。\\ 118 | 这个非常重要,\colorbox{green!30}{实体经济}是\colorbox{green!30}{经济发展}的根基。\\ 119 | 万般皆下品,唯有买房高,正在成为事实。\\ 120 | 过剩的\colorbox{green!30}{货币}涌入\colorbox{green!30}{金融资产}中,\colorbox{green!30}{债市}、\colorbox{green!30}{股市}相继迎来\colorbox{green!30}{牛市},而\colorbox{green!30}{房地产市场}也大幅扩张。\\ 121 | 作为\colorbox{green!30}{货币超发}的后果之一,12年以来\colorbox{green!30}{中国居民中长贷}爆发式增长,\colorbox{green!30}{月均新增额}从12年的1120亿元飙升至16年上半年的4379亿元。\\ 122 | 因而以往\colorbox{green!30}{去产能}不但力度不足,且精力较为分散。\\ 123 | \colorbox{green!30}{专家}认为,\colorbox{green!30}{中国}发展\colorbox{green!30}{智能制造}也需要加强\colorbox{green!30}{平台建设},让\colorbox{green!30}{行业}、\colorbox{green!30}{企业}、\colorbox{green!30}{科研院所}等各方广泛参与,共同谋划如何具体落实\colorbox{green!30}{中国制造}\colorbox{red!30}{智能升级}的\colorbox{red!30}{路线图}。\\ 124 | \colorbox{green!30}{期权收盘涨跌幅}(%)\colorbox{green!30}{成交量}(手)50ETF2.3350-0.349502596250ETF购3月2.350.0089-27.0540,10950ETF沽3月2.350.0254.1736,7424\colorbox{green!30}{外汇}与\colorbox{green!30}{大宗商品美元指数}走弱,\colorbox{green!30}{工业品}\colorbox{blue!30}{整体回调}趋缓(\colorbox{red!30}{张磊})今日,\colorbox{green!30}{美元指数}走弱,\colorbox{green!30}{COMEX黄金价格}跌到了1200附近的敏感区域,21点30分公布\colorbox{green!30}{美国非农}与\colorbox{green!30}{失业率},\colorbox{red!30}{市场}预期20万人左右。\\ 125 | (6)\colorbox{green!30}{财政事务预算数}为14.81亿元,比2015年\colorbox{green!30}{执行数}增加1.57亿元,增长11.9%。\\ 126 | 我们认为至少应该尝试一下,看看是否有所收获。”他的\colorbox{green!30}{团队}所设想的那个实验,最终被证明对搜索至关重要:即文件排名与搜索请求的匹配程度有多高。\\ 127 | \colorbox{green!30}{IMF}下调\colorbox{green!30}{16年全球经济增速预期}从3.4%至3.2%,上调\colorbox{green!30}{2016年中国经济增速预估}至6.5%。\\ 128 | \colorbox{green!30}{中欧国际工商学院副院长张维烔}表示,自2015年\colorbox{green!30}{中央}明确提出着力加强\colorbox{green!30}{供给侧结构性改革}后,今年已经成为\colorbox{green!30}{供给侧改革}的元年。\\ 129 | 和\colorbox{green!30}{微面}相当的\colorbox{red!30}{价格},完全不同的\colorbox{green!30}{销售模式},想分得\colorbox{green!30}{农村消费升级市场}的一杯羹。\\ 130 | 据他介绍,目前\colorbox{green!30}{临汾市}有\colorbox{green!30}{焦化企业}20余家。\\ 131 | \colorbox{green!30}{傅莹}:\colorbox{green!30}{房地产税立法}涉及多方利益,今年没有提请审议安排\colorbox{green!30}{澎湃新闻记者范瑟}来源:\colorbox{green!30}{澎湃新闻}3月4日,\colorbox{green!30}{十二届全国人大五次会议新闻发言人傅莹}表示,“今年没有把\colorbox{green!30}{房地产税草案}提请\colorbox{green!30}{全国人大常委会}审议的安排。”据\colorbox{green!30}{新华网}报道,\colorbox{green!30}{十二届全国人大五次会议首场新闻发布会}于3月4日上午11时举行,\colorbox{green!30}{大会新闻发言人傅莹}向\colorbox{green!30}{中外媒体}介绍本次\colorbox{blue!30}{大会}有关情况并回答\colorbox{blue!30}{记者}提问。\\ 132 | \end{CJK*} 133 | \end{document} 134 | -------------------------------------------------------------------------------- /detailReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophonPlus/ChineseAnnotator/d24f72da083553e3ce294540ff226eb3ff210c9d/detailReport.png -------------------------------------------------------------------------------- /resultMatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophonPlus/ChineseAnnotator/d24f72da083553e3ce294540ff226eb3ff210c9d/resultMatrix.png -------------------------------------------------------------------------------- /tex2pdf/eng.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {title}{Annotation Comparison Report}{1}} 3 | \@writefile{toc}{\authcount {1}} 4 | \@writefile{toc}{\contentsline {author}{SUTDNLP Group}{1}} 5 | \@writefile{toc}{\contentsline {section}{\numberline {1}Overall Statistics}{1}} 6 | \@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Statistics for two annotations, assume File1 as gold standard}}{1}} 7 | \@writefile{toc}{\contentsline {section}{\numberline {2}Detail Content Comparison}{1}} 8 | -------------------------------------------------------------------------------- /tex2pdf/eng.fdb_latexmk: -------------------------------------------------------------------------------- 1 | # Fdb version 3 2 | ["pdflatex"] 1505999228 "eng.tex" "eng.pdf" "eng" 1505999229 3 | "/usr/local/texlive/2014/texmf-dist/fonts/map/fontname/texfonts.map" 1272929888 3287 e6b82fe08f5336d4d5ebc73fb1152e87 "" 4 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm" 1246382020 1004 54797486969f23fa377b128694d548df "" 5 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm" 1246382020 996 a18840b13b499c08ac2de96a99eda4bc "" 6 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm" 1246382020 916 f87d7c45f9c908e672703b83b72241a3 "" 7 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam5.tfm" 1246382020 924 9904cf1d39e9767e7a3622f2a125a565 "" 8 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm" 1246382020 928 2dc8d444221b7a635bb58038579b861a "" 9 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm" 1246382020 908 2921f8a10601f252058503cc6570e581 "" 10 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm5.tfm" 1246382020 940 75ac932a52f80982a9f8ea75d03a34cf "" 11 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm" 1246382020 940 228d6584342e91276bf566bcf9716b83 "" 12 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm" 1136768653 1324 c910af8c371558dc20f2d7822f66fe64 "" 13 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmbx9.tfm" 1136768653 1328 5442e22a7072966dbaf88ca900acf3f0 "" 14 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm" 1136768653 1512 f21f83efb36853c0b70002322c1ab3ad "" 15 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmmi9.tfm" 1136768653 1524 d89e2d087a9828407a196f428428ef4a "" 16 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr12.tfm" 1136768653 1288 655e228510b4c2a1abe905c368440826 "" 17 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr6.tfm" 1136768653 1300 b62933e007d01cfd073f79b963c01526 "" 18 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr9.tfm" 1136768653 1292 6b21b9c2c7bebb38aa2273f7ca0fb3af "" 19 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm" 1136768653 1116 933a60c408fc0a863a92debe84b2d294 "" 20 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmsy9.tfm" 1136768653 1116 25a7bf822c58caf309a702ef79f4afbb "" 21 | "/usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb" 1248133631 32080 340ef9bf63678554ee606688e7b5339d "" 22 | "/usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb" 1248133631 32298 c6d25bb16d1eac01ebdc6d7084126a1e "" 23 | "/usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb" 1248133631 35752 024fb6c41858982481f6968b5fc26508 "" 24 | "/usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb" 1248133631 33993 9b89b85fd2d9df0482bd47194d1d3bf3 "" 25 | "/usr/local/texlive/2014/texmf-dist/tex/context/base/supp-pdf.mkii" 1337017135 71627 94eb9990bed73c364d7f53f960cc8c5b "" 26 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/etexcmds.sty" 1335995445 7612 c47308d923ec19888707b0f1792b326a "" 27 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifluatex.sty" 1303254447 7324 11d14f318d865f420e692d4e6c9c18c3 "" 28 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifpdf.sty" 1303254447 7140 ece2cc23d9f20e1f53975ac167f42d3e "" 29 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/infwarerr.sty" 1335995445 8253 3bdedc8409aa5d290a2339be6f09af03 "" 30 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty" 1335995445 5152 387d9200f396b498d5fd679ae44ed898 "" 31 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty" 1335995445 14040 8de9f47fabc4ca3bd69b6d795e32751c "" 32 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ltxcmds.sty" 1335995445 18425 775b341047ce304520cc7c11ca41392e "" 33 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty" 1335995445 19987 01cb2f3c1d21e5f05711b7fd50b17f2a "" 34 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amsfonts.sty" 1359763108 5949 3f3fd50a8cc94c3d4cbf4fc66cd3df1c "" 35 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amssymb.sty" 1359763108 13829 94730e64147574077f8ecfea9bb69af4 "" 36 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsa.fd" 1359763108 961 6518c6525a34feb5e8250ffa91731cff "" 37 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsb.fd" 1359763108 961 d02606146ba5601b5645f987c92e6193 "" 38 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsbsy.sty" 1362954379 2412 2d98314dc5be38f455f8890deeb2d091 "" 39 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsgen.sty" 1362954379 4357 ad30ad08920902fc9b38caf35a3b0496 "" 40 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsmath.sty" 1362954379 79178 b2e326c351e876df0e5e23df2e02441b "" 41 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsopn.sty" 1362954379 4082 502152465aedb8f6a3c4b0b7c0fa8ae5 "" 42 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amstext.sty" 1362954379 2637 846ebe982d3549c7ede7ce135456f54a "" 43 | "/usr/local/texlive/2014/texmf-dist/tex/latex/base/article.cls" 1399675188 20496 66dd832c447553f6776fbeac03bb0580 "" 44 | "/usr/local/texlive/2014/texmf-dist/tex/latex/base/size10.clo" 1399675188 8967 546f1b177fd18efd7ad74d77a7bdac64 "" 45 | "/usr/local/texlive/2014/texmf-dist/tex/latex/carlisle/remreset.sty" 1137109962 1096 6a75275ca00e32428c6f059d2f618ea7 "" 46 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/CJK.enc" 1336691841 29591 eefa7fcd8dc7ed51469bfefaa126930d "" 47 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/CJK.sty" 1336691841 32687 3257b1bf971cec202cb9f439e19313c1 "" 48 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.bdg" 1336691841 3857 db8148d88918b04ce88d70aef60c0926 "" 49 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.chr" 1336691841 8601 56f62306bc1b77b1b81ae95c1fe14da5 "" 50 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.enc" 1336691841 6111 e18ff346b9609ac3fe218452ae362309 "" 51 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty" 1336691841 12177 35bc847718d10d70afa824372bc56b9b "" 52 | "/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/color.sty" 1399675188 6559 34a083f539c61168227e1ad844684e63 "" 53 | "/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphics.sty" 1254151804 14183 42a8fc761b806986eef292369afc2988 "" 54 | "/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphicx.sty" 1399675188 7911 bf0a64f89bfb668c239ddf6324bf4afb "" 55 | "/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/keyval.sty" 1399675188 2317 0ace13e225e9d95dd9defe947adc9fbb "" 56 | "/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/trig.sty" 1156702488 3153 c50e6bd54d2dd3933fc52bcf369bec4a "" 57 | "/usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/color.cfg" 1254097189 802 7b8c8d72c24d795ed7720e4dfd29bff3 "" 58 | "/usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1279039959 678 4792914a8f45be57bb98413425e4c7af "" 59 | "/usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/graphics.cfg" 1278958963 3563 d35e897cae3b8c6848f6677b73370b54 "" 60 | "/usr/local/texlive/2014/texmf-dist/tex/latex/multirow/multirow.sty" 1137110401 7374 f7c1f13fc632dd5c9b220a247d233082 "" 61 | "/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/aliascnt.sty" 1335995445 2511 8ef653ad0c83209793c35dc808929370 "" 62 | "/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty" 1303254447 12029 04d7fdf76e0464c23b5aa3a727952d7c "" 63 | "/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/grfext.sty" 1335995445 7075 bd0c34fbf1ae8fd1debd2a554e41b2d5 "" 64 | "/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/kvoptions.sty" 1335995445 22417 c74ff4af6a1aa2b65d1924020edbbe11 "" 65 | "/usr/local/texlive/2014/texmf-dist/tex/latex/pdftex-def/pdftex.def" 1306616590 55368 3c8a0d99822330f2dfabc0dfb09ce897 "" 66 | "/usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.cfg" 1167176009 2062 a0e7d66e09e508f51289a656aec06ed2 "" 67 | "/usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.sty" 1167176009 15188 91281c7ddbccfa54a8e0c3b56ab5aa72 "" 68 | "/usr/local/texlive/2014/texmf-dist/tex/latex/tools/multicol.sty" 1399675188 29193 08a2f6b9e76c544040f9143397c0d6dc "" 69 | "/usr/local/texlive/2014/texmf-dist/tex/latex/url/url.sty" 1388531844 12796 8edb7d69a20b857904dd0ea757c14ec9 "" 70 | "/usr/local/texlive/2014/texmf-dist/tex/latex/xcolor/xcolor.sty" 1169481954 55224 a43bab84e0ac5e6efcaf9a98bde73a94 "" 71 | "/usr/local/texlive/2014/texmf-dist/web2c/texmf.cnf" 1398200874 31722 4f52421e59a4b9e910cf18e64c1f2b4a "" 72 | "/usr/local/texlive/2014/texmf-var/fonts/map/pdftex/updmap/pdftex.map" 1401025944 1445653 26a0aacf3d70032b1ec192e8c7792117 "" 73 | "/usr/local/texlive/2014/texmf-var/web2c/pdftex/pdflatex.fmt" 1414992882 3832012 194c4db574515d58e6b0f573631d9cc2 "" 74 | "/usr/local/texlive/2014/texmf.cnf" 1401025936 577 a59edbde8d3a8c549d0eeaab1739e2ff "" 75 | "eng.aux" 1505999229 477 6045205284688e9a6c58790953019c51 "" 76 | "eng.tex" 1505999226 9258 5453aa181950197f26d4bfb05d628a21 "" 77 | "llncs.cls" 1458498458 41688 65f2552e476e2e54b95289f3e5fe5bf6 "" 78 | (generated) 79 | "eng.log" 80 | "eng.pdf" 81 | "eng.aux" 82 | -------------------------------------------------------------------------------- /tex2pdf/eng.fls: -------------------------------------------------------------------------------- 1 | PWD /Users/Jie/Dropbox/research/SUTDAnnotator/tex2pdf 2 | INPUT /usr/local/texlive/2014/texmf.cnf 3 | INPUT /usr/local/texlive/2014/texmf-dist/web2c/texmf.cnf 4 | INPUT /usr/local/texlive/2014/texmf-var/web2c/pdftex/pdflatex.fmt 5 | INPUT eng.tex 6 | OUTPUT eng.log 7 | INPUT llncs.cls 8 | INPUT llncs.cls 9 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/base/article.cls 10 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/base/article.cls 11 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/base/size10.clo 12 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/base/size10.clo 13 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/tools/multicol.sty 14 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/tools/multicol.sty 15 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/aliascnt.sty 16 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/aliascnt.sty 17 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/carlisle/remreset.sty 18 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/carlisle/remreset.sty 19 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amssymb.sty 20 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amssymb.sty 21 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amsfonts.sty 22 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amsfonts.sty 23 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphicx.sty 24 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphicx.sty 25 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/keyval.sty 26 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/keyval.sty 27 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphics.sty 28 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphics.sty 29 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/trig.sty 30 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/trig.sty 31 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/graphics.cfg 32 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/graphics.cfg 33 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/pdftex-def/pdftex.def 34 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/pdftex-def/pdftex.def 35 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/infwarerr.sty 36 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/infwarerr.sty 37 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ltxcmds.sty 38 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ltxcmds.sty 39 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/multirow/multirow.sty 40 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/multirow/multirow.sty 41 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.sty 42 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.sty 43 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.cfg 44 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.cfg 45 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsmath.sty 46 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsmath.sty 47 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amstext.sty 48 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amstext.sty 49 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsgen.sty 50 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsgen.sty 51 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsbsy.sty 52 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsbsy.sty 53 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsopn.sty 54 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsopn.sty 55 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/CJK.sty 56 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/CJK.sty 57 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 58 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 59 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/CJK.enc 60 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/color.sty 61 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/color.sty 62 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/color.cfg 63 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/color.cfg 64 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/xcolor/xcolor.sty 65 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/xcolor/xcolor.sty 66 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/color.cfg 67 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/color.cfg 68 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/url/url.sty 69 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/url/url.sty 70 | INPUT eng.aux 71 | INPUT eng.aux 72 | OUTPUT eng.aux 73 | INPUT /usr/local/texlive/2014/texmf-dist/tex/context/base/supp-pdf.mkii 74 | INPUT /usr/local/texlive/2014/texmf-dist/tex/context/base/supp-pdf.mkii 75 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty 76 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty 77 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifluatex.sty 78 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifluatex.sty 79 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifpdf.sty 80 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifpdf.sty 81 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty 82 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty 83 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/grfext.sty 84 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/grfext.sty 85 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty 86 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty 87 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/kvoptions.sty 88 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/kvoptions.sty 89 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty 90 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty 91 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/etexcmds.sty 92 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/etexcmds.sty 93 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg 94 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg 95 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.bdg 96 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.enc 97 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.chr 98 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/map/fontname/texfonts.map 99 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/map/fontname/texfonts.map 100 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr12.tfm 101 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm 102 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm 103 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm 104 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsa.fd 105 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsa.fd 106 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm 107 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm 108 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam5.tfm 109 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsb.fd 110 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsb.fd 111 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm 112 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm 113 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm5.tfm 114 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr9.tfm 115 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr12.tfm 116 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm 117 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmbx9.tfm 118 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr6.tfm 119 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmmi9.tfm 120 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm 121 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmsy9.tfm 122 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm 123 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm 124 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm 125 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm 126 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm 127 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm 128 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm 129 | OUTPUT eng.pdf 130 | INPUT /usr/local/texlive/2014/texmf-var/fonts/map/pdftex/updmap/pdftex.map 131 | INPUT eng.aux 132 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb 133 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb 134 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb 135 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb 136 | -------------------------------------------------------------------------------- /tex2pdf/eng.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophonPlus/ChineseAnnotator/d24f72da083553e3ce294540ff226eb3ff210c9d/tex2pdf/eng.pdf -------------------------------------------------------------------------------- /tex2pdf/eng.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophonPlus/ChineseAnnotator/d24f72da083553e3ce294540ff226eb3ff210c9d/tex2pdf/eng.synctex.gz -------------------------------------------------------------------------------- /tex2pdf/eng.tex: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%% file typeinst.tex %%%%%%%%%%%%%%%%%%%%%%%%% 2 | \documentclass[runningheads,a4paper]{llncs} 3 | \usepackage{amssymb} 4 | \setcounter{tocdepth}{3} 5 | \usepackage{graphicx} 6 | \usepackage{multirow} 7 | \usepackage{subfigure} 8 | \usepackage{amsmath} 9 | \usepackage{CJK} 10 | \usepackage{color} 11 | \usepackage{xcolor} 12 | \usepackage{url} 13 | \begin{document} 14 | \begin{CJK*}{UTF8}{gbsn} 15 | \mainmatter % start of an individual contribution 16 | \title{Annotation Comparison Report} 17 | \author{SUTDNLP Group} 18 | \institute{Singapore University of Technology and Design} 19 | \maketitle 20 | 21 | \section{Overall Statistics} 22 | File1 color: \colorbox{blue!30}{Blue}; Dir: \colorbox{blue!30}{../demotext/EnglishUserA.txt.ann}\\ 23 | File2 color: \colorbox{red!30}{Red}; Dir: \colorbox{red!30}{../demotext/EnglishUserB.txt.ann}\\ 24 | \begin{table}[!htbp] 25 | \centering 26 | \caption{Statistics for two annotations, assume File1 as gold standard} 27 | \begin{tabular}{l|l|l} 28 | \hline 29 | P/R/F (\%)& Entity &Boundary\\ 30 | \hline 31 | Artifical& 74.36/50.0/59.79 &--\\ 32 | Event& Nan/0.0/Nan &--\\ 33 | Fin-Concept& 57.36/68.07/62.26 &--\\ 34 | Location& 50.0/100.0/66.67 &--\\ 35 | Organization& 66.67/82.93/73.91 &--\\ 36 | Other& 57.14/44.44/50.0 &--\\ 37 | Person& 91.3/67.74/77.78 &--\\ 38 | Sector& 56.52/76.47/65.0 &--\\ 39 | \hline 40 | Overall& 61.96/66.36/64.08 &72.05/77.16/74.52\\ 41 | \hline 42 | \end{tabular} 43 | \end{table} 44 | \section{Detail Content Comparison} 45 | \colorbox{blue!30}{Blue}: only annotated in File1.\\ 46 | \colorbox{red!30}{Red}: only annotated in File2.\\ 47 | \colorbox{green!30}{Green}: annotated in both files.\\ 48 | \rule{5cm}{0.1em}\\ 49 | \vspace{0.3cm}\\ 50 | But the group was actually farther away over the weekend, moving through \colorbox{blue!30}{the }\colorbox{green!30}{Sunda Strait} into the \colorbox{red!30}{Indian Ocean}.\\ 51 | The \colorbox{green!30}{US} military's \colorbox{blue!30}{Pacific }\colorbox{green!30}{Command} said on Tuesday that it had cancelled a port visit to\colorbox{green!30}{Perth}, but had completed previously scheduled training with \colorbox{blue!30}{Australia} off its northwest coast after departing \colorbox{green!30}{Singapore} on 8 April.\\ 52 | The strike group was now "proceeding to \colorbox{blue!30}{the Western Pacific} as ordered".\\ 53 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader \colorbox{red!30}{Kim Jong-un}, a change of plan or simple miscommunication, the \colorbox{red!30}{BBC's Korea correspondent Stephen Evans} says.\\ 54 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response".\\ 55 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US.\\ 56 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific.\\ 57 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said.\\ 58 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday.\\ 59 | He said the US was "working closely" with China to engage North Korea.\\ 60 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action.\\ 61 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday.\\ 62 | A \colorbox{green!30}{US} \colorbox{green!30}{aircraft carrier} and other \colorbox{red!30}{warships} did not sail towards \colorbox{green!30}{North Korea} - but went in the opposite direction, it has emerged.\\ 63 | The \colorbox{green!30}{US}\colorbox{blue!30}{ Navy} said on 8 April that the \colorbox{red!30}{Carl Vinson strike group} was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions.\\ 64 | Last week \colorbox{blue!30}{President Trump} said an "armada" was being sent.\\ 65 | But the group was actually farther away over the weekend, moving through \colorbox{blue!30}{the }\colorbox{green!30}{Sunda Strait} into the \colorbox{red!30}{Indian Ocean}.\\ 66 | The \colorbox{green!30}{US} military's \colorbox{blue!30}{Pacific }\colorbox{green!30}{Command} said on Tuesday that it had cancelled a port visit to\colorbox{red!30}{ }\colorbox{green!30}{Perth}, but had completed previously scheduled training with \colorbox{blue!30}{Australia} off its northwest coast after departing \colorbox{green!30}{Singapore} on 8 April.\\ 67 | The strike group was now "proceeding to \colorbox{blue!30}{the Western Pacific} as ordered".\\ 68 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader \colorbox{red!30}{Kim Jong-un}, a change of plan or simple miscommunication, the \colorbox{red!30}{BBC's Korea correspondent Stephen Evans} says.\\ 69 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response".\\ 70 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US.\\ 71 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific.\\ 72 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said.\\ 73 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday.\\ 74 | He said the US was "working closely" with China to engage North Korea.\\ 75 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action.\\ 76 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday.\\ 77 | A \colorbox{green!30}{US} \colorbox{green!30}{aircraft carrier} and other \colorbox{red!30}{warships} did not sail towards \colorbox{green!30}{North Korea} - but went in the opposite direction, it has emerged.\\ 78 | The \colorbox{green!30}{US}\colorbox{blue!30}{ Navy} said on 8 April that the \colorbox{red!30}{Carl Vinson strike group} was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions.\\ 79 | Last week \colorbox{blue!30}{President Trump} said an "armada" was being sent.\\ 80 | But the group was actually farther away over the weekend, moving through \colorbox{blue!30}{the }\colorbox{green!30}{Sunda Strait} into the \colorbox{red!30}{Indian Ocean}.\\ 81 | The \colorbox{green!30}{US} military's \colorbox{blue!30}{Pacific }\colorbox{green!30}{Command} said on Tuesday that it had cancelled a port visit to\colorbox{red!30}{ }\colorbox{green!30}{Perth}, but had completed previously scheduled training with \colorbox{blue!30}{Australia} off its northwest coast after departing \colorbox{green!30}{Singapore} on 8 April.\\ 82 | The strike group was now "proceeding to \colorbox{blue!30}{the Western Pacific} as ordered".\\ 83 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader \colorbox{red!30}{Kim Jong-un}, a change of plan or simple miscommunication, the \colorbox{red!30}{BBC's Korea correspondent Stephen Evans} says.\\ 84 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response".\\ 85 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US.\\ 86 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific.\\ 87 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said.\\ 88 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday.\\ 89 | He said the US was "working closely" with China to engage North Korea.\\ 90 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action.\\ 91 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday.\\ 92 | \end{CJK*} 93 | \end{document} 94 | -------------------------------------------------------------------------------- /tex2pdf/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophonPlus/ChineseAnnotator/d24f72da083553e3ce294540ff226eb3ff210c9d/tex2pdf/example.pdf -------------------------------------------------------------------------------- /tex2pdf/test.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {title}{Annotation Comparison Report}{1}} 3 | \@writefile{toc}{\authcount {1}} 4 | \@writefile{toc}{\contentsline {author}{SUTDNLP Group}{1}} 5 | \@writefile{toc}{\contentsline {section}{\numberline {1}Overall Statistics}{1}} 6 | \@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Statistics for two annotations, assume File1 as gold standard}}{1}} 7 | \@writefile{toc}{\contentsline {section}{\numberline {2}Detail Content Comparison}{1}} 8 | -------------------------------------------------------------------------------- /tex2pdf/test.fdb_latexmk: -------------------------------------------------------------------------------- 1 | # Fdb version 3 2 | ["pdflatex"] 1506253252 "test.tex" "test.pdf" "test" 1506253253 3 | "/usr/local/texlive/2014/texmf-dist/fonts/map/fontname/texfonts.map" 1272929888 3287 e6b82fe08f5336d4d5ebc73fb1152e87 "" 4 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm" 1246382020 1004 54797486969f23fa377b128694d548df "" 5 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm" 1246382020 996 a18840b13b499c08ac2de96a99eda4bc "" 6 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm" 1246382020 916 f87d7c45f9c908e672703b83b72241a3 "" 7 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam5.tfm" 1246382020 924 9904cf1d39e9767e7a3622f2a125a565 "" 8 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm" 1246382020 928 2dc8d444221b7a635bb58038579b861a "" 9 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm" 1246382020 908 2921f8a10601f252058503cc6570e581 "" 10 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm5.tfm" 1246382020 940 75ac932a52f80982a9f8ea75d03a34cf "" 11 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm" 1246382020 940 228d6584342e91276bf566bcf9716b83 "" 12 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm" 1136768653 1324 c910af8c371558dc20f2d7822f66fe64 "" 13 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmbx9.tfm" 1136768653 1328 5442e22a7072966dbaf88ca900acf3f0 "" 14 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm" 1136768653 1512 f21f83efb36853c0b70002322c1ab3ad "" 15 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmmi9.tfm" 1136768653 1524 d89e2d087a9828407a196f428428ef4a "" 16 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr12.tfm" 1136768653 1288 655e228510b4c2a1abe905c368440826 "" 17 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr6.tfm" 1136768653 1300 b62933e007d01cfd073f79b963c01526 "" 18 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr9.tfm" 1136768653 1292 6b21b9c2c7bebb38aa2273f7ca0fb3af "" 19 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm" 1136768653 1116 933a60c408fc0a863a92debe84b2d294 "" 20 | "/usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmsy9.tfm" 1136768653 1116 25a7bf822c58caf309a702ef79f4afbb "" 21 | "/usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb" 1248133631 32080 340ef9bf63678554ee606688e7b5339d "" 22 | "/usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb" 1248133631 32298 c6d25bb16d1eac01ebdc6d7084126a1e "" 23 | "/usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb" 1248133631 35752 024fb6c41858982481f6968b5fc26508 "" 24 | "/usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb" 1248133631 33993 9b89b85fd2d9df0482bd47194d1d3bf3 "" 25 | "/usr/local/texlive/2014/texmf-dist/tex/context/base/supp-pdf.mkii" 1337017135 71627 94eb9990bed73c364d7f53f960cc8c5b "" 26 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/etexcmds.sty" 1335995445 7612 c47308d923ec19888707b0f1792b326a "" 27 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifluatex.sty" 1303254447 7324 11d14f318d865f420e692d4e6c9c18c3 "" 28 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifpdf.sty" 1303254447 7140 ece2cc23d9f20e1f53975ac167f42d3e "" 29 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/infwarerr.sty" 1335995445 8253 3bdedc8409aa5d290a2339be6f09af03 "" 30 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty" 1335995445 5152 387d9200f396b498d5fd679ae44ed898 "" 31 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty" 1335995445 14040 8de9f47fabc4ca3bd69b6d795e32751c "" 32 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ltxcmds.sty" 1335995445 18425 775b341047ce304520cc7c11ca41392e "" 33 | "/usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty" 1335995445 19987 01cb2f3c1d21e5f05711b7fd50b17f2a "" 34 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amsfonts.sty" 1359763108 5949 3f3fd50a8cc94c3d4cbf4fc66cd3df1c "" 35 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amssymb.sty" 1359763108 13829 94730e64147574077f8ecfea9bb69af4 "" 36 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsa.fd" 1359763108 961 6518c6525a34feb5e8250ffa91731cff "" 37 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsb.fd" 1359763108 961 d02606146ba5601b5645f987c92e6193 "" 38 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsbsy.sty" 1362954379 2412 2d98314dc5be38f455f8890deeb2d091 "" 39 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsgen.sty" 1362954379 4357 ad30ad08920902fc9b38caf35a3b0496 "" 40 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsmath.sty" 1362954379 79178 b2e326c351e876df0e5e23df2e02441b "" 41 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsopn.sty" 1362954379 4082 502152465aedb8f6a3c4b0b7c0fa8ae5 "" 42 | "/usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amstext.sty" 1362954379 2637 846ebe982d3549c7ede7ce135456f54a "" 43 | "/usr/local/texlive/2014/texmf-dist/tex/latex/base/article.cls" 1399675188 20496 66dd832c447553f6776fbeac03bb0580 "" 44 | "/usr/local/texlive/2014/texmf-dist/tex/latex/base/size10.clo" 1399675188 8967 546f1b177fd18efd7ad74d77a7bdac64 "" 45 | "/usr/local/texlive/2014/texmf-dist/tex/latex/carlisle/remreset.sty" 1137109962 1096 6a75275ca00e32428c6f059d2f618ea7 "" 46 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/CJK.enc" 1336691841 29591 eefa7fcd8dc7ed51469bfefaa126930d "" 47 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/CJK.sty" 1336691841 32687 3257b1bf971cec202cb9f439e19313c1 "" 48 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.bdg" 1336691841 3857 db8148d88918b04ce88d70aef60c0926 "" 49 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.chr" 1336691841 8601 56f62306bc1b77b1b81ae95c1fe14da5 "" 50 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.enc" 1336691841 6111 e18ff346b9609ac3fe218452ae362309 "" 51 | "/usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty" 1336691841 12177 35bc847718d10d70afa824372bc56b9b "" 52 | "/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/color.sty" 1399675188 6559 34a083f539c61168227e1ad844684e63 "" 53 | "/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphics.sty" 1254151804 14183 42a8fc761b806986eef292369afc2988 "" 54 | "/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphicx.sty" 1399675188 7911 bf0a64f89bfb668c239ddf6324bf4afb "" 55 | "/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/keyval.sty" 1399675188 2317 0ace13e225e9d95dd9defe947adc9fbb "" 56 | "/usr/local/texlive/2014/texmf-dist/tex/latex/graphics/trig.sty" 1156702488 3153 c50e6bd54d2dd3933fc52bcf369bec4a "" 57 | "/usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/color.cfg" 1254097189 802 7b8c8d72c24d795ed7720e4dfd29bff3 "" 58 | "/usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1279039959 678 4792914a8f45be57bb98413425e4c7af "" 59 | "/usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/graphics.cfg" 1278958963 3563 d35e897cae3b8c6848f6677b73370b54 "" 60 | "/usr/local/texlive/2014/texmf-dist/tex/latex/multirow/multirow.sty" 1137110401 7374 f7c1f13fc632dd5c9b220a247d233082 "" 61 | "/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/aliascnt.sty" 1335995445 2511 8ef653ad0c83209793c35dc808929370 "" 62 | "/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty" 1303254447 12029 04d7fdf76e0464c23b5aa3a727952d7c "" 63 | "/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/grfext.sty" 1335995445 7075 bd0c34fbf1ae8fd1debd2a554e41b2d5 "" 64 | "/usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/kvoptions.sty" 1335995445 22417 c74ff4af6a1aa2b65d1924020edbbe11 "" 65 | "/usr/local/texlive/2014/texmf-dist/tex/latex/pdftex-def/pdftex.def" 1306616590 55368 3c8a0d99822330f2dfabc0dfb09ce897 "" 66 | "/usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.cfg" 1167176009 2062 a0e7d66e09e508f51289a656aec06ed2 "" 67 | "/usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.sty" 1167176009 15188 91281c7ddbccfa54a8e0c3b56ab5aa72 "" 68 | "/usr/local/texlive/2014/texmf-dist/tex/latex/tools/multicol.sty" 1399675188 29193 08a2f6b9e76c544040f9143397c0d6dc "" 69 | "/usr/local/texlive/2014/texmf-dist/tex/latex/url/url.sty" 1388531844 12796 8edb7d69a20b857904dd0ea757c14ec9 "" 70 | "/usr/local/texlive/2014/texmf-dist/tex/latex/xcolor/xcolor.sty" 1169481954 55224 a43bab84e0ac5e6efcaf9a98bde73a94 "" 71 | "/usr/local/texlive/2014/texmf-dist/web2c/texmf.cnf" 1398200874 31722 4f52421e59a4b9e910cf18e64c1f2b4a "" 72 | "/usr/local/texlive/2014/texmf-var/fonts/map/pdftex/updmap/pdftex.map" 1401025944 1445653 26a0aacf3d70032b1ec192e8c7792117 "" 73 | "/usr/local/texlive/2014/texmf-var/web2c/pdftex/pdflatex.fmt" 1414992882 3832012 194c4db574515d58e6b0f573631d9cc2 "" 74 | "/usr/local/texlive/2014/texmf.cnf" 1401025936 577 a59edbde8d3a8c549d0eeaab1739e2ff "" 75 | "llncs.cls" 1458498458 41688 65f2552e476e2e54b95289f3e5fe5bf6 "" 76 | "test.aux" 1506253253 477 6045205284688e9a6c58790953019c51 "" 77 | "test.tex" 1506253236 9217 c1309dc45c6313f7ba264d22059e1ba5 "" 78 | (generated) 79 | "test.pdf" 80 | "test.log" 81 | "test.aux" 82 | -------------------------------------------------------------------------------- /tex2pdf/test.fls: -------------------------------------------------------------------------------- 1 | PWD /Users/Jie/Dropbox/research/SUTDAnnotator/tex2pdf 2 | INPUT /usr/local/texlive/2014/texmf.cnf 3 | INPUT /usr/local/texlive/2014/texmf-dist/web2c/texmf.cnf 4 | INPUT /usr/local/texlive/2014/texmf-var/web2c/pdftex/pdflatex.fmt 5 | INPUT test.tex 6 | OUTPUT test.log 7 | INPUT llncs.cls 8 | INPUT llncs.cls 9 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/base/article.cls 10 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/base/article.cls 11 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/base/size10.clo 12 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/base/size10.clo 13 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/tools/multicol.sty 14 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/tools/multicol.sty 15 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/aliascnt.sty 16 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/aliascnt.sty 17 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/carlisle/remreset.sty 18 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/carlisle/remreset.sty 19 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amssymb.sty 20 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amssymb.sty 21 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amsfonts.sty 22 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/amsfonts.sty 23 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphicx.sty 24 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphicx.sty 25 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/keyval.sty 26 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/keyval.sty 27 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphics.sty 28 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/graphics.sty 29 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/trig.sty 30 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/trig.sty 31 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/graphics.cfg 32 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/graphics.cfg 33 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/pdftex-def/pdftex.def 34 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/pdftex-def/pdftex.def 35 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/infwarerr.sty 36 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/infwarerr.sty 37 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ltxcmds.sty 38 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ltxcmds.sty 39 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/multirow/multirow.sty 40 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/multirow/multirow.sty 41 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.sty 42 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.sty 43 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.cfg 44 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/subfigure/subfigure.cfg 45 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsmath.sty 46 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsmath.sty 47 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amstext.sty 48 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amstext.sty 49 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsgen.sty 50 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsgen.sty 51 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsbsy.sty 52 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsbsy.sty 53 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsopn.sty 54 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsmath/amsopn.sty 55 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/CJK.sty 56 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/CJK.sty 57 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 58 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 59 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/CJK.enc 60 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/color.sty 61 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/graphics/color.sty 62 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/color.cfg 63 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/color.cfg 64 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/xcolor/xcolor.sty 65 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/xcolor/xcolor.sty 66 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/color.cfg 67 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/color.cfg 68 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/url/url.sty 69 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/url/url.sty 70 | INPUT test.aux 71 | INPUT test.aux 72 | OUTPUT test.aux 73 | INPUT /usr/local/texlive/2014/texmf-dist/tex/context/base/supp-pdf.mkii 74 | INPUT /usr/local/texlive/2014/texmf-dist/tex/context/base/supp-pdf.mkii 75 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty 76 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty 77 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifluatex.sty 78 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifluatex.sty 79 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifpdf.sty 80 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/ifpdf.sty 81 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty 82 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty 83 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/grfext.sty 84 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/grfext.sty 85 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty 86 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty 87 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/kvoptions.sty 88 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/oberdiek/kvoptions.sty 89 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty 90 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty 91 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/etexcmds.sty 92 | INPUT /usr/local/texlive/2014/texmf-dist/tex/generic/oberdiek/etexcmds.sty 93 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg 94 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg 95 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.bdg 96 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.enc 97 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.chr 98 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/map/fontname/texfonts.map 99 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/map/fontname/texfonts.map 100 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr12.tfm 101 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm 102 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm 103 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm 104 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsa.fd 105 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsa.fd 106 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm 107 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm 108 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam5.tfm 109 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsb.fd 110 | INPUT /usr/local/texlive/2014/texmf-dist/tex/latex/amsfonts/umsb.fd 111 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm 112 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm 113 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm5.tfm 114 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr9.tfm 115 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr12.tfm 116 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm 117 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmbx9.tfm 118 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmr6.tfm 119 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmmi9.tfm 120 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm 121 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmsy9.tfm 122 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm 123 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm 124 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm 125 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm 126 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm 127 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm 128 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm 129 | OUTPUT test.pdf 130 | INPUT /usr/local/texlive/2014/texmf-var/fonts/map/pdftex/updmap/pdftex.map 131 | INPUT test.aux 132 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb 133 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb 134 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb 135 | INPUT /usr/local/texlive/2014/texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb 136 | -------------------------------------------------------------------------------- /tex2pdf/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophonPlus/ChineseAnnotator/d24f72da083553e3ce294540ff226eb3ff210c9d/tex2pdf/test.pdf -------------------------------------------------------------------------------- /tex2pdf/test.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophonPlus/ChineseAnnotator/d24f72da083553e3ce294540ff226eb3ff210c9d/tex2pdf/test.synctex.gz -------------------------------------------------------------------------------- /tex2pdf/test.tex: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%% file typeinst.tex %%%%%%%%%%%%%%%%%%%%%%%%% 2 | \documentclass[runningheads,a4paper]{llncs} 3 | \usepackage{amssymb} 4 | \setcounter{tocdepth}{3} 5 | \usepackage{graphicx} 6 | \usepackage{multirow} 7 | \usepackage{subfigure} 8 | \usepackage{amsmath} 9 | \usepackage{CJK} 10 | \usepackage{color} 11 | \usepackage{xcolor} 12 | \usepackage{url} 13 | \begin{document} 14 | \begin{CJK*}{UTF8}{gbsn} 15 | \mainmatter % start of an individual contribution 16 | \title{Annotation Comparison Report} 17 | \author{SUTDNLP Group} 18 | \institute{Singapore University of Technology and Design} 19 | \maketitle 20 | 21 | \section{Overall Statistics} 22 | File1 color: \colorbox{blue!30}{Blue}; Dir: \colorbox{blue!30}{/Users/Jie/Dropbox/Research/SUTDAnnotator/demotext/EnglishDemo.txt.ann}\\ 23 | File2 color: \colorbox{red!30}{Red}; Dir: \colorbox{red!30}{/Users/Jie/Dropbox/Research/SUTDAnnotator/demotext/EnglishDemo1.txt.ann}\\ 24 | \begin{table}[!htbp] 25 | \centering 26 | \caption{Statistics for two annotations, assume File1 as gold standard} 27 | \begin{tabular}{l|l|l} 28 | \hline 29 | P/R/F (\%)& Entity &Boundary\\ 30 | \hline 31 | Artifical& 50.0/100.0/66.67 &--\\ 32 | Location& 62.5/62.5/62.5 &--\\ 33 | Organization& 0.0/0.0/Nan &--\\ 34 | Person& 0.0/0.0/Nan &--\\ 35 | \hline 36 | Overall& 42.86/50.0/46.15 &42.86/50.0/46.15\\ 37 | \hline 38 | \end{tabular} 39 | \end{table} 40 | \section{Detail Content Comparison} 41 | \colorbox{blue!30}{Blue}: only annotated in File1.\\ 42 | \colorbox{red!30}{Red}: only annotated in File2.\\ 43 | \colorbox{green!30}{Green}: annotated in both files.\\ 44 | \rule{5cm}{0.1em}\\ 45 | \vspace{0.3cm}\\ 46 | But the group was actually farther away over the weekend, moving through \colorbox{blue!30}{the }\colorbox{green!30}{Sunda Strait} into the \colorbox{red!30}{Indian Ocean}.\\ 47 | The \colorbox{green!30}{US} military's \colorbox{blue!30}{Pacific }\colorbox{green!30}{Command} said on Tuesday that it had cancelled a port visit to\colorbox{red!30}{ }\colorbox{green!30}{Perth}, but had completed previously scheduled training with \colorbox{blue!30}{Australia} off its northwest coast after departing \colorbox{green!30}{Singapore} on 8 April.\\ 48 | The strike group was now "proceeding to \colorbox{blue!30}{the Western Pacific} as ordered".\\ 49 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader \colorbox{red!30}{Kim Jong-un}, a change of plan or simple miscommunication, the \colorbox{red!30}{BBC's Korea correspondent Stephen Evans} says.\\ 50 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response".\\ 51 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US.\\ 52 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific.\\ 53 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said.\\ 54 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday.\\ 55 | He said the US was "working closely" with China to engage North Korea.\\ 56 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action.\\ 57 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday.\\ 58 | A \colorbox{green!30}{US} \colorbox{green!30}{aircraft carrier} and other \colorbox{red!30}{warships} did not sail towards \colorbox{green!30}{North Korea} - but went in the opposite direction, it has emerged.\\ 59 | The \colorbox{green!30}{US}\colorbox{blue!30}{ Navy} said on 8 April that the \colorbox{red!30}{Carl Vinson strike group} was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions.\\ 60 | Last week \colorbox{blue!30}{President Trump} said an "armada" was being sent.\\ 61 | But the group was actually farther away over the weekend, moving through \colorbox{blue!30}{the }\colorbox{green!30}{Sunda Strait} into the \colorbox{red!30}{Indian Ocean}.\\ 62 | The \colorbox{green!30}{US} military's \colorbox{blue!30}{Pacific }\colorbox{green!30}{Command} said on Tuesday that it had cancelled a port visit to\colorbox{red!30}{ }\colorbox{green!30}{Perth}, but had completed previously scheduled training with \colorbox{blue!30}{Australia} off its northwest coast after departing \colorbox{green!30}{Singapore} on 8 April.\\ 63 | The strike group was now "proceeding to \colorbox{blue!30}{the Western Pacific} as ordered".\\ 64 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader \colorbox{red!30}{Kim Jong-un}, a change of plan or simple miscommunication, the \colorbox{red!30}{BBC's Korea correspondent Stephen Evans} says.\\ 65 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response".\\ 66 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US.\\ 67 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific.\\ 68 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said.\\ 69 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday.\\ 70 | He said the US was "working closely" with China to engage North Korea.\\ 71 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action.\\ 72 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday.\\ 73 | A \colorbox{green!30}{US} \colorbox{green!30}{aircraft carrier} and other \colorbox{red!30}{warships} did not sail towards \colorbox{green!30}{North Korea} - but went in the opposite direction, it has emerged.\\ 74 | The \colorbox{green!30}{US}\colorbox{blue!30}{ Navy} said on 8 April that the \colorbox{red!30}{Carl Vinson strike group} was travelling to the Korean peninsula amid tensions over Pyongyang's nuclear ambitions.\\ 75 | Last week \colorbox{blue!30}{President Trump} said an "armada" was being sent.\\ 76 | But the group was actually farther away over the weekend, moving through \colorbox{blue!30}{the }\colorbox{green!30}{Sunda Strait} into the \colorbox{red!30}{Indian Ocean}.\\ 77 | The \colorbox{green!30}{US} military's \colorbox{blue!30}{Pacific }\colorbox{green!30}{Command} said on Tuesday that it had cancelled a port visit to\colorbox{red!30}{ }\colorbox{green!30}{Perth}, but had completed previously scheduled training with \colorbox{blue!30}{Australia} off its northwest coast after departing \colorbox{green!30}{Singapore} on 8 April.\\ 78 | The strike group was now "proceeding to \colorbox{blue!30}{the Western Pacific} as ordered".\\ 79 | It is not clear whether the failure to arrive was a deliberate deception, perhaps designed to frighten North Korea's leader \colorbox{red!30}{Kim Jong-un}, a change of plan or simple miscommunication, the \colorbox{red!30}{BBC's Korea correspondent Stephen Evans} says.\\ 80 | Either way, US Vice-President Mike Pence was undeterred as he spoke aboard the USS Ronald Reagan - an aircraft carrier docked in Japan - during his tour of the region, vowing to "defeat any attack and meet any use of conventional or nuclear weapons with an overwhelming and effective American response".\\ 81 | North Korea and the US have ratcheted up tensions in recent weeks and the movement of the strike group had raised the question of a pre-emptive strike by the US.\\ 82 | On Wednesday, Mr Pence described the country as the "most dangerous and urgent threat to peace and security" in the Asia-Pacific.\\ 83 | His words came after the North held a show of military might in a parade over the weekend and tested another missile on Sunday, which blew up almost immediately after launch, the Pentagon said.\\ 84 | The US also accused North Korea of trying to "provoke something", with US Defence Secretary James Mattis calling the test a reckless move on Tuesday.\\ 85 | He said the US was "working closely" with China to engage North Korea.\\ 86 | Pyongyang said it may test missiles on a weekly basis, and warned of "all-out war" if the US takes military action.\\ 87 | "If the US is planning a military attack against us, we will react with a nuclear pre-emptive strike by our own style and method," Vice-Foreign Minister Han Song-ryol told the BBC on Monday.\\ 88 | \end{CJK*} 89 | \end{document} 90 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SophonPlus/ChineseAnnotator/d24f72da083553e3ce294540ff226eb3ff210c9d/utils/__init__.py -------------------------------------------------------------------------------- /utils/metric4ann.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: Jie 3 | # @Date: 2017-04-25 11:07:00 4 | # @Last Modified by: Jie Yang, Contact: jieynlp@gmail.com 5 | # @Last Modified time: 2017-09-19 16:06:59 6 | 7 | import re 8 | import sys 9 | import codecs 10 | 11 | import numpy as np 12 | 13 | 14 | def lines_to_label_list(input_lines): 15 | label_list = [] 16 | label = [] 17 | for line in input_lines: 18 | if len(line) < 2: 19 | if len(label) > 0 : 20 | label_list.append(label) 21 | label = [] 22 | else: 23 | label.append(line.strip().split()[-1]) 24 | return label_list 25 | 26 | 27 | def compare_files(gold_file, pred_file, up_ignore_layer = 0): 28 | ## 比较 2 个文件,计算 F1 值。输入必须是 .ann 文件, 29 | ## 格式形如 [@word1#entity-type*]word2 word3 ... 30 | ## 支持嵌套实体 (只使用最长的实体) 31 | ## already remove segmentation space, i.e. character based entity extraction (to avoid segmentation mismatch problem on two files) 32 | 33 | # print("Compare files...") 34 | # print("Gold file:", gold_file) 35 | # print("Pred file:", pred_file) 36 | gold_entity, pred_entity, match_entity = get_matched_ner_from_file(gold_file, pred_file, up_ignore_layer) 37 | 38 | match_num = len(match_entity) 39 | gold_num = len(gold_entity) 40 | pred_num = len(pred_entity) 41 | return get_final_score(gold_num, pred_num, match_num) 42 | 43 | 44 | def get_final_score(gold_num, pred_num, match_num): 45 | ## 计算最终的分数 46 | if pred_num == 0: 47 | precision = "Nan" 48 | else: 49 | precision = (match_num+0.0)/pred_num 50 | if gold_num == 0: 51 | recall = 'Nan' 52 | else: 53 | recall = (match_num+0.0)/gold_num 54 | if (precision == "Nan") or (recall == "Nan") or (precision+recall) <= 0.0: 55 | f_measure = "Nan" 56 | else: 57 | f_measure = 2*precision*recall/(precision+recall) 58 | # print(('Precision: %s/%s = %s')%(match_num, pred_num, precision)) 59 | # print(('Recall: %s/%s = %s')%(match_num, gold_num, recall)) 60 | # print(('F1_value: %s')%(f_measure)) 61 | return precision, recall, f_measure 62 | 63 | 64 | def get_matched_ner_from_file(gold_file, pred_file, up_ignore_layer = 0): 65 | ## 从文件中获取匹配的 NER 66 | with codecs.open(gold_file, 'rU', encoding='utf-8') as f: 67 | gold_lines = f.readlines() 68 | 69 | with codecs.open(pred_file, 'rU', encoding='utf-8') as f: 70 | pred_lines = f.readlines() 71 | 72 | sentence_num = len(gold_lines) 73 | assert(sentence_num == len(pred_lines)) 74 | gold_entity = [] 75 | pred_entity = [] 76 | match_entity = [] 77 | start_line = 0 78 | end_line = start_line + 1000000 79 | for idx in range(sentence_num): 80 | if idx >= end_line: 81 | continue 82 | if idx < start_line: 83 | continue 84 | # print(gold_lines[idx]) 85 | gold_filter_entity = filter_entity(get_ner_from_sentence(gold_lines[idx]), up_ignore_layer) 86 | # print("gold:", gold_filter_entity) 87 | pred_filter_entity = filter_entity(get_ner_from_sentence(pred_lines[idx]), up_ignore_layer) 88 | # print("pred:",pred_filter_entity) 89 | match = list(set(gold_filter_entity).intersection(set(pred_filter_entity))) 90 | gold_entity += gold_filter_entity 91 | pred_entity += pred_filter_entity 92 | match_entity += match 93 | return gold_entity, pred_entity, match_entity 94 | 95 | 96 | def compare_f_measure_by_type(gold_file, pred_file): 97 | ## generate entity f score by entity type 98 | gold_entity, pred_entity, match_entity = get_matched_ner_from_file(gold_file, pred_file, 0) 99 | gold_type_dict = {} 100 | pred_type_dict = {} 101 | match_type_dict = {} 102 | for entity in gold_entity: 103 | entity_type = entity.split(':')[1] 104 | if entity_type in gold_type_dict: 105 | gold_type_dict[entity_type] += 1 106 | else: 107 | gold_type_dict[entity_type] = 1 108 | for entity in pred_entity: 109 | entity_type = entity.split(':')[1] 110 | if entity_type in pred_type_dict: 111 | pred_type_dict[entity_type] += 1 112 | else: 113 | pred_type_dict[entity_type] = 1 114 | for entity in match_entity: 115 | entity_type = entity.split(':')[1] 116 | if entity_type in match_type_dict: 117 | match_type_dict[entity_type] += 1 118 | else: 119 | match_type_dict[entity_type] = 1 120 | final_prf = [] 121 | for entity in sorted(gold_type_dict.keys()): 122 | gold_num = gold_type_dict[entity] 123 | pred_num = 0 124 | match_num = 0 125 | if entity in pred_type_dict: 126 | pred_num = pred_type_dict[entity] 127 | if entity in match_type_dict: 128 | match_num = match_type_dict[entity] 129 | p,r,f = get_final_score(gold_num,pred_num, match_num) 130 | final_prf.append(entity + ":" + p_r_f_string(p,r,f)) 131 | over_gold_num = len(gold_entity) 132 | over_pred_num = len(pred_entity) 133 | over_match_num = len(match_entity) 134 | p,r,f = get_final_score(over_gold_num, over_pred_num, over_match_num) 135 | final_prf.append("Overall" + ":" + p_r_f_string(p,r,f)) 136 | 137 | ## get f measure for chunk 138 | gold_entity, pred_entity, match_entity = get_matched_ner_from_file(gold_file, pred_file, 2) 139 | over_gold_num = len(gold_entity) 140 | over_pred_num = len(pred_entity) 141 | over_match_num = len(match_entity) 142 | p,r,f = get_final_score(over_gold_num, over_pred_num, over_match_num) 143 | final_prf.append("Chunk" + ":" + p_r_f_string(p,r,f)) 144 | 145 | return final_prf 146 | 147 | def get_ner_from_sentence(sentence): 148 | ## 从句子中获取 NER 149 | ## remove segmentation space, avoid segmentation changes 150 | sentence = sentence.strip().replace(' ', '') 151 | sentence_len = len(sentence) 152 | # print(sentence) 153 | entity_start = [] 154 | words = [] 155 | last_char = '' 156 | entity_type_start = False 157 | entity_type = '' 158 | word_id = 0 159 | entity_list = [] 160 | for idx in range(sentence_len): 161 | if sentence[idx] == '[': 162 | left_bracket = True 163 | elif sentence[idx] == '@': 164 | if last_char == '[': 165 | entity_start.append(word_id) 166 | else: 167 | words.append(sentence[idx]) 168 | word_id += 1 169 | elif sentence[idx] == '#': 170 | if len(entity_start) > 0: 171 | entity_type_start = True 172 | else: 173 | words.append(sentence[idx]) 174 | word_id += 1 175 | elif sentence[idx] == ']': 176 | if last_char == '*': 177 | ## remove inside nested entity 178 | if len(entity_start) > 1: 179 | entity_start.pop() 180 | entity_type = '' 181 | entity_type_start = False 182 | elif len(entity_start) == 1: 183 | entity_info = '['+str(entity_start[0])+','+str(word_id-1) +']:'+entity_type.strip('*') 184 | entity_list.append(entity_info) 185 | entity_type = '' 186 | entity_start = [] 187 | entity_type_start = False 188 | else: 189 | words.append(sentence[idx]) 190 | word_id += 1 191 | else: 192 | if entity_type_start: 193 | entity_type += sentence[idx] 194 | else: 195 | words.append(sentence[idx]) 196 | word_id += 1 197 | last_char = sentence[idx] 198 | # print(entity_list) 199 | return entity_list 200 | # print(entity_list) 201 | # for word in words: 202 | # print(word, " ",) 203 | 204 | 205 | def filter_entity(entity_list, up_ignore_layer = 0): 206 | ## 过滤实体 207 | 208 | ## ignore entity type when calculate 209 | ignore_type = {} 210 | # ignore_type = {'Fin-Concept'} 211 | ## rename entity type 212 | # rename_type = {'Person-Name':'Person'} 213 | rename_type = {} 214 | filtered_list = [] 215 | for entity in entity_list: 216 | pair = entity.split(':') 217 | entity_type = pair[-1] 218 | if entity_type not in ignore_type: 219 | if entity_type in rename_type: 220 | entity_type = rename_type[entity_type] 221 | if up_ignore_layer == 1: 222 | if '-' in entity_type: 223 | entity_type = entity_type.split('-')[0] 224 | elif up_ignore_layer == 2: 225 | entity_type = "ENTITY" 226 | filtered_list.append(pair[0]+':'+entity_type) 227 | return filtered_list 228 | 229 | 230 | def generate_f_value_report(): 231 | ## 生成 F 值报告 232 | file_list = [ 233 | # "exercise.chenhua.100.ann", 234 | "exercise.yangjie.100.ann", 235 | "exercise.shaolei.100.ann", 236 | "exercise.yuanye.100.ann", 237 | # "exercise.yanxia.100.ann", 238 | # "exercise.yuanye.100.ann", 239 | "exercise.yumin.100.ann" 240 | # "exercise.hongmin.100.ann", 241 | # "exercise.yuze.100.ann" 242 | ] 243 | 244 | file_num = len(file_list) 245 | result_matrix = np.ones((file_num, file_num)) 246 | result_matrix_ignore_1_layer = np.ones((file_num, file_num)) 247 | result_matrix_ignore_2_layer = np.ones((file_num, file_num)) 248 | for idx in range(file_num-1): 249 | gold_file = file_list[idx] 250 | for idy in range(idx+1, file_num): 251 | pred_file = file_list[idy] 252 | p,r,f = compare_files(gold_file, pred_file, 0) 253 | p1,r1,f1 = compare_files(gold_file, pred_file, 1) 254 | p2,r2,f2 = compare_files(gold_file, pred_file, 2) 255 | result_matrix[idx][idy] = f 256 | result_matrix[idy][idx] = f 257 | result_matrix_ignore_1_layer[idx][idy] = f1 258 | result_matrix_ignore_1_layer[idy][idx] = f1 259 | result_matrix_ignore_2_layer[idx][idy] = f2 260 | result_matrix_ignore_2_layer[idy][idx] = f2 261 | print() 262 | ## show final results 263 | print("FINAL REPORT: all_catagory/ignore_sub_catogary/entity_chunk") 264 | print("F1-value".rjust(10), ) 265 | for idx in range(file_num): 266 | print(simplified_name(file_list[idx]).rjust(15), ) 267 | print 268 | for idx in range(file_num): 269 | print(simplified_name(file_list[idx]).rjust(15), ) 270 | for idy in range(file_num): 271 | result = output_model(result_matrix[idx][idy], result_matrix_ignore_1_layer[idx][idy], result_matrix_ignore_2_layer[idx][idy]) 272 | print(result.rjust(15), ) 273 | print() 274 | 275 | 276 | def calculate_average(input_array): 277 | ## 计算平均值 278 | length = input_array.shape[0] 279 | 280 | def output_model(number1, number2): 281 | ## 输出模型 282 | if number1 != 'Nan' and number1 != 'nan': 283 | if number1 == 1.0: 284 | return " 100/100 " 285 | else: 286 | num1 = str(round(number1*100,1)) 287 | else: 288 | num1 = str(number1) 289 | if number2 != 'Nan' and number2 != 'nan': 290 | if number2 == 1.0: 291 | num2 = "100" 292 | else: 293 | num2 = str(round(number2*100,1)) 294 | else: 295 | num2 = str(number2) 296 | return num1 + '/'+num2 297 | 298 | 299 | def number_string(number): 300 | if number != 'Nan' and number != 'nan': 301 | return str(round(number*100,2)) 302 | else: 303 | return str(number) 304 | 305 | def p_r_f_string(precison, recall, f): 306 | return number_string(precison)+'/'+number_string(recall)+'/'+number_string(f) 307 | 308 | 309 | def simplified_name(file_name): 310 | name = file_name.split('.')[1] 311 | return name 312 | 313 | def generate_report_from_list(file_list): 314 | ## 从列表生成报告 315 | file_num = len(file_list) 316 | result_matrix = np.ones((file_num, file_num)) 317 | result_matrix_boundary = np.ones((file_num, file_num)) 318 | for idx in range(file_num-1): 319 | gold_file = file_list[idx] 320 | for idy in range(idx+1, file_num): 321 | pred_file = file_list[idy] 322 | p,r,f = compare_files(gold_file, pred_file, 0) 323 | p2,r2,f2 = compare_files(gold_file, pred_file, 2) 324 | result_matrix[idx][idy] = f 325 | result_matrix[idy][idx] = f 326 | result_matrix_boundary[idx][idy] = f2 327 | result_matrix_boundary[idy][idx] = f2 328 | final_matrix = [] 329 | 330 | for idx in range(file_num): 331 | result_line = [] 332 | for idy in range(file_num): 333 | result = output_model(result_matrix[idx][idy], result_matrix_boundary[idx][idy]) 334 | result_line.append(result) 335 | final_matrix.append(result_line) 336 | return final_matrix 337 | 338 | 339 | if __name__ == '__main__': 340 | gold_file = "sample.gold.ann" 341 | pred_file = "sample.pred.ann" 342 | if len(sys.argv) > 2: 343 | compare_files(sys.argv[1], sys.argv[2]) 344 | else: 345 | generate_f_value_report() -------------------------------------------------------------------------------- /utils/recommend.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Author: Jie Yang 3 | # @Date: 2017-09-14 16:38:21 4 | # @Last Modified by: Jie Yang, Contact: jieynlp@gmail.com 5 | # @Last Modified time: 2018-05-01 21:17:27 6 | 7 | import re 8 | 9 | 10 | def maximum_matching(train_text, decode_text, entityRe = r'\[\@.*?\#.*?\*\](?!\#)', recommendRe = r'\[\$.*?\#.*?\*\](?!\#)'): 11 | # print("Training data:") 12 | # print(train_text) 13 | # print("Decode data:") 14 | # print(decode_text) 15 | # train_text = train_text 16 | # decode_text = decode_text 17 | extracted_dict = {} 18 | max_length = 0 19 | for match in re.finditer(entityRe, train_text): 20 | recognized_entity = train_text[match.span()[0]:match.span()[1]] 21 | [entity, entity_type] = recognized_entity.strip('[@]*').rsplit('#',1) 22 | 23 | if len(entity) > max_length: 24 | max_length = len(entity) 25 | 26 | extracted_dict[entity] = entity_type 27 | # print("dict:", extracted_dict) 28 | 29 | if len(extracted_dict) == 0: 30 | return train_text + decode_text 31 | 32 | ## only recommend following 10 sentences (reduce time) 33 | near_sentences = "" 34 | far_sentences = "" 35 | sentences = decode_text.split('\n') 36 | for idx in range(len(sentences)): 37 | if idx != len(sentences) -1 : 38 | new_string = sentences[idx] + '\n' 39 | else: 40 | new_string = sentences[idx] 41 | if idx > 20 : 42 | far_sentences += new_string 43 | else: 44 | near_sentences += new_string 45 | decode_text = near_sentences 46 | 47 | ### forward maximum match algorithm with following conditions: 48 | ### 1. for previous recommend entities, remove them and recommend again 49 | ### 2. for recognized entities, ignored them (forward process ends at the begining of recognized entity) 50 | 51 | ## remove previous recommend entity format 52 | decode_no_recommend = "" 53 | last_entity_end = 0 54 | for match in re.finditer(recommendRe, decode_text): 55 | decode_no_recommend += decode_text[last_entity_end:match.span()[0]] 56 | recommend_entity = decode_text[match.span()[0]:match.span()[1]] 57 | entity = recommend_entity.strip('[$]').rsplit('#',1)[0] 58 | decode_no_recommend += entity 59 | last_entity_end = match.span()[1] 60 | decode_no_recommend += decode_text[last_entity_end:] 61 | # print(decode_no_recommend) 62 | ## ignored annotated entities but record them position (in entity_recognized_list) 63 | decode_origin = "" 64 | entity_recognized_list = [] 65 | last_entity_end = 0 66 | for match in re.finditer(entityRe, decode_no_recommend): 67 | decode_origin += decode_no_recommend[last_entity_end:match.span()[0]] 68 | entity_recognized_list += [0]*(match.span()[0]-last_entity_end) 69 | recommend_entity = decode_no_recommend[match.span()[0]:match.span()[1]] 70 | [entity, recognized_type] = recommend_entity.strip('[@]*').rsplit('#',1) 71 | decode_origin += entity 72 | entity_recognized_list += ["B-@-"+recognized_type] +["I-@-"+recognized_type] *(len(entity)-1) 73 | last_entity_end = match.span()[1] 74 | decode_origin += decode_no_recommend[last_entity_end:] 75 | entity_recognized_list += [0]*(len(decode_no_recommend)-last_entity_end) 76 | assert(len(decode_origin) == len(entity_recognized_list)) 77 | # print(decode_origin) 78 | # print(entity_recognized_list) 79 | 80 | ## forward maximum matching (FMM) 81 | origin_length = len(decode_origin) 82 | FMM_start = 0 83 | FMM_end = (FMM_start + max_length) if (FMM_start + max_length) < origin_length-1 else origin_length-1 84 | entity_recommend_list = [] 85 | while FMM_start < origin_length: 86 | if FMM_end == FMM_start: 87 | entity_recommend_list += [0] 88 | FMM_start += 1 89 | FMM_end = (FMM_start + max_length) if (FMM_start + max_length) < origin_length-1 else origin_length-1 90 | ## recognized span detection: for the following two conditions, it jump when the word is located in recognized entity span 91 | elif entity_recognized_list[FMM_start] != 0 or decode_origin[FMM_start] == '\n': 92 | entity_recommend_list += [0] 93 | FMM_start += 1 94 | FMM_end = (FMM_start + max_length) if (FMM_start + max_length) < origin_length-1 else origin_length-1 95 | elif entity_recognized_list[FMM_end] != 0 or decode_origin[FMM_end] == '\n': 96 | FMM_end -= 1 97 | ## finish recognized span detection 98 | else: 99 | word = decode_origin[FMM_start:FMM_end] 100 | if word in extracted_dict: 101 | entity_recommend_list += ["B-$-"+extracted_dict[word]] +["I-$-"+extracted_dict[word]] *(FMM_end-FMM_start-1) 102 | FMM_start = FMM_end 103 | FMM_end = (FMM_start + max_length) if (FMM_start + max_length) < origin_length-1 else origin_length-1 104 | else: 105 | FMM_end -= 1 106 | # print(entity_recommend_list) 107 | assert(len(entity_recommend_list)== len(entity_recognized_list)) 108 | recommend_decode_text = merge_text_with_entity(decode_origin, entity_recognized_list, entity_recommend_list) 109 | return train_text + recommend_decode_text + far_sentences 110 | 111 | 112 | def merge_text_with_entity(origin_text, recognized_list, recommend_list): 113 | length = len(origin_text) 114 | assert(len(recognized_list)==length) 115 | assert(len(recommend_list)==length) 116 | combine_list = recommend_list 117 | for idx in range(length): 118 | if combine_list[idx] == 0 and recognized_list[idx] != 0: 119 | combine_list[idx] = recognized_list[idx] 120 | new_string = "" 121 | entity_string = "" 122 | entity_type = "Error" 123 | entity_source = "Error" 124 | for idx in range(length): 125 | if combine_list[idx] == 0: 126 | if entity_string: 127 | new_string += "["+entity_source + entity_string + "#" + entity_type+"*]" 128 | entity_string = "" 129 | entity_type = "Error" 130 | entity_source = "Error" 131 | # print(new_string) 132 | new_string += origin_text[idx] 133 | 134 | elif combine_list[idx].startswith("B-"): 135 | if entity_string: 136 | new_string += "["+entity_source + entity_string + "#" + entity_type+"*]" 137 | entity_string = "" 138 | entity_type = "Error" 139 | entity_source = "Error" 140 | entity_string = origin_text[idx] 141 | entity_type = combine_list[idx][4:] 142 | entity_source = combine_list[idx][2:3] 143 | elif combine_list[idx].startswith("I-"): 144 | entity_string += origin_text[idx] 145 | else: 146 | print("merge_text_with_entity error!") 147 | if entity_string: 148 | new_string += "["+entity_source + entity_string + "#" + entity_type +"*]" 149 | entity_string = "" 150 | entity_type = "Error" 151 | entity_source = "Error" 152 | return new_string 153 | 154 | 155 | if __name__ == '__main__': 156 | train_text = u"于是我就给[@朱物华#Location*]校长、[@张钟俊#Location*]院长给他们写了一个报告!" 157 | decode_text = u"张钟俊院长,给他[$张钟俊#Location*][$张钟俊#Location*]..[@朱物华#Location*]." 158 | print(maximum_matching(train_text, decode_text)) --------------------------------------------------------------------------------