├── .DS_Store ├── .idea ├── AImedical.iml ├── encodings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── README.md ├── classify └── __init__.py ├── log └── __init__.py ├── main └── __init__.py ├── manage.py ├── sentence ├── .DS_Store ├── 30W.csv ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── sensplit.cpython-36.pyc ├── data │ ├── __init__.py │ ├── baike.org │ ├── cus_demo.txt │ ├── medical_illness.csv │ ├── medical_symptom.csv │ ├── medicaln.csv │ ├── medicalo.csv │ ├── medicalv.csv │ └── new.csv ├── loacldict.py ├── rdo.py └── sensplit.py └── setting └── __init__.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenjiawei19/AImedical/e2e5b99d2e82136396d6261111930a4a28700fb0/.DS_Store -------------------------------------------------------------------------------- /.idea/AImedical.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 135 | 136 | 137 | 138 | jieba 139 | KeywordExtractor 140 | jbal 141 | 不举 142 | 19 143 | 21 144 | 50 145 | 146 | 000 147 | 2000 148 | 胃疼 149 | 150 | 如 19 mc 151 | 152 | 153 | 21 154 | 50 155 | 2000 156 | 20 157 | 158 | 159 | 160 | 178 | 179 | 180 | 181 | 182 | true 183 | DEFINITION_ORDER 184 | 185 | 186 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 |