├── Machine Learning In Action ├── CHapter11-Apriori │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── workspace.xml │ │ └── 第十一章Apriori.iml │ └── Apiori.py ├── Chapter10-Kmeans │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── workspace.xml │ │ └── 第十章k均值.iml │ ├── biKmeans.py │ ├── kMeans.py │ ├── testSet.txt │ └── testSet2.txt ├── Chapter13-PCA │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── workspace.xml │ │ └── 第十三章PCA.iml │ ├── pca.py │ ├── pca1.py │ ├── secom.data │ └── testSet.txt ├── Chapter14-SVD │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── workspace.xml │ │ └── 第十四章SVD.iml │ ├── 0_5.txt │ ├── SVD1.py │ └── scd_picture.py ├── Chapter15-Hadoop │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── workspace.xml │ │ └── 第十五章 Hadoop.iml │ ├── MyMapper.py │ ├── MyReducer.py │ ├── err.txt │ ├── inputFile.txt │ ├── junk.txt │ ├── kickStart.txt │ ├── mrMean.py │ ├── mrMeanMapper.py │ ├── mrMeanReducer.py │ ├── mrSVM.py │ ├── mrSVMkickStart.py │ ├── myfile.txt │ ├── myout.txt │ ├── pegasos.py │ ├── proximalSVM.py │ ├── py27dbg.py │ ├── svmDat2.txt │ ├── svmDat26 │ ├── svmDat27 │ ├── svmData.txt │ ├── testSet.txt │ ├── testSet200.txt │ └── wc.py ├── Chapter3-Decision_tree │ ├── README.md │ ├── classifierStorage.txt │ ├── decision_tree │ ├── decision_tree.py │ ├── lenses.txt │ └── sklearn_decision_tree.py ├── Chapter4-NaiveBayes │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── workspace.xml │ │ └── 第四章朴素贝叶斯.iml │ ├── NB_spam_classify.py │ ├── beiyesi.py │ ├── email │ │ ├── ham │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ ├── 19.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 21.txt │ │ │ ├── 22.txt │ │ │ ├── 23.txt │ │ │ ├── 24.txt │ │ │ ├── 25.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ ├── 5.txt │ │ │ ├── 6.txt │ │ │ ├── 7.txt │ │ │ ├── 8.txt │ │ │ └── 9.txt │ │ └── spam │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ ├── 19.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 21.txt │ │ │ ├── 22.txt │ │ │ ├── 23.txt │ │ │ ├── 24.txt │ │ │ ├── 25.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ ├── 5.txt │ │ │ ├── 6.txt │ │ │ ├── 7.txt │ │ │ ├── 8.txt │ │ │ └── 9.txt │ ├── spam.py │ └── venv │ │ ├── Include │ │ ├── Python-ast.h │ │ ├── Python.h │ │ ├── abstract.h │ │ ├── accu.h │ │ ├── asdl.h │ │ ├── ast.h │ │ ├── bitset.h │ │ ├── bltinmodule.h │ │ ├── boolobject.h │ │ ├── bytearrayobject.h │ │ ├── bytes_methods.h │ │ ├── bytesobject.h │ │ ├── cellobject.h │ │ ├── ceval.h │ │ ├── classobject.h │ │ ├── code.h │ │ ├── codecs.h │ │ ├── compile.h │ │ ├── complexobject.h │ │ ├── datetime.h │ │ ├── descrobject.h │ │ ├── dictobject.h │ │ ├── dtoa.h │ │ ├── dynamic_annotations.h │ │ ├── enumobject.h │ │ ├── errcode.h │ │ ├── eval.h │ │ ├── fileobject.h │ │ ├── fileutils.h │ │ ├── floatobject.h │ │ ├── frameobject.h │ │ ├── funcobject.h │ │ ├── genobject.h │ │ ├── graminit.h │ │ ├── grammar.h │ │ ├── greenlet │ │ │ └── greenlet.h │ │ ├── import.h │ │ ├── intrcheck.h │ │ ├── iterobject.h │ │ ├── listobject.h │ │ ├── longintrepr.h │ │ ├── longobject.h │ │ ├── marshal.h │ │ ├── memoryobject.h │ │ ├── metagrammar.h │ │ ├── methodobject.h │ │ ├── modsupport.h │ │ ├── moduleobject.h │ │ ├── namespaceobject.h │ │ ├── node.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── odictobject.h │ │ ├── opcode.h │ │ ├── osdefs.h │ │ ├── osmodule.h │ │ ├── parsetok.h │ │ ├── patchlevel.h │ │ ├── pgen.h │ │ ├── pgenheaders.h │ │ ├── py_curses.h │ │ ├── pyarena.h │ │ ├── pyatomic.h │ │ ├── pycapsule.h │ │ ├── pyconfig.h │ │ ├── pyctype.h │ │ ├── pydebug.h │ │ ├── pydtrace.d │ │ ├── pydtrace.h │ │ ├── pyerrors.h │ │ ├── pyexpat.h │ │ ├── pyfpe.h │ │ ├── pygetopt.h │ │ ├── pyhash.h │ │ ├── pylifecycle.h │ │ ├── pymacconfig.h │ │ ├── pymacro.h │ │ ├── pymath.h │ │ ├── pymem.h │ │ ├── pyport.h │ │ ├── pystate.h │ │ ├── pystrcmp.h │ │ ├── pystrhex.h │ │ ├── pystrtod.h │ │ ├── pythonrun.h │ │ ├── pythread.h │ │ ├── pytime.h │ │ ├── rangeobject.h │ │ ├── setobject.h │ │ ├── sip.h │ │ ├── sliceobject.h │ │ ├── structmember.h │ │ ├── structseq.h │ │ ├── symtable.h │ │ ├── sysmodule.h │ │ ├── token.h │ │ ├── traceback.h │ │ ├── tupleobject.h │ │ ├── typeslots.h │ │ ├── ucnhash.h │ │ ├── unicodeobject.h │ │ ├── warnings.h │ │ └── weakrefobject.h │ │ ├── Lib │ │ ├── __future__.py │ │ ├── __pycache__ │ │ │ ├── _bootlocale.cpython-36.pyc │ │ │ ├── _collections_abc.cpython-36.pyc │ │ │ ├── _weakrefset.cpython-36.pyc │ │ │ ├── abc.cpython-36.pyc │ │ │ ├── codecs.cpython-36.pyc │ │ │ ├── copyreg.cpython-36.pyc │ │ │ ├── enum.cpython-36.pyc │ │ │ ├── functools.cpython-36.pyc │ │ │ ├── genericpath.cpython-36.pyc │ │ │ ├── heapq.cpython-36.pyc │ │ │ ├── io.cpython-36.pyc │ │ │ ├── keyword.cpython-36.pyc │ │ │ ├── locale.cpython-36.pyc │ │ │ ├── ntpath.cpython-36.pyc │ │ │ ├── operator.cpython-36.pyc │ │ │ ├── os.cpython-36.pyc │ │ │ ├── re.cpython-36.pyc │ │ │ ├── reprlib.cpython-36.pyc │ │ │ ├── site.cpython-36.pyc │ │ │ ├── sre_compile.cpython-36.pyc │ │ │ ├── sre_constants.cpython-36.pyc │ │ │ ├── sre_parse.cpython-36.pyc │ │ │ ├── stat.cpython-36.pyc │ │ │ ├── types.cpython-36.pyc │ │ │ └── weakref.cpython-36.pyc │ │ ├── _bootlocale.py │ │ ├── _collections_abc.py │ │ ├── _dummy_thread.py │ │ ├── _weakrefset.py │ │ ├── abc.py │ │ ├── base64.py │ │ ├── bisect.py │ │ ├── codecs.py │ │ ├── collections │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── abc.cpython-36.pyc │ │ │ └── abc.py │ │ ├── copy.py │ │ ├── copyreg.py │ │ ├── distutils │ │ │ ├── __init__.py │ │ │ └── distutils.cfg │ │ ├── encodings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── aliases.cpython-36.pyc │ │ │ │ ├── ascii.cpython-36.pyc │ │ │ │ ├── base64_codec.cpython-36.pyc │ │ │ │ ├── big5.cpython-36.pyc │ │ │ │ ├── big5hkscs.cpython-36.pyc │ │ │ │ ├── bz2_codec.cpython-36.pyc │ │ │ │ ├── charmap.cpython-36.pyc │ │ │ │ ├── cp037.cpython-36.pyc │ │ │ │ ├── cp1006.cpython-36.pyc │ │ │ │ ├── cp1026.cpython-36.pyc │ │ │ │ ├── cp1125.cpython-36.pyc │ │ │ │ ├── cp1140.cpython-36.pyc │ │ │ │ ├── cp1250.cpython-36.pyc │ │ │ │ ├── cp1251.cpython-36.pyc │ │ │ │ ├── cp1252.cpython-36.pyc │ │ │ │ ├── cp1253.cpython-36.pyc │ │ │ │ ├── cp1254.cpython-36.pyc │ │ │ │ ├── cp1255.cpython-36.pyc │ │ │ │ ├── cp1256.cpython-36.pyc │ │ │ │ ├── cp1257.cpython-36.pyc │ │ │ │ ├── cp1258.cpython-36.pyc │ │ │ │ ├── cp273.cpython-36.pyc │ │ │ │ ├── cp424.cpython-36.pyc │ │ │ │ ├── cp437.cpython-36.pyc │ │ │ │ ├── cp500.cpython-36.pyc │ │ │ │ ├── cp65001.cpython-36.pyc │ │ │ │ ├── cp720.cpython-36.pyc │ │ │ │ ├── cp737.cpython-36.pyc │ │ │ │ ├── cp775.cpython-36.pyc │ │ │ │ ├── cp850.cpython-36.pyc │ │ │ │ ├── cp852.cpython-36.pyc │ │ │ │ ├── cp855.cpython-36.pyc │ │ │ │ ├── cp856.cpython-36.pyc │ │ │ │ ├── cp857.cpython-36.pyc │ │ │ │ ├── cp858.cpython-36.pyc │ │ │ │ ├── cp860.cpython-36.pyc │ │ │ │ ├── cp861.cpython-36.pyc │ │ │ │ ├── cp862.cpython-36.pyc │ │ │ │ ├── cp863.cpython-36.pyc │ │ │ │ ├── cp864.cpython-36.pyc │ │ │ │ ├── cp865.cpython-36.pyc │ │ │ │ ├── cp866.cpython-36.pyc │ │ │ │ ├── cp869.cpython-36.pyc │ │ │ │ ├── cp874.cpython-36.pyc │ │ │ │ ├── cp875.cpython-36.pyc │ │ │ │ ├── cp932.cpython-36.pyc │ │ │ │ ├── cp949.cpython-36.pyc │ │ │ │ ├── cp950.cpython-36.pyc │ │ │ │ ├── euc_jis_2004.cpython-36.pyc │ │ │ │ ├── euc_jisx0213.cpython-36.pyc │ │ │ │ ├── euc_jp.cpython-36.pyc │ │ │ │ ├── euc_kr.cpython-36.pyc │ │ │ │ ├── gb18030.cpython-36.pyc │ │ │ │ ├── gb2312.cpython-36.pyc │ │ │ │ ├── gbk.cpython-36.pyc │ │ │ │ ├── hex_codec.cpython-36.pyc │ │ │ │ ├── hp_roman8.cpython-36.pyc │ │ │ │ ├── hz.cpython-36.pyc │ │ │ │ ├── idna.cpython-36.pyc │ │ │ │ ├── iso2022_jp.cpython-36.pyc │ │ │ │ ├── iso2022_jp_1.cpython-36.pyc │ │ │ │ ├── iso2022_jp_2.cpython-36.pyc │ │ │ │ ├── iso2022_jp_2004.cpython-36.pyc │ │ │ │ ├── iso2022_jp_3.cpython-36.pyc │ │ │ │ ├── iso2022_jp_ext.cpython-36.pyc │ │ │ │ ├── iso2022_kr.cpython-36.pyc │ │ │ │ ├── iso8859_1.cpython-36.pyc │ │ │ │ ├── iso8859_10.cpython-36.pyc │ │ │ │ ├── iso8859_11.cpython-36.pyc │ │ │ │ ├── iso8859_13.cpython-36.pyc │ │ │ │ ├── iso8859_14.cpython-36.pyc │ │ │ │ ├── iso8859_15.cpython-36.pyc │ │ │ │ ├── iso8859_16.cpython-36.pyc │ │ │ │ ├── iso8859_2.cpython-36.pyc │ │ │ │ ├── iso8859_3.cpython-36.pyc │ │ │ │ ├── iso8859_4.cpython-36.pyc │ │ │ │ ├── iso8859_5.cpython-36.pyc │ │ │ │ ├── iso8859_6.cpython-36.pyc │ │ │ │ ├── iso8859_7.cpython-36.pyc │ │ │ │ ├── iso8859_8.cpython-36.pyc │ │ │ │ ├── iso8859_9.cpython-36.pyc │ │ │ │ ├── johab.cpython-36.pyc │ │ │ │ ├── koi8_r.cpython-36.pyc │ │ │ │ ├── koi8_t.cpython-36.pyc │ │ │ │ ├── koi8_u.cpython-36.pyc │ │ │ │ ├── kz1048.cpython-36.pyc │ │ │ │ ├── latin_1.cpython-36.pyc │ │ │ │ ├── mac_arabic.cpython-36.pyc │ │ │ │ ├── mac_centeuro.cpython-36.pyc │ │ │ │ ├── mac_croatian.cpython-36.pyc │ │ │ │ ├── mac_cyrillic.cpython-36.pyc │ │ │ │ ├── mac_farsi.cpython-36.pyc │ │ │ │ ├── mac_greek.cpython-36.pyc │ │ │ │ ├── mac_iceland.cpython-36.pyc │ │ │ │ ├── mac_latin2.cpython-36.pyc │ │ │ │ ├── mac_roman.cpython-36.pyc │ │ │ │ ├── mac_romanian.cpython-36.pyc │ │ │ │ ├── mac_turkish.cpython-36.pyc │ │ │ │ ├── mbcs.cpython-36.pyc │ │ │ │ ├── oem.cpython-36.pyc │ │ │ │ ├── palmos.cpython-36.pyc │ │ │ │ ├── ptcp154.cpython-36.pyc │ │ │ │ ├── punycode.cpython-36.pyc │ │ │ │ ├── quopri_codec.cpython-36.pyc │ │ │ │ ├── raw_unicode_escape.cpython-36.pyc │ │ │ │ ├── rot_13.cpython-36.pyc │ │ │ │ ├── shift_jis.cpython-36.pyc │ │ │ │ ├── shift_jis_2004.cpython-36.pyc │ │ │ │ ├── shift_jisx0213.cpython-36.pyc │ │ │ │ ├── tis_620.cpython-36.pyc │ │ │ │ ├── undefined.cpython-36.pyc │ │ │ │ ├── unicode_escape.cpython-36.pyc │ │ │ │ ├── unicode_internal.cpython-36.pyc │ │ │ │ ├── utf_16.cpython-36.pyc │ │ │ │ ├── utf_16_be.cpython-36.pyc │ │ │ │ ├── utf_16_le.cpython-36.pyc │ │ │ │ ├── utf_32.cpython-36.pyc │ │ │ │ ├── utf_32_be.cpython-36.pyc │ │ │ │ ├── utf_32_le.cpython-36.pyc │ │ │ │ ├── utf_7.cpython-36.pyc │ │ │ │ ├── utf_8.cpython-36.pyc │ │ │ │ ├── utf_8_sig.cpython-36.pyc │ │ │ │ ├── uu_codec.cpython-36.pyc │ │ │ │ └── zlib_codec.cpython-36.pyc │ │ │ ├── aliases.py │ │ │ ├── ascii.py │ │ │ ├── base64_codec.py │ │ │ ├── big5.py │ │ │ ├── big5hkscs.py │ │ │ ├── bz2_codec.py │ │ │ ├── charmap.py │ │ │ ├── cp037.py │ │ │ ├── cp1006.py │ │ │ ├── cp1026.py │ │ │ ├── cp1125.py │ │ │ ├── cp1140.py │ │ │ ├── cp1250.py │ │ │ ├── cp1251.py │ │ │ ├── cp1252.py │ │ │ ├── cp1253.py │ │ │ ├── cp1254.py │ │ │ ├── cp1255.py │ │ │ ├── cp1256.py │ │ │ ├── cp1257.py │ │ │ ├── cp1258.py │ │ │ ├── cp273.py │ │ │ ├── cp424.py │ │ │ ├── cp437.py │ │ │ ├── cp500.py │ │ │ ├── cp65001.py │ │ │ ├── cp720.py │ │ │ ├── cp737.py │ │ │ ├── cp775.py │ │ │ ├── cp850.py │ │ │ ├── cp852.py │ │ │ ├── cp855.py │ │ │ ├── cp856.py │ │ │ ├── cp857.py │ │ │ ├── cp858.py │ │ │ ├── cp860.py │ │ │ ├── cp861.py │ │ │ ├── cp862.py │ │ │ ├── cp863.py │ │ │ ├── cp864.py │ │ │ ├── cp865.py │ │ │ ├── cp866.py │ │ │ ├── cp869.py │ │ │ ├── cp874.py │ │ │ ├── cp875.py │ │ │ ├── cp932.py │ │ │ ├── cp949.py │ │ │ ├── cp950.py │ │ │ ├── euc_jis_2004.py │ │ │ ├── euc_jisx0213.py │ │ │ ├── euc_jp.py │ │ │ ├── euc_kr.py │ │ │ ├── gb18030.py │ │ │ ├── gb2312.py │ │ │ ├── gbk.py │ │ │ ├── hex_codec.py │ │ │ ├── hp_roman8.py │ │ │ ├── hz.py │ │ │ ├── idna.py │ │ │ ├── iso2022_jp.py │ │ │ ├── iso2022_jp_1.py │ │ │ ├── iso2022_jp_2.py │ │ │ ├── iso2022_jp_2004.py │ │ │ ├── iso2022_jp_3.py │ │ │ ├── iso2022_jp_ext.py │ │ │ ├── iso2022_kr.py │ │ │ ├── iso8859_1.py │ │ │ ├── iso8859_10.py │ │ │ ├── iso8859_11.py │ │ │ ├── iso8859_13.py │ │ │ ├── iso8859_14.py │ │ │ ├── iso8859_15.py │ │ │ ├── iso8859_16.py │ │ │ ├── iso8859_2.py │ │ │ ├── iso8859_3.py │ │ │ ├── iso8859_4.py │ │ │ ├── iso8859_5.py │ │ │ ├── iso8859_6.py │ │ │ ├── iso8859_7.py │ │ │ ├── iso8859_8.py │ │ │ ├── iso8859_9.py │ │ │ ├── johab.py │ │ │ ├── koi8_r.py │ │ │ ├── koi8_t.py │ │ │ ├── koi8_u.py │ │ │ ├── kz1048.py │ │ │ ├── latin_1.py │ │ │ ├── mac_arabic.py │ │ │ ├── mac_centeuro.py │ │ │ ├── mac_croatian.py │ │ │ ├── mac_cyrillic.py │ │ │ ├── mac_farsi.py │ │ │ ├── mac_greek.py │ │ │ ├── mac_iceland.py │ │ │ ├── mac_latin2.py │ │ │ ├── mac_roman.py │ │ │ ├── mac_romanian.py │ │ │ ├── mac_turkish.py │ │ │ ├── mbcs.py │ │ │ ├── oem.py │ │ │ ├── palmos.py │ │ │ ├── ptcp154.py │ │ │ ├── punycode.py │ │ │ ├── quopri_codec.py │ │ │ ├── raw_unicode_escape.py │ │ │ ├── rot_13.py │ │ │ ├── shift_jis.py │ │ │ ├── shift_jis_2004.py │ │ │ ├── shift_jisx0213.py │ │ │ ├── tis_620.py │ │ │ ├── undefined.py │ │ │ ├── unicode_escape.py │ │ │ ├── unicode_internal.py │ │ │ ├── utf_16.py │ │ │ ├── utf_16_be.py │ │ │ ├── utf_16_le.py │ │ │ ├── utf_32.py │ │ │ ├── utf_32_be.py │ │ │ ├── utf_32_le.py │ │ │ ├── utf_7.py │ │ │ ├── utf_8.py │ │ │ ├── utf_8_sig.py │ │ │ ├── uu_codec.py │ │ │ └── zlib_codec.py │ │ ├── enum.py │ │ ├── fnmatch.py │ │ ├── functools.py │ │ ├── genericpath.py │ │ ├── hashlib.py │ │ ├── heapq.py │ │ ├── hmac.py │ │ ├── imp.py │ │ ├── importlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _bootstrap.cpython-36.pyc │ │ │ │ ├── _bootstrap_external.cpython-36.pyc │ │ │ │ ├── abc.cpython-36.pyc │ │ │ │ ├── machinery.cpython-36.pyc │ │ │ │ └── util.cpython-36.pyc │ │ │ ├── _bootstrap.py │ │ │ ├── _bootstrap_external.py │ │ │ ├── abc.py │ │ │ ├── machinery.py │ │ │ └── util.py │ │ ├── io.py │ │ ├── keyword.py │ │ ├── linecache.py │ │ ├── locale.py │ │ ├── no-global-site-packages.txt │ │ ├── ntpath.py │ │ ├── operator.py │ │ ├── orig-prefix.txt │ │ ├── os.py │ │ ├── posixpath.py │ │ ├── random.py │ │ ├── re.py │ │ ├── reprlib.py │ │ ├── rlcompleter.py │ │ ├── shutil.py │ │ ├── site-packages │ │ │ ├── __pycache__ │ │ │ │ └── easy_install.cpython-36.pyc │ │ │ ├── easy_install.py │ │ │ ├── pip-9.0.1.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ ├── pip │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── __main__.cpython-36.pyc │ │ │ │ │ ├── basecommand.cpython-36.pyc │ │ │ │ │ ├── baseparser.cpython-36.pyc │ │ │ │ │ ├── cmdoptions.cpython-36.pyc │ │ │ │ │ ├── download.cpython-36.pyc │ │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ │ ├── index.cpython-36.pyc │ │ │ │ │ ├── locations.cpython-36.pyc │ │ │ │ │ ├── pep425tags.cpython-36.pyc │ │ │ │ │ ├── status_codes.cpython-36.pyc │ │ │ │ │ └── wheel.cpython-36.pyc │ │ │ │ ├── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── appdirs.cpython-36.pyc │ │ │ │ │ │ ├── distro.cpython-36.pyc │ │ │ │ │ │ ├── ipaddress.cpython-36.pyc │ │ │ │ │ │ ├── ordereddict.cpython-36.pyc │ │ │ │ │ │ ├── pyparsing.cpython-36.pyc │ │ │ │ │ │ ├── re-vendor.cpython-36.pyc │ │ │ │ │ │ ├── retrying.cpython-36.pyc │ │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── cachecontrol │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── _cmd.cpython-36.pyc │ │ │ │ │ │ │ ├── adapter.cpython-36.pyc │ │ │ │ │ │ │ ├── cache.cpython-36.pyc │ │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ │ ├── controller.cpython-36.pyc │ │ │ │ │ │ │ ├── filewrapper.cpython-36.pyc │ │ │ │ │ │ │ ├── heuristics.cpython-36.pyc │ │ │ │ │ │ │ ├── serialize.cpython-36.pyc │ │ │ │ │ │ │ └── wrapper.cpython-36.pyc │ │ │ │ │ │ ├── _cmd.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ ├── caches │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── file_cache.cpython-36.pyc │ │ │ │ │ │ │ │ └── redis_cache.cpython-36.pyc │ │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── controller.py │ │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ │ ├── heuristics.py │ │ │ │ │ │ ├── serialize.py │ │ │ │ │ │ └── wrapper.py │ │ │ │ │ ├── colorama │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── ansi.cpython-36.pyc │ │ │ │ │ │ │ ├── ansitowin32.cpython-36.pyc │ │ │ │ │ │ │ ├── initialise.cpython-36.pyc │ │ │ │ │ │ │ ├── win32.cpython-36.pyc │ │ │ │ │ │ │ └── winterm.cpython-36.pyc │ │ │ │ │ │ ├── ansi.py │ │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ │ ├── initialise.py │ │ │ │ │ │ ├── win32.py │ │ │ │ │ │ └── winterm.py │ │ │ │ │ ├── distlib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ │ ├── database.cpython-36.pyc │ │ │ │ │ │ │ ├── index.cpython-36.pyc │ │ │ │ │ │ │ ├── locators.cpython-36.pyc │ │ │ │ │ │ │ ├── manifest.cpython-36.pyc │ │ │ │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ │ │ ├── resources.cpython-36.pyc │ │ │ │ │ │ │ ├── scripts.cpython-36.pyc │ │ │ │ │ │ │ ├── util.cpython-36.pyc │ │ │ │ │ │ │ ├── version.cpython-36.pyc │ │ │ │ │ │ │ └── wheel.cpython-36.pyc │ │ │ │ │ │ ├── _backport │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ │ │ │ │ ├── shutil.cpython-36.pyc │ │ │ │ │ │ │ │ ├── sysconfig.cpython-36.pyc │ │ │ │ │ │ │ │ └── tarfile.cpython-36.pyc │ │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ │ ├── shutil.py │ │ │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ │ └── tarfile.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── database.py │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ ├── locators.py │ │ │ │ │ │ ├── manifest.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── resources.py │ │ │ │ │ │ ├── scripts.py │ │ │ │ │ │ ├── t32.exe │ │ │ │ │ │ ├── t64.exe │ │ │ │ │ │ ├── util.py │ │ │ │ │ │ ├── version.py │ │ │ │ │ │ ├── w32.exe │ │ │ │ │ │ ├── w64.exe │ │ │ │ │ │ └── wheel.py │ │ │ │ │ ├── distro.py │ │ │ │ │ ├── html5lib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── _ihatexml.cpython-36.pyc │ │ │ │ │ │ │ ├── _inputstream.cpython-36.pyc │ │ │ │ │ │ │ ├── _tokenizer.cpython-36.pyc │ │ │ │ │ │ │ ├── _utils.cpython-36.pyc │ │ │ │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ │ │ │ ├── html5parser.cpython-36.pyc │ │ │ │ │ │ │ └── serializer.cpython-36.pyc │ │ │ │ │ │ ├── _ihatexml.py │ │ │ │ │ │ ├── _inputstream.py │ │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ │ ├── _trie │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── _base.cpython-36.pyc │ │ │ │ │ │ │ │ ├── datrie.cpython-36.pyc │ │ │ │ │ │ │ │ └── py.cpython-36.pyc │ │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ │ ├── datrie.py │ │ │ │ │ │ │ └── py.py │ │ │ │ │ │ ├── _utils.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── alphabeticalattributes.cpython-36.pyc │ │ │ │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ │ │ │ ├── inject_meta_charset.cpython-36.pyc │ │ │ │ │ │ │ │ ├── lint.cpython-36.pyc │ │ │ │ │ │ │ │ ├── optionaltags.cpython-36.pyc │ │ │ │ │ │ │ │ ├── sanitizer.cpython-36.pyc │ │ │ │ │ │ │ │ └── whitespace.cpython-36.pyc │ │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ │ └── whitespace.py │ │ │ │ │ │ ├── html5parser.py │ │ │ │ │ │ ├── serializer.py │ │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── genshi.cpython-36.pyc │ │ │ │ │ │ │ │ └── sax.cpython-36.pyc │ │ │ │ │ │ │ ├── genshi.py │ │ │ │ │ │ │ └── sax.py │ │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ │ │ │ ├── dom.cpython-36.pyc │ │ │ │ │ │ │ │ ├── etree.cpython-36.pyc │ │ │ │ │ │ │ │ └── etree_lxml.cpython-36.pyc │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ │ └── etree_lxml.py │ │ │ │ │ │ └── treewalkers │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ │ │ ├── dom.cpython-36.pyc │ │ │ │ │ │ │ ├── etree.cpython-36.pyc │ │ │ │ │ │ │ ├── etree_lxml.cpython-36.pyc │ │ │ │ │ │ │ └── genshi.cpython-36.pyc │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ │ │ └── genshi.py │ │ │ │ │ ├── ipaddress.py │ │ │ │ │ ├── lockfile │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── linklockfile.cpython-36.pyc │ │ │ │ │ │ │ ├── mkdirlockfile.cpython-36.pyc │ │ │ │ │ │ │ ├── pidlockfile.cpython-36.pyc │ │ │ │ │ │ │ ├── sqlitelockfile.cpython-36.pyc │ │ │ │ │ │ │ └── symlinklockfile.cpython-36.pyc │ │ │ │ │ │ ├── linklockfile.py │ │ │ │ │ │ ├── mkdirlockfile.py │ │ │ │ │ │ ├── pidlockfile.py │ │ │ │ │ │ ├── sqlitelockfile.py │ │ │ │ │ │ └── symlinklockfile.py │ │ │ │ │ ├── ordereddict.py │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __about__.cpython-36.pyc │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── _compat.cpython-36.pyc │ │ │ │ │ │ │ ├── _structures.cpython-36.pyc │ │ │ │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ │ │ │ ├── requirements.cpython-36.pyc │ │ │ │ │ │ │ ├── specifiers.cpython-36.pyc │ │ │ │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ │ │ │ └── version.cpython-36.pyc │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── version.py │ │ │ │ │ ├── pkg_resources │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ │ ├── progress │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── bar.cpython-36.pyc │ │ │ │ │ │ │ ├── counter.cpython-36.pyc │ │ │ │ │ │ │ ├── helpers.cpython-36.pyc │ │ │ │ │ │ │ └── spinner.cpython-36.pyc │ │ │ │ │ │ ├── bar.py │ │ │ │ │ │ ├── counter.py │ │ │ │ │ │ ├── helpers.py │ │ │ │ │ │ └── spinner.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ ├── re-vendor.py │ │ │ │ │ ├── requests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── adapters.cpython-36.pyc │ │ │ │ │ │ │ ├── api.cpython-36.pyc │ │ │ │ │ │ │ ├── auth.cpython-36.pyc │ │ │ │ │ │ │ ├── certs.cpython-36.pyc │ │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ │ ├── cookies.cpython-36.pyc │ │ │ │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ │ │ │ ├── hooks.cpython-36.pyc │ │ │ │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ │ │ │ ├── sessions.cpython-36.pyc │ │ │ │ │ │ │ ├── status_codes.cpython-36.pyc │ │ │ │ │ │ │ ├── structures.cpython-36.pyc │ │ │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ │ │ ├── adapters.py │ │ │ │ │ │ ├── api.py │ │ │ │ │ │ ├── auth.py │ │ │ │ │ │ ├── cacert.pem │ │ │ │ │ │ ├── certs.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── cookies.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ ├── hooks.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── chardet │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── big5freq.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── big5prober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── chardetect.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── chardistribution.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── charsetgroupprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── charsetprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── codingstatemachine.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── cp949prober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── escprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── escsm.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── eucjpprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── euckrfreq.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── euckrprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── euctwfreq.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── euctwprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── gb2312freq.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── gb2312prober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── hebrewprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── jisfreq.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── jpcntx.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langbulgarianmodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langcyrillicmodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langgreekmodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langhebrewmodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langhungarianmodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langthaimodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── latin1prober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── mbcharsetprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── mbcsgroupprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── mbcssm.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── sbcharsetprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── sbcsgroupprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── sjisprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── universaldetector.cpython-36.pyc │ │ │ │ │ │ │ │ │ └── utf8prober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── big5freq.py │ │ │ │ │ │ │ │ ├── big5prober.py │ │ │ │ │ │ │ │ ├── chardetect.py │ │ │ │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ │ │ │ ├── escprober.py │ │ │ │ │ │ │ │ ├── escsm.py │ │ │ │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ │ │ │ └── utf8prober.py │ │ │ │ │ │ │ └── urllib3 │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── _collections.cpython-36.pyc │ │ │ │ │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ │ │ │ │ ├── connectionpool.cpython-36.pyc │ │ │ │ │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ │ │ │ │ ├── fields.cpython-36.pyc │ │ │ │ │ │ │ │ ├── filepost.cpython-36.pyc │ │ │ │ │ │ │ │ ├── poolmanager.cpython-36.pyc │ │ │ │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ │ │ │ └── response.cpython-36.pyc │ │ │ │ │ │ │ │ ├── _collections.py │ │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── appengine.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── ntlmpool.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── pyopenssl.cpython-36.pyc │ │ │ │ │ │ │ │ │ └── socks.cpython-36.pyc │ │ │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ │ │ └── socks.py │ │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ │ ├── filepost.py │ │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── ordered_dict.cpython-36.pyc │ │ │ │ │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ │ └── _implementation.cpython-36.pyc │ │ │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ │ │ │ │ ├── retry.cpython-36.pyc │ │ │ │ │ │ │ │ ├── ssl_.cpython-36.pyc │ │ │ │ │ │ │ │ ├── timeout.cpython-36.pyc │ │ │ │ │ │ │ │ └── url.cpython-36.pyc │ │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ │ │ └── url.py │ │ │ │ │ │ ├── sessions.py │ │ │ │ │ │ ├── status_codes.py │ │ │ │ │ │ ├── structures.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── retrying.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── webencodings │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── labels.cpython-36.pyc │ │ │ │ │ │ ├── mklabels.cpython-36.pyc │ │ │ │ │ │ ├── tests.cpython-36.pyc │ │ │ │ │ │ └── x_user_defined.cpython-36.pyc │ │ │ │ │ │ ├── labels.py │ │ │ │ │ │ ├── mklabels.py │ │ │ │ │ │ ├── tests.py │ │ │ │ │ │ └── x_user_defined.py │ │ │ │ ├── basecommand.py │ │ │ │ ├── baseparser.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── check.cpython-36.pyc │ │ │ │ │ │ ├── completion.cpython-36.pyc │ │ │ │ │ │ ├── download.cpython-36.pyc │ │ │ │ │ │ ├── freeze.cpython-36.pyc │ │ │ │ │ │ ├── hash.cpython-36.pyc │ │ │ │ │ │ ├── help.cpython-36.pyc │ │ │ │ │ │ ├── install.cpython-36.pyc │ │ │ │ │ │ ├── list.cpython-36.pyc │ │ │ │ │ │ ├── search.cpython-36.pyc │ │ │ │ │ │ ├── show.cpython-36.pyc │ │ │ │ │ │ ├── uninstall.cpython-36.pyc │ │ │ │ │ │ └── wheel.cpython-36.pyc │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── dictconfig.cpython-36.pyc │ │ │ │ │ └── dictconfig.py │ │ │ │ ├── download.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index.py │ │ │ │ ├── locations.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── index.cpython-36.pyc │ │ │ │ │ └── index.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── check.cpython-36.pyc │ │ │ │ │ │ └── freeze.cpython-36.pyc │ │ │ │ │ ├── check.py │ │ │ │ │ └── freeze.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── req_file.cpython-36.pyc │ │ │ │ │ │ ├── req_install.cpython-36.pyc │ │ │ │ │ │ ├── req_set.cpython-36.pyc │ │ │ │ │ │ └── req_uninstall.cpython-36.pyc │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── appdirs.cpython-36.pyc │ │ │ │ │ │ ├── build.cpython-36.pyc │ │ │ │ │ │ ├── deprecation.cpython-36.pyc │ │ │ │ │ │ ├── encoding.cpython-36.pyc │ │ │ │ │ │ ├── filesystem.cpython-36.pyc │ │ │ │ │ │ ├── glibc.cpython-36.pyc │ │ │ │ │ │ ├── hashes.cpython-36.pyc │ │ │ │ │ │ ├── logging.cpython-36.pyc │ │ │ │ │ │ ├── outdated.cpython-36.pyc │ │ │ │ │ │ ├── packaging.cpython-36.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-36.pyc │ │ │ │ │ │ └── ui.cpython-36.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── outdated.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ └── ui.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── bazaar.cpython-36.pyc │ │ │ │ │ │ ├── git.cpython-36.pyc │ │ │ │ │ │ ├── mercurial.cpython-36.pyc │ │ │ │ │ │ └── subversion.cpython-36.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ └── subversion.py │ │ │ │ └── wheel.py │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── py31compat.cpython-36.pyc │ │ │ │ ├── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── appdirs.cpython-36.pyc │ │ │ │ │ │ ├── pyparsing.cpython-36.pyc │ │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __about__.cpython-36.pyc │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── _compat.cpython-36.pyc │ │ │ │ │ │ │ ├── _structures.cpython-36.pyc │ │ │ │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ │ │ │ ├── requirements.cpython-36.pyc │ │ │ │ │ │ │ ├── specifiers.cpython-36.pyc │ │ │ │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ │ │ │ └── version.cpython-36.pyc │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── version.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ └── six.py │ │ │ │ ├── extern │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── py31compat.py │ │ │ ├── setuptools-38.5.1.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── entry_points.txt │ │ │ │ ├── metadata.json │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ │ ├── setuptools │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── archive_util.cpython-36.pyc │ │ │ │ │ ├── build_meta.cpython-36.pyc │ │ │ │ │ ├── config.cpython-36.pyc │ │ │ │ │ ├── dep_util.cpython-36.pyc │ │ │ │ │ ├── depends.cpython-36.pyc │ │ │ │ │ ├── dist.cpython-36.pyc │ │ │ │ │ ├── extension.cpython-36.pyc │ │ │ │ │ ├── glibc.cpython-36.pyc │ │ │ │ │ ├── glob.cpython-36.pyc │ │ │ │ │ ├── launch.cpython-36.pyc │ │ │ │ │ ├── lib2to3_ex.cpython-36.pyc │ │ │ │ │ ├── monkey.cpython-36.pyc │ │ │ │ │ ├── msvc.cpython-36.pyc │ │ │ │ │ ├── namespaces.cpython-36.pyc │ │ │ │ │ ├── package_index.cpython-36.pyc │ │ │ │ │ ├── pep425tags.cpython-36.pyc │ │ │ │ │ ├── py27compat.cpython-36.pyc │ │ │ │ │ ├── py31compat.cpython-36.pyc │ │ │ │ │ ├── py33compat.cpython-36.pyc │ │ │ │ │ ├── py36compat.cpython-36.pyc │ │ │ │ │ ├── sandbox.cpython-36.pyc │ │ │ │ │ ├── site-patch.cpython-36.pyc │ │ │ │ │ ├── ssl_support.cpython-36.pyc │ │ │ │ │ ├── unicode_utils.cpython-36.pyc │ │ │ │ │ ├── version.cpython-36.pyc │ │ │ │ │ ├── wheel.cpython-36.pyc │ │ │ │ │ └── windows_support.cpython-36.pyc │ │ │ │ ├── archive_util.py │ │ │ │ ├── build_meta.py │ │ │ │ ├── cli-32.exe │ │ │ │ ├── cli-64.exe │ │ │ │ ├── cli.exe │ │ │ │ ├── command │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── alias.cpython-36.pyc │ │ │ │ │ │ ├── bdist_egg.cpython-36.pyc │ │ │ │ │ │ ├── bdist_rpm.cpython-36.pyc │ │ │ │ │ │ ├── bdist_wininst.cpython-36.pyc │ │ │ │ │ │ ├── build_clib.cpython-36.pyc │ │ │ │ │ │ ├── build_ext.cpython-36.pyc │ │ │ │ │ │ ├── build_py.cpython-36.pyc │ │ │ │ │ │ ├── develop.cpython-36.pyc │ │ │ │ │ │ ├── dist_info.cpython-36.pyc │ │ │ │ │ │ ├── easy_install.cpython-36.pyc │ │ │ │ │ │ ├── egg_info.cpython-36.pyc │ │ │ │ │ │ ├── install.cpython-36.pyc │ │ │ │ │ │ ├── install_egg_info.cpython-36.pyc │ │ │ │ │ │ ├── install_lib.cpython-36.pyc │ │ │ │ │ │ ├── install_scripts.cpython-36.pyc │ │ │ │ │ │ ├── py36compat.cpython-36.pyc │ │ │ │ │ │ ├── register.cpython-36.pyc │ │ │ │ │ │ ├── rotate.cpython-36.pyc │ │ │ │ │ │ ├── saveopts.cpython-36.pyc │ │ │ │ │ │ ├── sdist.cpython-36.pyc │ │ │ │ │ │ ├── setopt.cpython-36.pyc │ │ │ │ │ │ ├── test.cpython-36.pyc │ │ │ │ │ │ ├── upload.cpython-36.pyc │ │ │ │ │ │ └── upload_docs.cpython-36.pyc │ │ │ │ │ ├── alias.py │ │ │ │ │ ├── bdist_egg.py │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ ├── build_clib.py │ │ │ │ │ ├── build_ext.py │ │ │ │ │ ├── build_py.py │ │ │ │ │ ├── develop.py │ │ │ │ │ ├── dist_info.py │ │ │ │ │ ├── easy_install.py │ │ │ │ │ ├── egg_info.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ ├── install_lib.py │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ ├── launcher manifest.xml │ │ │ │ │ ├── py36compat.py │ │ │ │ │ ├── register.py │ │ │ │ │ ├── rotate.py │ │ │ │ │ ├── saveopts.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ ├── setopt.py │ │ │ │ │ ├── test.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_docs.py │ │ │ │ ├── config.py │ │ │ │ ├── dep_util.py │ │ │ │ ├── depends.py │ │ │ │ ├── dist.py │ │ │ │ ├── extension.py │ │ │ │ ├── extern │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── glibc.py │ │ │ │ ├── glob.py │ │ │ │ ├── gui-32.exe │ │ │ │ ├── gui-64.exe │ │ │ │ ├── gui.exe │ │ │ │ ├── launch.py │ │ │ │ ├── lib2to3_ex.py │ │ │ │ ├── monkey.py │ │ │ │ ├── msvc.py │ │ │ │ ├── namespaces.py │ │ │ │ ├── package_index.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── py27compat.py │ │ │ │ ├── py31compat.py │ │ │ │ ├── py33compat.py │ │ │ │ ├── py36compat.py │ │ │ │ ├── sandbox.py │ │ │ │ ├── script (dev).tmpl │ │ │ │ ├── script.tmpl │ │ │ │ ├── site-patch.py │ │ │ │ ├── ssl_support.py │ │ │ │ ├── unicode_utils.py │ │ │ │ ├── version.py │ │ │ │ ├── wheel.py │ │ │ │ └── windows_support.py │ │ │ ├── wheel-0.30.0.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ └── wheel │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __main__.cpython-36.pyc │ │ │ │ ├── archive.cpython-36.pyc │ │ │ │ ├── bdist_wheel.cpython-36.pyc │ │ │ │ ├── decorator.cpython-36.pyc │ │ │ │ ├── egg2wheel.cpython-36.pyc │ │ │ │ ├── install.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ ├── paths.cpython-36.pyc │ │ │ │ ├── pep425tags.cpython-36.pyc │ │ │ │ ├── pkginfo.cpython-36.pyc │ │ │ │ ├── util.cpython-36.pyc │ │ │ │ └── wininst2wheel.cpython-36.pyc │ │ │ │ ├── archive.py │ │ │ │ ├── bdist_wheel.py │ │ │ │ ├── decorator.py │ │ │ │ ├── egg2wheel.py │ │ │ │ ├── install.py │ │ │ │ ├── metadata.py │ │ │ │ ├── paths.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── pkginfo.py │ │ │ │ ├── signatures │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── djbec.cpython-36.pyc │ │ │ │ │ ├── ed25519py.cpython-36.pyc │ │ │ │ │ └── keys.cpython-36.pyc │ │ │ │ ├── djbec.py │ │ │ │ ├── ed25519py.py │ │ │ │ └── keys.py │ │ │ │ ├── tool │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── util.py │ │ │ │ └── wininst2wheel.py │ │ ├── site.py │ │ ├── sre_compile.py │ │ ├── sre_constants.py │ │ ├── sre_parse.py │ │ ├── stat.py │ │ ├── struct.py │ │ ├── tarfile.py │ │ ├── tempfile.py │ │ ├── token.py │ │ ├── tokenize.py │ │ ├── types.py │ │ ├── warnings.py │ │ └── weakref.py │ │ ├── Scripts │ │ ├── activate │ │ ├── activate.bat │ │ ├── activate.ps1 │ │ ├── activate_this.py │ │ ├── deactivate.bat │ │ ├── easy_install-3.6.exe │ │ ├── easy_install.exe │ │ ├── pip.exe │ │ ├── pip3.6.exe │ │ ├── pip3.exe │ │ ├── python.exe │ │ ├── python36.dll │ │ ├── pythonw.exe │ │ └── wheel.exe │ │ ├── pip-selfcheck.json │ │ └── tcl │ │ ├── tcl8.6 │ │ ├── auto.tcl │ │ ├── clock.tcl │ │ ├── encoding │ │ │ ├── ascii.enc │ │ │ ├── big5.enc │ │ │ ├── cp1250.enc │ │ │ ├── cp1251.enc │ │ │ ├── cp1252.enc │ │ │ ├── cp1253.enc │ │ │ ├── cp1254.enc │ │ │ ├── cp1255.enc │ │ │ ├── cp1256.enc │ │ │ ├── cp1257.enc │ │ │ ├── cp1258.enc │ │ │ ├── cp437.enc │ │ │ ├── cp737.enc │ │ │ ├── cp775.enc │ │ │ ├── cp850.enc │ │ │ ├── cp852.enc │ │ │ ├── cp855.enc │ │ │ ├── cp857.enc │ │ │ ├── cp860.enc │ │ │ ├── cp861.enc │ │ │ ├── cp862.enc │ │ │ ├── cp863.enc │ │ │ ├── cp864.enc │ │ │ ├── cp865.enc │ │ │ ├── cp866.enc │ │ │ ├── cp869.enc │ │ │ ├── cp874.enc │ │ │ ├── cp932.enc │ │ │ ├── cp936.enc │ │ │ ├── cp949.enc │ │ │ ├── cp950.enc │ │ │ ├── dingbats.enc │ │ │ ├── ebcdic.enc │ │ │ ├── euc-cn.enc │ │ │ ├── euc-jp.enc │ │ │ ├── euc-kr.enc │ │ │ ├── gb12345.enc │ │ │ ├── gb1988.enc │ │ │ ├── gb2312-raw.enc │ │ │ ├── gb2312.enc │ │ │ ├── iso2022-jp.enc │ │ │ ├── iso2022-kr.enc │ │ │ ├── iso2022.enc │ │ │ ├── iso8859-1.enc │ │ │ ├── iso8859-10.enc │ │ │ ├── iso8859-13.enc │ │ │ ├── iso8859-14.enc │ │ │ ├── iso8859-15.enc │ │ │ ├── iso8859-16.enc │ │ │ ├── iso8859-2.enc │ │ │ ├── iso8859-3.enc │ │ │ ├── iso8859-4.enc │ │ │ ├── iso8859-5.enc │ │ │ ├── iso8859-6.enc │ │ │ ├── iso8859-7.enc │ │ │ ├── iso8859-8.enc │ │ │ ├── iso8859-9.enc │ │ │ ├── jis0201.enc │ │ │ ├── jis0208.enc │ │ │ ├── jis0212.enc │ │ │ ├── koi8-r.enc │ │ │ ├── koi8-u.enc │ │ │ ├── ksc5601.enc │ │ │ ├── macCentEuro.enc │ │ │ ├── macCroatian.enc │ │ │ ├── macCyrillic.enc │ │ │ ├── macDingbats.enc │ │ │ ├── macGreek.enc │ │ │ ├── macIceland.enc │ │ │ ├── macJapan.enc │ │ │ ├── macRoman.enc │ │ │ ├── macRomania.enc │ │ │ ├── macThai.enc │ │ │ ├── macTurkish.enc │ │ │ ├── macUkraine.enc │ │ │ ├── shiftjis.enc │ │ │ ├── symbol.enc │ │ │ └── tis-620.enc │ │ ├── history.tcl │ │ ├── http1.0 │ │ │ ├── http.tcl │ │ │ └── pkgIndex.tcl │ │ ├── init.tcl │ │ ├── msgs │ │ │ ├── af.msg │ │ │ ├── af_za.msg │ │ │ ├── ar.msg │ │ │ ├── ar_in.msg │ │ │ ├── ar_jo.msg │ │ │ ├── ar_lb.msg │ │ │ ├── ar_sy.msg │ │ │ ├── be.msg │ │ │ ├── bg.msg │ │ │ ├── bn.msg │ │ │ ├── bn_in.msg │ │ │ ├── ca.msg │ │ │ ├── cs.msg │ │ │ ├── da.msg │ │ │ ├── de.msg │ │ │ ├── de_at.msg │ │ │ ├── de_be.msg │ │ │ ├── el.msg │ │ │ ├── en_au.msg │ │ │ ├── en_be.msg │ │ │ ├── en_bw.msg │ │ │ ├── en_ca.msg │ │ │ ├── en_gb.msg │ │ │ ├── en_hk.msg │ │ │ ├── en_ie.msg │ │ │ ├── en_in.msg │ │ │ ├── en_nz.msg │ │ │ ├── en_ph.msg │ │ │ ├── en_sg.msg │ │ │ ├── en_za.msg │ │ │ ├── en_zw.msg │ │ │ ├── eo.msg │ │ │ ├── es.msg │ │ │ ├── es_ar.msg │ │ │ ├── es_bo.msg │ │ │ ├── es_cl.msg │ │ │ ├── es_co.msg │ │ │ ├── es_cr.msg │ │ │ ├── es_do.msg │ │ │ ├── es_ec.msg │ │ │ ├── es_gt.msg │ │ │ ├── es_hn.msg │ │ │ ├── es_mx.msg │ │ │ ├── es_ni.msg │ │ │ ├── es_pa.msg │ │ │ ├── es_pe.msg │ │ │ ├── es_pr.msg │ │ │ ├── es_py.msg │ │ │ ├── es_sv.msg │ │ │ ├── es_uy.msg │ │ │ ├── es_ve.msg │ │ │ ├── et.msg │ │ │ ├── eu.msg │ │ │ ├── eu_es.msg │ │ │ ├── fa.msg │ │ │ ├── fa_in.msg │ │ │ ├── fa_ir.msg │ │ │ ├── fi.msg │ │ │ ├── fo.msg │ │ │ ├── fo_fo.msg │ │ │ ├── fr.msg │ │ │ ├── fr_be.msg │ │ │ ├── fr_ca.msg │ │ │ ├── fr_ch.msg │ │ │ ├── ga.msg │ │ │ ├── ga_ie.msg │ │ │ ├── gl.msg │ │ │ ├── gl_es.msg │ │ │ ├── gv.msg │ │ │ ├── gv_gb.msg │ │ │ ├── he.msg │ │ │ ├── hi.msg │ │ │ ├── hi_in.msg │ │ │ ├── hr.msg │ │ │ ├── hu.msg │ │ │ ├── id.msg │ │ │ ├── id_id.msg │ │ │ ├── is.msg │ │ │ ├── it.msg │ │ │ ├── it_ch.msg │ │ │ ├── ja.msg │ │ │ ├── kl.msg │ │ │ ├── kl_gl.msg │ │ │ ├── ko.msg │ │ │ ├── ko_kr.msg │ │ │ ├── kok.msg │ │ │ ├── kok_in.msg │ │ │ ├── kw.msg │ │ │ ├── kw_gb.msg │ │ │ ├── lt.msg │ │ │ ├── lv.msg │ │ │ ├── mk.msg │ │ │ ├── mr.msg │ │ │ ├── mr_in.msg │ │ │ ├── ms.msg │ │ │ ├── ms_my.msg │ │ │ ├── mt.msg │ │ │ ├── nb.msg │ │ │ ├── nl.msg │ │ │ ├── nl_be.msg │ │ │ ├── nn.msg │ │ │ ├── pl.msg │ │ │ ├── pt.msg │ │ │ ├── pt_br.msg │ │ │ ├── ro.msg │ │ │ ├── ru.msg │ │ │ ├── ru_ua.msg │ │ │ ├── sh.msg │ │ │ ├── sk.msg │ │ │ ├── sl.msg │ │ │ ├── sq.msg │ │ │ ├── sr.msg │ │ │ ├── sv.msg │ │ │ ├── sw.msg │ │ │ ├── ta.msg │ │ │ ├── ta_in.msg │ │ │ ├── te.msg │ │ │ ├── te_in.msg │ │ │ ├── th.msg │ │ │ ├── tr.msg │ │ │ ├── uk.msg │ │ │ ├── vi.msg │ │ │ ├── zh.msg │ │ │ ├── zh_cn.msg │ │ │ ├── zh_hk.msg │ │ │ ├── zh_sg.msg │ │ │ └── zh_tw.msg │ │ ├── opt0.4 │ │ │ ├── optparse.tcl │ │ │ └── pkgIndex.tcl │ │ ├── package.tcl │ │ ├── parray.tcl │ │ ├── safe.tcl │ │ ├── tclIndex │ │ ├── tm.tcl │ │ ├── tzdata │ │ │ ├── Africa │ │ │ │ ├── Abidjan │ │ │ │ ├── Accra │ │ │ │ ├── Addis_Ababa │ │ │ │ ├── Algiers │ │ │ │ ├── Asmara │ │ │ │ ├── Asmera │ │ │ │ ├── Bamako │ │ │ │ ├── Bangui │ │ │ │ ├── Banjul │ │ │ │ ├── Bissau │ │ │ │ ├── Blantyre │ │ │ │ ├── Brazzaville │ │ │ │ ├── Bujumbura │ │ │ │ ├── Cairo │ │ │ │ ├── Casablanca │ │ │ │ ├── Ceuta │ │ │ │ ├── Conakry │ │ │ │ ├── Dakar │ │ │ │ ├── Dar_es_Salaam │ │ │ │ ├── Djibouti │ │ │ │ ├── Douala │ │ │ │ ├── El_Aaiun │ │ │ │ ├── Freetown │ │ │ │ ├── Gaborone │ │ │ │ ├── Harare │ │ │ │ ├── Johannesburg │ │ │ │ ├── Juba │ │ │ │ ├── Kampala │ │ │ │ ├── Khartoum │ │ │ │ ├── Kigali │ │ │ │ ├── Kinshasa │ │ │ │ ├── Lagos │ │ │ │ ├── Libreville │ │ │ │ ├── Lome │ │ │ │ ├── Luanda │ │ │ │ ├── Lubumbashi │ │ │ │ ├── Lusaka │ │ │ │ ├── Malabo │ │ │ │ ├── Maputo │ │ │ │ ├── Maseru │ │ │ │ ├── Mbabane │ │ │ │ ├── Mogadishu │ │ │ │ ├── Monrovia │ │ │ │ ├── Nairobi │ │ │ │ ├── Ndjamena │ │ │ │ ├── Niamey │ │ │ │ ├── Nouakchott │ │ │ │ ├── Ouagadougou │ │ │ │ ├── Porto-Novo │ │ │ │ ├── Sao_Tome │ │ │ │ ├── Timbuktu │ │ │ │ ├── Tripoli │ │ │ │ ├── Tunis │ │ │ │ └── Windhoek │ │ │ ├── America │ │ │ │ ├── Adak │ │ │ │ ├── Anchorage │ │ │ │ ├── Anguilla │ │ │ │ ├── Antigua │ │ │ │ ├── Araguaina │ │ │ │ ├── Argentina │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ ├── Catamarca │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ ├── Cordoba │ │ │ │ │ ├── Jujuy │ │ │ │ │ ├── La_Rioja │ │ │ │ │ ├── Mendoza │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ ├── Salta │ │ │ │ │ ├── San_Juan │ │ │ │ │ ├── San_Luis │ │ │ │ │ ├── Tucuman │ │ │ │ │ └── Ushuaia │ │ │ │ ├── Aruba │ │ │ │ ├── Asuncion │ │ │ │ ├── Atikokan │ │ │ │ ├── Atka │ │ │ │ ├── Bahia │ │ │ │ ├── Bahia_Banderas │ │ │ │ ├── Barbados │ │ │ │ ├── Belem │ │ │ │ ├── Belize │ │ │ │ ├── Blanc-Sablon │ │ │ │ ├── Boa_Vista │ │ │ │ ├── Bogota │ │ │ │ ├── Boise │ │ │ │ ├── Buenos_Aires │ │ │ │ ├── Cambridge_Bay │ │ │ │ ├── Campo_Grande │ │ │ │ ├── Cancun │ │ │ │ ├── Caracas │ │ │ │ ├── Catamarca │ │ │ │ ├── Cayenne │ │ │ │ ├── Cayman │ │ │ │ ├── Chicago │ │ │ │ ├── Chihuahua │ │ │ │ ├── Coral_Harbour │ │ │ │ ├── Cordoba │ │ │ │ ├── Costa_Rica │ │ │ │ ├── Creston │ │ │ │ ├── Cuiaba │ │ │ │ ├── Curacao │ │ │ │ ├── Danmarkshavn │ │ │ │ ├── Dawson │ │ │ │ ├── Dawson_Creek │ │ │ │ ├── Denver │ │ │ │ ├── Detroit │ │ │ │ ├── Dominica │ │ │ │ ├── Edmonton │ │ │ │ ├── Eirunepe │ │ │ │ ├── El_Salvador │ │ │ │ ├── Ensenada │ │ │ │ ├── Fort_Nelson │ │ │ │ ├── Fort_Wayne │ │ │ │ ├── Fortaleza │ │ │ │ ├── Glace_Bay │ │ │ │ ├── Godthab │ │ │ │ ├── Goose_Bay │ │ │ │ ├── Grand_Turk │ │ │ │ ├── Grenada │ │ │ │ ├── Guadeloupe │ │ │ │ ├── Guatemala │ │ │ │ ├── Guayaquil │ │ │ │ ├── Guyana │ │ │ │ ├── Halifax │ │ │ │ ├── Havana │ │ │ │ ├── Hermosillo │ │ │ │ ├── Indiana │ │ │ │ │ ├── Indianapolis │ │ │ │ │ ├── Knox │ │ │ │ │ ├── Marengo │ │ │ │ │ ├── Petersburg │ │ │ │ │ ├── Tell_City │ │ │ │ │ ├── Vevay │ │ │ │ │ ├── Vincennes │ │ │ │ │ └── Winamac │ │ │ │ ├── Indianapolis │ │ │ │ ├── Inuvik │ │ │ │ ├── Iqaluit │ │ │ │ ├── Jamaica │ │ │ │ ├── Jujuy │ │ │ │ ├── Juneau │ │ │ │ ├── Kentucky │ │ │ │ │ ├── Louisville │ │ │ │ │ └── Monticello │ │ │ │ ├── Knox_IN │ │ │ │ ├── Kralendijk │ │ │ │ ├── La_Paz │ │ │ │ ├── Lima │ │ │ │ ├── Los_Angeles │ │ │ │ ├── Louisville │ │ │ │ ├── Lower_Princes │ │ │ │ ├── Maceio │ │ │ │ ├── Managua │ │ │ │ ├── Manaus │ │ │ │ ├── Marigot │ │ │ │ ├── Martinique │ │ │ │ ├── Matamoros │ │ │ │ ├── Mazatlan │ │ │ │ ├── Mendoza │ │ │ │ ├── Menominee │ │ │ │ ├── Merida │ │ │ │ ├── Metlakatla │ │ │ │ ├── Mexico_City │ │ │ │ ├── Miquelon │ │ │ │ ├── Moncton │ │ │ │ ├── Monterrey │ │ │ │ ├── Montevideo │ │ │ │ ├── Montreal │ │ │ │ ├── Montserrat │ │ │ │ ├── Nassau │ │ │ │ ├── New_York │ │ │ │ ├── Nipigon │ │ │ │ ├── Nome │ │ │ │ ├── Noronha │ │ │ │ ├── North_Dakota │ │ │ │ │ ├── Beulah │ │ │ │ │ ├── Center │ │ │ │ │ └── New_Salem │ │ │ │ ├── Ojinaga │ │ │ │ ├── Panama │ │ │ │ ├── Pangnirtung │ │ │ │ ├── Paramaribo │ │ │ │ ├── Phoenix │ │ │ │ ├── Port-au-Prince │ │ │ │ ├── Port_of_Spain │ │ │ │ ├── Porto_Acre │ │ │ │ ├── Porto_Velho │ │ │ │ ├── Puerto_Rico │ │ │ │ ├── Rainy_River │ │ │ │ ├── Rankin_Inlet │ │ │ │ ├── Recife │ │ │ │ ├── Regina │ │ │ │ ├── Resolute │ │ │ │ ├── Rio_Branco │ │ │ │ ├── Rosario │ │ │ │ ├── Santa_Isabel │ │ │ │ ├── Santarem │ │ │ │ ├── Santiago │ │ │ │ ├── Santo_Domingo │ │ │ │ ├── Sao_Paulo │ │ │ │ ├── Scoresbysund │ │ │ │ ├── Shiprock │ │ │ │ ├── Sitka │ │ │ │ ├── St_Barthelemy │ │ │ │ ├── St_Johns │ │ │ │ ├── St_Kitts │ │ │ │ ├── St_Lucia │ │ │ │ ├── St_Thomas │ │ │ │ ├── St_Vincent │ │ │ │ ├── Swift_Current │ │ │ │ ├── Tegucigalpa │ │ │ │ ├── Thule │ │ │ │ ├── Thunder_Bay │ │ │ │ ├── Tijuana │ │ │ │ ├── Toronto │ │ │ │ ├── Tortola │ │ │ │ ├── Vancouver │ │ │ │ ├── Virgin │ │ │ │ ├── Whitehorse │ │ │ │ ├── Winnipeg │ │ │ │ ├── Yakutat │ │ │ │ └── Yellowknife │ │ │ ├── Antarctica │ │ │ │ ├── Casey │ │ │ │ ├── Davis │ │ │ │ ├── DumontDUrville │ │ │ │ ├── Macquarie │ │ │ │ ├── Mawson │ │ │ │ ├── McMurdo │ │ │ │ ├── Palmer │ │ │ │ ├── Rothera │ │ │ │ ├── South_Pole │ │ │ │ ├── Syowa │ │ │ │ ├── Troll │ │ │ │ └── Vostok │ │ │ ├── Arctic │ │ │ │ └── Longyearbyen │ │ │ ├── Asia │ │ │ │ ├── Aden │ │ │ │ ├── Almaty │ │ │ │ ├── Amman │ │ │ │ ├── Anadyr │ │ │ │ ├── Aqtau │ │ │ │ ├── Aqtobe │ │ │ │ ├── Ashgabat │ │ │ │ ├── Ashkhabad │ │ │ │ ├── Baghdad │ │ │ │ ├── Bahrain │ │ │ │ ├── Baku │ │ │ │ ├── Bangkok │ │ │ │ ├── Barnaul │ │ │ │ ├── Beirut │ │ │ │ ├── Bishkek │ │ │ │ ├── Brunei │ │ │ │ ├── Calcutta │ │ │ │ ├── Chita │ │ │ │ ├── Choibalsan │ │ │ │ ├── Chongqing │ │ │ │ ├── Chungking │ │ │ │ ├── Colombo │ │ │ │ ├── Dacca │ │ │ │ ├── Damascus │ │ │ │ ├── Dhaka │ │ │ │ ├── Dili │ │ │ │ ├── Dubai │ │ │ │ ├── Dushanbe │ │ │ │ ├── Gaza │ │ │ │ ├── Harbin │ │ │ │ ├── Hebron │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ ├── Hong_Kong │ │ │ │ ├── Hovd │ │ │ │ ├── Irkutsk │ │ │ │ ├── Istanbul │ │ │ │ ├── Jakarta │ │ │ │ ├── Jayapura │ │ │ │ ├── Jerusalem │ │ │ │ ├── Kabul │ │ │ │ ├── Kamchatka │ │ │ │ ├── Karachi │ │ │ │ ├── Kashgar │ │ │ │ ├── Kathmandu │ │ │ │ ├── Katmandu │ │ │ │ ├── Khandyga │ │ │ │ ├── Kolkata │ │ │ │ ├── Krasnoyarsk │ │ │ │ ├── Kuala_Lumpur │ │ │ │ ├── Kuching │ │ │ │ ├── Kuwait │ │ │ │ ├── Macao │ │ │ │ ├── Macau │ │ │ │ ├── Magadan │ │ │ │ ├── Makassar │ │ │ │ ├── Manila │ │ │ │ ├── Muscat │ │ │ │ ├── Nicosia │ │ │ │ ├── Novokuznetsk │ │ │ │ ├── Novosibirsk │ │ │ │ ├── Omsk │ │ │ │ ├── Oral │ │ │ │ ├── Phnom_Penh │ │ │ │ ├── Pontianak │ │ │ │ ├── Pyongyang │ │ │ │ ├── Qatar │ │ │ │ ├── Qyzylorda │ │ │ │ ├── Rangoon │ │ │ │ ├── Riyadh │ │ │ │ ├── Saigon │ │ │ │ ├── Sakhalin │ │ │ │ ├── Samarkand │ │ │ │ ├── Seoul │ │ │ │ ├── Shanghai │ │ │ │ ├── Singapore │ │ │ │ ├── Srednekolymsk │ │ │ │ ├── Taipei │ │ │ │ ├── Tashkent │ │ │ │ ├── Tbilisi │ │ │ │ ├── Tehran │ │ │ │ ├── Tel_Aviv │ │ │ │ ├── Thimbu │ │ │ │ ├── Thimphu │ │ │ │ ├── Tokyo │ │ │ │ ├── Tomsk │ │ │ │ ├── Ujung_Pandang │ │ │ │ ├── Ulaanbaatar │ │ │ │ ├── Ulan_Bator │ │ │ │ ├── Urumqi │ │ │ │ ├── Ust-Nera │ │ │ │ ├── Vientiane │ │ │ │ ├── Vladivostok │ │ │ │ ├── Yakutsk │ │ │ │ ├── Yekaterinburg │ │ │ │ └── Yerevan │ │ │ ├── Atlantic │ │ │ │ ├── Azores │ │ │ │ ├── Bermuda │ │ │ │ ├── Canary │ │ │ │ ├── Cape_Verde │ │ │ │ ├── Faeroe │ │ │ │ ├── Faroe │ │ │ │ ├── Jan_Mayen │ │ │ │ ├── Madeira │ │ │ │ ├── Reykjavik │ │ │ │ ├── South_Georgia │ │ │ │ ├── St_Helena │ │ │ │ └── Stanley │ │ │ ├── Australia │ │ │ │ ├── ACT │ │ │ │ ├── Adelaide │ │ │ │ ├── Brisbane │ │ │ │ ├── Broken_Hill │ │ │ │ ├── Canberra │ │ │ │ ├── Currie │ │ │ │ ├── Darwin │ │ │ │ ├── Eucla │ │ │ │ ├── Hobart │ │ │ │ ├── LHI │ │ │ │ ├── Lindeman │ │ │ │ ├── Lord_Howe │ │ │ │ ├── Melbourne │ │ │ │ ├── NSW │ │ │ │ ├── North │ │ │ │ ├── Perth │ │ │ │ ├── Queensland │ │ │ │ ├── South │ │ │ │ ├── Sydney │ │ │ │ ├── Tasmania │ │ │ │ ├── Victoria │ │ │ │ ├── West │ │ │ │ └── Yancowinna │ │ │ ├── Brazil │ │ │ │ ├── Acre │ │ │ │ ├── DeNoronha │ │ │ │ ├── East │ │ │ │ └── West │ │ │ ├── CET │ │ │ ├── CST6CDT │ │ │ ├── Canada │ │ │ │ ├── Atlantic │ │ │ │ ├── Central │ │ │ │ ├── East-Saskatchewan │ │ │ │ ├── Eastern │ │ │ │ ├── Mountain │ │ │ │ ├── Newfoundland │ │ │ │ ├── Pacific │ │ │ │ ├── Saskatchewan │ │ │ │ └── Yukon │ │ │ ├── Chile │ │ │ │ ├── Continental │ │ │ │ └── EasterIsland │ │ │ ├── Cuba │ │ │ ├── EET │ │ │ ├── EST │ │ │ ├── EST5EDT │ │ │ ├── Egypt │ │ │ ├── Eire │ │ │ ├── Etc │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT+1 │ │ │ │ ├── GMT+10 │ │ │ │ ├── GMT+11 │ │ │ │ ├── GMT+12 │ │ │ │ ├── GMT+2 │ │ │ │ ├── GMT+3 │ │ │ │ ├── GMT+4 │ │ │ │ ├── GMT+5 │ │ │ │ ├── GMT+6 │ │ │ │ ├── GMT+7 │ │ │ │ ├── GMT+8 │ │ │ │ ├── GMT+9 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT-1 │ │ │ │ ├── GMT-10 │ │ │ │ ├── GMT-11 │ │ │ │ ├── GMT-12 │ │ │ │ ├── GMT-13 │ │ │ │ ├── GMT-14 │ │ │ │ ├── GMT-2 │ │ │ │ ├── GMT-3 │ │ │ │ ├── GMT-4 │ │ │ │ ├── GMT-5 │ │ │ │ ├── GMT-6 │ │ │ │ ├── GMT-7 │ │ │ │ ├── GMT-8 │ │ │ │ ├── GMT-9 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── UCT │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ └── Zulu │ │ │ ├── Europe │ │ │ │ ├── Amsterdam │ │ │ │ ├── Andorra │ │ │ │ ├── Astrakhan │ │ │ │ ├── Athens │ │ │ │ ├── Belfast │ │ │ │ ├── Belgrade │ │ │ │ ├── Berlin │ │ │ │ ├── Bratislava │ │ │ │ ├── Brussels │ │ │ │ ├── Bucharest │ │ │ │ ├── Budapest │ │ │ │ ├── Busingen │ │ │ │ ├── Chisinau │ │ │ │ ├── Copenhagen │ │ │ │ ├── Dublin │ │ │ │ ├── Gibraltar │ │ │ │ ├── Guernsey │ │ │ │ ├── Helsinki │ │ │ │ ├── Isle_of_Man │ │ │ │ ├── Istanbul │ │ │ │ ├── Jersey │ │ │ │ ├── Kaliningrad │ │ │ │ ├── Kiev │ │ │ │ ├── Kirov │ │ │ │ ├── Lisbon │ │ │ │ ├── Ljubljana │ │ │ │ ├── London │ │ │ │ ├── Luxembourg │ │ │ │ ├── Madrid │ │ │ │ ├── Malta │ │ │ │ ├── Mariehamn │ │ │ │ ├── Minsk │ │ │ │ ├── Monaco │ │ │ │ ├── Moscow │ │ │ │ ├── Nicosia │ │ │ │ ├── Oslo │ │ │ │ ├── Paris │ │ │ │ ├── Podgorica │ │ │ │ ├── Prague │ │ │ │ ├── Riga │ │ │ │ ├── Rome │ │ │ │ ├── Samara │ │ │ │ ├── San_Marino │ │ │ │ ├── Sarajevo │ │ │ │ ├── Simferopol │ │ │ │ ├── Skopje │ │ │ │ ├── Sofia │ │ │ │ ├── Stockholm │ │ │ │ ├── Tallinn │ │ │ │ ├── Tirane │ │ │ │ ├── Tiraspol │ │ │ │ ├── Ulyanovsk │ │ │ │ ├── Uzhgorod │ │ │ │ ├── Vaduz │ │ │ │ ├── Vatican │ │ │ │ ├── Vienna │ │ │ │ ├── Vilnius │ │ │ │ ├── Volgograd │ │ │ │ ├── Warsaw │ │ │ │ ├── Zagreb │ │ │ │ ├── Zaporozhye │ │ │ │ └── Zurich │ │ │ ├── GB │ │ │ ├── GB-Eire │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT-0 │ │ │ ├── GMT0 │ │ │ ├── Greenwich │ │ │ ├── HST │ │ │ ├── Hongkong │ │ │ ├── Iceland │ │ │ ├── Indian │ │ │ │ ├── Antananarivo │ │ │ │ ├── Chagos │ │ │ │ ├── Christmas │ │ │ │ ├── Cocos │ │ │ │ ├── Comoro │ │ │ │ ├── Kerguelen │ │ │ │ ├── Mahe │ │ │ │ ├── Maldives │ │ │ │ ├── Mauritius │ │ │ │ ├── Mayotte │ │ │ │ └── Reunion │ │ │ ├── Iran │ │ │ ├── Israel │ │ │ ├── Jamaica │ │ │ ├── Japan │ │ │ ├── Kwajalein │ │ │ ├── Libya │ │ │ ├── MET │ │ │ ├── MST │ │ │ ├── MST7MDT │ │ │ ├── Mexico │ │ │ │ ├── BajaNorte │ │ │ │ ├── BajaSur │ │ │ │ └── General │ │ │ ├── NZ │ │ │ ├── NZ-CHAT │ │ │ ├── Navajo │ │ │ ├── PRC │ │ │ ├── PST8PDT │ │ │ ├── Pacific │ │ │ │ ├── Apia │ │ │ │ ├── Auckland │ │ │ │ ├── Bougainville │ │ │ │ ├── Chatham │ │ │ │ ├── Chuuk │ │ │ │ ├── Easter │ │ │ │ ├── Efate │ │ │ │ ├── Enderbury │ │ │ │ ├── Fakaofo │ │ │ │ ├── Fiji │ │ │ │ ├── Funafuti │ │ │ │ ├── Galapagos │ │ │ │ ├── Gambier │ │ │ │ ├── Guadalcanal │ │ │ │ ├── Guam │ │ │ │ ├── Honolulu │ │ │ │ ├── Johnston │ │ │ │ ├── Kiritimati │ │ │ │ ├── Kosrae │ │ │ │ ├── Kwajalein │ │ │ │ ├── Majuro │ │ │ │ ├── Marquesas │ │ │ │ ├── Midway │ │ │ │ ├── Nauru │ │ │ │ ├── Niue │ │ │ │ ├── Norfolk │ │ │ │ ├── Noumea │ │ │ │ ├── Pago_Pago │ │ │ │ ├── Palau │ │ │ │ ├── Pitcairn │ │ │ │ ├── Pohnpei │ │ │ │ ├── Ponape │ │ │ │ ├── Port_Moresby │ │ │ │ ├── Rarotonga │ │ │ │ ├── Saipan │ │ │ │ ├── Samoa │ │ │ │ ├── Tahiti │ │ │ │ ├── Tarawa │ │ │ │ ├── Tongatapu │ │ │ │ ├── Truk │ │ │ │ ├── Wake │ │ │ │ ├── Wallis │ │ │ │ └── Yap │ │ │ ├── Poland │ │ │ ├── Portugal │ │ │ ├── ROC │ │ │ ├── ROK │ │ │ ├── Singapore │ │ │ ├── SystemV │ │ │ │ ├── AST4 │ │ │ │ ├── AST4ADT │ │ │ │ ├── CST6 │ │ │ │ ├── CST6CDT │ │ │ │ ├── EST5 │ │ │ │ ├── EST5EDT │ │ │ │ ├── HST10 │ │ │ │ ├── MST7 │ │ │ │ ├── MST7MDT │ │ │ │ ├── PST8 │ │ │ │ ├── PST8PDT │ │ │ │ ├── YST9 │ │ │ │ └── YST9YDT │ │ │ ├── Turkey │ │ │ ├── UCT │ │ │ ├── US │ │ │ │ ├── Alaska │ │ │ │ ├── Aleutian │ │ │ │ ├── Arizona │ │ │ │ ├── Central │ │ │ │ ├── East-Indiana │ │ │ │ ├── Eastern │ │ │ │ ├── Hawaii │ │ │ │ ├── Indiana-Starke │ │ │ │ ├── Michigan │ │ │ │ ├── Mountain │ │ │ │ ├── Pacific │ │ │ │ ├── Pacific-New │ │ │ │ └── Samoa │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ ├── W-SU │ │ │ ├── WET │ │ │ └── Zulu │ │ └── word.tcl │ │ └── tk8.6 │ │ ├── bgerror.tcl │ │ ├── button.tcl │ │ ├── choosedir.tcl │ │ ├── clrpick.tcl │ │ ├── comdlg.tcl │ │ ├── console.tcl │ │ ├── demos │ │ ├── README │ │ ├── anilabel.tcl │ │ ├── aniwave.tcl │ │ ├── arrow.tcl │ │ ├── bind.tcl │ │ ├── bitmap.tcl │ │ ├── browse │ │ ├── button.tcl │ │ ├── check.tcl │ │ ├── clrpick.tcl │ │ ├── colors.tcl │ │ ├── combo.tcl │ │ ├── cscroll.tcl │ │ ├── ctext.tcl │ │ ├── dialog1.tcl │ │ ├── dialog2.tcl │ │ ├── en.msg │ │ ├── entry1.tcl │ │ ├── entry2.tcl │ │ ├── entry3.tcl │ │ ├── filebox.tcl │ │ ├── floor.tcl │ │ ├── fontchoose.tcl │ │ ├── form.tcl │ │ ├── goldberg.tcl │ │ ├── hello │ │ ├── hscale.tcl │ │ ├── icon.tcl │ │ ├── image1.tcl │ │ ├── image2.tcl │ │ ├── images │ │ │ ├── earth.gif │ │ │ ├── earthris.gif │ │ │ ├── flagdown.xbm │ │ │ ├── flagup.xbm │ │ │ ├── gray25.xbm │ │ │ ├── letters.xbm │ │ │ ├── noletter.xbm │ │ │ ├── ouster.png │ │ │ ├── pattern.xbm │ │ │ ├── tcllogo.gif │ │ │ └── teapot.ppm │ │ ├── items.tcl │ │ ├── ixset │ │ ├── knightstour.tcl │ │ ├── label.tcl │ │ ├── labelframe.tcl │ │ ├── license.terms │ │ ├── mclist.tcl │ │ ├── menu.tcl │ │ ├── menubu.tcl │ │ ├── msgbox.tcl │ │ ├── nl.msg │ │ ├── paned1.tcl │ │ ├── paned2.tcl │ │ ├── pendulum.tcl │ │ ├── plot.tcl │ │ ├── puzzle.tcl │ │ ├── radio.tcl │ │ ├── rmt │ │ ├── rolodex │ │ ├── ruler.tcl │ │ ├── sayings.tcl │ │ ├── search.tcl │ │ ├── spin.tcl │ │ ├── square │ │ ├── states.tcl │ │ ├── style.tcl │ │ ├── tclIndex │ │ ├── tcolor │ │ ├── text.tcl │ │ ├── textpeer.tcl │ │ ├── timer │ │ ├── toolbar.tcl │ │ ├── tree.tcl │ │ ├── ttkbut.tcl │ │ ├── ttkmenu.tcl │ │ ├── ttknote.tcl │ │ ├── ttkpane.tcl │ │ ├── ttkprogress.tcl │ │ ├── ttkscale.tcl │ │ ├── twind.tcl │ │ ├── unicodeout.tcl │ │ ├── vscale.tcl │ │ └── widget │ │ ├── dialog.tcl │ │ ├── entry.tcl │ │ ├── focus.tcl │ │ ├── fontchooser.tcl │ │ ├── iconlist.tcl │ │ ├── icons.tcl │ │ ├── images │ │ ├── README │ │ ├── logo.eps │ │ ├── logo100.gif │ │ ├── logo64.gif │ │ ├── logoLarge.gif │ │ ├── logoMed.gif │ │ ├── pwrdLogo.eps │ │ ├── pwrdLogo100.gif │ │ ├── pwrdLogo150.gif │ │ ├── pwrdLogo175.gif │ │ ├── pwrdLogo200.gif │ │ ├── pwrdLogo75.gif │ │ └── tai-ku.gif │ │ ├── license.terms │ │ ├── listbox.tcl │ │ ├── megawidget.tcl │ │ ├── menu.tcl │ │ ├── mkpsenc.tcl │ │ ├── msgbox.tcl │ │ ├── msgs │ │ ├── cs.msg │ │ ├── da.msg │ │ ├── de.msg │ │ ├── el.msg │ │ ├── en.msg │ │ ├── en_gb.msg │ │ ├── eo.msg │ │ ├── es.msg │ │ ├── fr.msg │ │ ├── hu.msg │ │ ├── it.msg │ │ ├── nl.msg │ │ ├── pl.msg │ │ ├── pt.msg │ │ ├── ru.msg │ │ └── sv.msg │ │ ├── obsolete.tcl │ │ ├── optMenu.tcl │ │ ├── palette.tcl │ │ ├── panedwindow.tcl │ │ ├── pkgIndex.tcl │ │ ├── safetk.tcl │ │ ├── scale.tcl │ │ ├── scrlbar.tcl │ │ ├── spinbox.tcl │ │ ├── tclIndex │ │ ├── tearoff.tcl │ │ ├── text.tcl │ │ ├── tk.tcl │ │ ├── tkfbox.tcl │ │ ├── ttk │ │ ├── altTheme.tcl │ │ ├── aquaTheme.tcl │ │ ├── button.tcl │ │ ├── clamTheme.tcl │ │ ├── classicTheme.tcl │ │ ├── combobox.tcl │ │ ├── cursors.tcl │ │ ├── defaults.tcl │ │ ├── entry.tcl │ │ ├── fonts.tcl │ │ ├── menubutton.tcl │ │ ├── notebook.tcl │ │ ├── panedwindow.tcl │ │ ├── progress.tcl │ │ ├── scale.tcl │ │ ├── scrollbar.tcl │ │ ├── sizegrip.tcl │ │ ├── spinbox.tcl │ │ ├── treeview.tcl │ │ ├── ttk.tcl │ │ ├── utils.tcl │ │ ├── vistaTheme.tcl │ │ ├── winTheme.tcl │ │ └── xpTheme.tcl │ │ ├── unsupported.tcl │ │ └── xmfbox.tcl ├── Chapter5-LogisticRegression │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── workspace.xml │ │ └── 第五章Logistic回归.iml │ ├── logistic.py │ ├── testSet.txt │ └── venv │ │ ├── Include │ │ ├── Python-ast.h │ │ ├── Python.h │ │ ├── abstract.h │ │ ├── accu.h │ │ ├── asdl.h │ │ ├── ast.h │ │ ├── bitset.h │ │ ├── bltinmodule.h │ │ ├── boolobject.h │ │ ├── bytearrayobject.h │ │ ├── bytes_methods.h │ │ ├── bytesobject.h │ │ ├── cellobject.h │ │ ├── ceval.h │ │ ├── classobject.h │ │ ├── code.h │ │ ├── codecs.h │ │ ├── compile.h │ │ ├── complexobject.h │ │ ├── datetime.h │ │ ├── descrobject.h │ │ ├── dictobject.h │ │ ├── dtoa.h │ │ ├── dynamic_annotations.h │ │ ├── enumobject.h │ │ ├── errcode.h │ │ ├── eval.h │ │ ├── fileobject.h │ │ ├── fileutils.h │ │ ├── floatobject.h │ │ ├── frameobject.h │ │ ├── funcobject.h │ │ ├── genobject.h │ │ ├── graminit.h │ │ ├── grammar.h │ │ ├── greenlet │ │ │ └── greenlet.h │ │ ├── import.h │ │ ├── intrcheck.h │ │ ├── iterobject.h │ │ ├── listobject.h │ │ ├── longintrepr.h │ │ ├── longobject.h │ │ ├── marshal.h │ │ ├── memoryobject.h │ │ ├── metagrammar.h │ │ ├── methodobject.h │ │ ├── modsupport.h │ │ ├── moduleobject.h │ │ ├── namespaceobject.h │ │ ├── node.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── odictobject.h │ │ ├── opcode.h │ │ ├── osdefs.h │ │ ├── osmodule.h │ │ ├── parsetok.h │ │ ├── patchlevel.h │ │ ├── pgen.h │ │ ├── pgenheaders.h │ │ ├── py_curses.h │ │ ├── pyarena.h │ │ ├── pyatomic.h │ │ ├── pycapsule.h │ │ ├── pyconfig.h │ │ ├── pyctype.h │ │ ├── pydebug.h │ │ ├── pydtrace.d │ │ ├── pydtrace.h │ │ ├── pyerrors.h │ │ ├── pyexpat.h │ │ ├── pyfpe.h │ │ ├── pygetopt.h │ │ ├── pyhash.h │ │ ├── pylifecycle.h │ │ ├── pymacconfig.h │ │ ├── pymacro.h │ │ ├── pymath.h │ │ ├── pymem.h │ │ ├── pyport.h │ │ ├── pystate.h │ │ ├── pystrcmp.h │ │ ├── pystrhex.h │ │ ├── pystrtod.h │ │ ├── pythonrun.h │ │ ├── pythread.h │ │ ├── pytime.h │ │ ├── rangeobject.h │ │ ├── setobject.h │ │ ├── sip.h │ │ ├── sliceobject.h │ │ ├── structmember.h │ │ ├── structseq.h │ │ ├── symtable.h │ │ ├── sysmodule.h │ │ ├── token.h │ │ ├── traceback.h │ │ ├── tupleobject.h │ │ ├── typeslots.h │ │ ├── ucnhash.h │ │ ├── unicodeobject.h │ │ ├── warnings.h │ │ └── weakrefobject.h │ │ ├── Lib │ │ ├── __future__.py │ │ ├── _bootlocale.py │ │ ├── _collections_abc.py │ │ ├── _dummy_thread.py │ │ ├── _weakrefset.py │ │ ├── abc.py │ │ ├── base64.py │ │ ├── bisect.py │ │ ├── codecs.py │ │ ├── collections │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── abc.cpython-36.pyc │ │ │ └── abc.py │ │ ├── copy.py │ │ ├── copyreg.py │ │ ├── distutils │ │ │ ├── __init__.py │ │ │ └── distutils.cfg │ │ ├── encodings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── aliases.cpython-36.pyc │ │ │ │ ├── ascii.cpython-36.pyc │ │ │ │ ├── base64_codec.cpython-36.pyc │ │ │ │ ├── big5.cpython-36.pyc │ │ │ │ ├── big5hkscs.cpython-36.pyc │ │ │ │ ├── bz2_codec.cpython-36.pyc │ │ │ │ ├── charmap.cpython-36.pyc │ │ │ │ ├── cp037.cpython-36.pyc │ │ │ │ ├── cp1006.cpython-36.pyc │ │ │ │ ├── cp1026.cpython-36.pyc │ │ │ │ ├── cp1125.cpython-36.pyc │ │ │ │ ├── cp1140.cpython-36.pyc │ │ │ │ ├── cp1250.cpython-36.pyc │ │ │ │ ├── cp1251.cpython-36.pyc │ │ │ │ ├── cp1252.cpython-36.pyc │ │ │ │ ├── cp1253.cpython-36.pyc │ │ │ │ ├── cp1254.cpython-36.pyc │ │ │ │ ├── cp1255.cpython-36.pyc │ │ │ │ ├── cp1256.cpython-36.pyc │ │ │ │ ├── cp1257.cpython-36.pyc │ │ │ │ ├── cp1258.cpython-36.pyc │ │ │ │ ├── cp273.cpython-36.pyc │ │ │ │ ├── cp424.cpython-36.pyc │ │ │ │ ├── cp437.cpython-36.pyc │ │ │ │ ├── cp500.cpython-36.pyc │ │ │ │ ├── cp65001.cpython-36.pyc │ │ │ │ ├── cp720.cpython-36.pyc │ │ │ │ ├── cp737.cpython-36.pyc │ │ │ │ ├── cp775.cpython-36.pyc │ │ │ │ ├── cp850.cpython-36.pyc │ │ │ │ ├── cp852.cpython-36.pyc │ │ │ │ ├── cp855.cpython-36.pyc │ │ │ │ ├── cp856.cpython-36.pyc │ │ │ │ ├── cp857.cpython-36.pyc │ │ │ │ ├── cp858.cpython-36.pyc │ │ │ │ ├── cp860.cpython-36.pyc │ │ │ │ ├── cp861.cpython-36.pyc │ │ │ │ ├── cp862.cpython-36.pyc │ │ │ │ ├── cp863.cpython-36.pyc │ │ │ │ ├── cp864.cpython-36.pyc │ │ │ │ ├── cp865.cpython-36.pyc │ │ │ │ ├── cp866.cpython-36.pyc │ │ │ │ ├── cp869.cpython-36.pyc │ │ │ │ ├── cp874.cpython-36.pyc │ │ │ │ ├── cp875.cpython-36.pyc │ │ │ │ ├── cp932.cpython-36.pyc │ │ │ │ ├── cp949.cpython-36.pyc │ │ │ │ ├── cp950.cpython-36.pyc │ │ │ │ ├── euc_jis_2004.cpython-36.pyc │ │ │ │ ├── euc_jisx0213.cpython-36.pyc │ │ │ │ ├── euc_jp.cpython-36.pyc │ │ │ │ ├── euc_kr.cpython-36.pyc │ │ │ │ ├── gb18030.cpython-36.pyc │ │ │ │ ├── gb2312.cpython-36.pyc │ │ │ │ ├── gbk.cpython-36.pyc │ │ │ │ ├── hex_codec.cpython-36.pyc │ │ │ │ ├── hp_roman8.cpython-36.pyc │ │ │ │ ├── hz.cpython-36.pyc │ │ │ │ ├── idna.cpython-36.pyc │ │ │ │ ├── iso2022_jp.cpython-36.pyc │ │ │ │ ├── iso2022_jp_1.cpython-36.pyc │ │ │ │ ├── iso2022_jp_2.cpython-36.pyc │ │ │ │ ├── iso2022_jp_2004.cpython-36.pyc │ │ │ │ ├── iso2022_jp_3.cpython-36.pyc │ │ │ │ ├── iso2022_jp_ext.cpython-36.pyc │ │ │ │ ├── iso2022_kr.cpython-36.pyc │ │ │ │ ├── iso8859_1.cpython-36.pyc │ │ │ │ ├── iso8859_10.cpython-36.pyc │ │ │ │ ├── iso8859_11.cpython-36.pyc │ │ │ │ ├── iso8859_13.cpython-36.pyc │ │ │ │ ├── iso8859_14.cpython-36.pyc │ │ │ │ ├── iso8859_15.cpython-36.pyc │ │ │ │ ├── iso8859_16.cpython-36.pyc │ │ │ │ ├── iso8859_2.cpython-36.pyc │ │ │ │ ├── iso8859_3.cpython-36.pyc │ │ │ │ ├── iso8859_4.cpython-36.pyc │ │ │ │ ├── iso8859_5.cpython-36.pyc │ │ │ │ ├── iso8859_6.cpython-36.pyc │ │ │ │ ├── iso8859_7.cpython-36.pyc │ │ │ │ ├── iso8859_8.cpython-36.pyc │ │ │ │ ├── iso8859_9.cpython-36.pyc │ │ │ │ ├── johab.cpython-36.pyc │ │ │ │ ├── koi8_r.cpython-36.pyc │ │ │ │ ├── koi8_t.cpython-36.pyc │ │ │ │ ├── koi8_u.cpython-36.pyc │ │ │ │ ├── kz1048.cpython-36.pyc │ │ │ │ ├── latin_1.cpython-36.pyc │ │ │ │ ├── mac_arabic.cpython-36.pyc │ │ │ │ ├── mac_centeuro.cpython-36.pyc │ │ │ │ ├── mac_croatian.cpython-36.pyc │ │ │ │ ├── mac_cyrillic.cpython-36.pyc │ │ │ │ ├── mac_farsi.cpython-36.pyc │ │ │ │ ├── mac_greek.cpython-36.pyc │ │ │ │ ├── mac_iceland.cpython-36.pyc │ │ │ │ ├── mac_latin2.cpython-36.pyc │ │ │ │ ├── mac_roman.cpython-36.pyc │ │ │ │ ├── mac_romanian.cpython-36.pyc │ │ │ │ ├── mac_turkish.cpython-36.pyc │ │ │ │ ├── mbcs.cpython-36.pyc │ │ │ │ ├── oem.cpython-36.pyc │ │ │ │ ├── palmos.cpython-36.pyc │ │ │ │ ├── ptcp154.cpython-36.pyc │ │ │ │ ├── punycode.cpython-36.pyc │ │ │ │ ├── quopri_codec.cpython-36.pyc │ │ │ │ ├── raw_unicode_escape.cpython-36.pyc │ │ │ │ ├── rot_13.cpython-36.pyc │ │ │ │ ├── shift_jis.cpython-36.pyc │ │ │ │ ├── shift_jis_2004.cpython-36.pyc │ │ │ │ ├── shift_jisx0213.cpython-36.pyc │ │ │ │ ├── tis_620.cpython-36.pyc │ │ │ │ ├── undefined.cpython-36.pyc │ │ │ │ ├── unicode_escape.cpython-36.pyc │ │ │ │ ├── unicode_internal.cpython-36.pyc │ │ │ │ ├── utf_16.cpython-36.pyc │ │ │ │ ├── utf_16_be.cpython-36.pyc │ │ │ │ ├── utf_16_le.cpython-36.pyc │ │ │ │ ├── utf_32.cpython-36.pyc │ │ │ │ ├── utf_32_be.cpython-36.pyc │ │ │ │ ├── utf_32_le.cpython-36.pyc │ │ │ │ ├── utf_7.cpython-36.pyc │ │ │ │ ├── utf_8.cpython-36.pyc │ │ │ │ ├── utf_8_sig.cpython-36.pyc │ │ │ │ ├── uu_codec.cpython-36.pyc │ │ │ │ └── zlib_codec.cpython-36.pyc │ │ │ ├── aliases.py │ │ │ ├── ascii.py │ │ │ ├── base64_codec.py │ │ │ ├── big5.py │ │ │ ├── big5hkscs.py │ │ │ ├── bz2_codec.py │ │ │ ├── charmap.py │ │ │ ├── cp037.py │ │ │ ├── cp1006.py │ │ │ ├── cp1026.py │ │ │ ├── cp1125.py │ │ │ ├── cp1140.py │ │ │ ├── cp1250.py │ │ │ ├── cp1251.py │ │ │ ├── cp1252.py │ │ │ ├── cp1253.py │ │ │ ├── cp1254.py │ │ │ ├── cp1255.py │ │ │ ├── cp1256.py │ │ │ ├── cp1257.py │ │ │ ├── cp1258.py │ │ │ ├── cp273.py │ │ │ ├── cp424.py │ │ │ ├── cp437.py │ │ │ ├── cp500.py │ │ │ ├── cp65001.py │ │ │ ├── cp720.py │ │ │ ├── cp737.py │ │ │ ├── cp775.py │ │ │ ├── cp850.py │ │ │ ├── cp852.py │ │ │ ├── cp855.py │ │ │ ├── cp856.py │ │ │ ├── cp857.py │ │ │ ├── cp858.py │ │ │ ├── cp860.py │ │ │ ├── cp861.py │ │ │ ├── cp862.py │ │ │ ├── cp863.py │ │ │ ├── cp864.py │ │ │ ├── cp865.py │ │ │ ├── cp866.py │ │ │ ├── cp869.py │ │ │ ├── cp874.py │ │ │ ├── cp875.py │ │ │ ├── cp932.py │ │ │ ├── cp949.py │ │ │ ├── cp950.py │ │ │ ├── euc_jis_2004.py │ │ │ ├── euc_jisx0213.py │ │ │ ├── euc_jp.py │ │ │ ├── euc_kr.py │ │ │ ├── gb18030.py │ │ │ ├── gb2312.py │ │ │ ├── gbk.py │ │ │ ├── hex_codec.py │ │ │ ├── hp_roman8.py │ │ │ ├── hz.py │ │ │ ├── idna.py │ │ │ ├── iso2022_jp.py │ │ │ ├── iso2022_jp_1.py │ │ │ ├── iso2022_jp_2.py │ │ │ ├── iso2022_jp_2004.py │ │ │ ├── iso2022_jp_3.py │ │ │ ├── iso2022_jp_ext.py │ │ │ ├── iso2022_kr.py │ │ │ ├── iso8859_1.py │ │ │ ├── iso8859_10.py │ │ │ ├── iso8859_11.py │ │ │ ├── iso8859_13.py │ │ │ ├── iso8859_14.py │ │ │ ├── iso8859_15.py │ │ │ ├── iso8859_16.py │ │ │ ├── iso8859_2.py │ │ │ ├── iso8859_3.py │ │ │ ├── iso8859_4.py │ │ │ ├── iso8859_5.py │ │ │ ├── iso8859_6.py │ │ │ ├── iso8859_7.py │ │ │ ├── iso8859_8.py │ │ │ ├── iso8859_9.py │ │ │ ├── johab.py │ │ │ ├── koi8_r.py │ │ │ ├── koi8_t.py │ │ │ ├── koi8_u.py │ │ │ ├── kz1048.py │ │ │ ├── latin_1.py │ │ │ ├── mac_arabic.py │ │ │ ├── mac_centeuro.py │ │ │ ├── mac_croatian.py │ │ │ ├── mac_cyrillic.py │ │ │ ├── mac_farsi.py │ │ │ ├── mac_greek.py │ │ │ ├── mac_iceland.py │ │ │ ├── mac_latin2.py │ │ │ ├── mac_roman.py │ │ │ ├── mac_romanian.py │ │ │ ├── mac_turkish.py │ │ │ ├── mbcs.py │ │ │ ├── oem.py │ │ │ ├── palmos.py │ │ │ ├── ptcp154.py │ │ │ ├── punycode.py │ │ │ ├── quopri_codec.py │ │ │ ├── raw_unicode_escape.py │ │ │ ├── rot_13.py │ │ │ ├── shift_jis.py │ │ │ ├── shift_jis_2004.py │ │ │ ├── shift_jisx0213.py │ │ │ ├── tis_620.py │ │ │ ├── undefined.py │ │ │ ├── unicode_escape.py │ │ │ ├── unicode_internal.py │ │ │ ├── utf_16.py │ │ │ ├── utf_16_be.py │ │ │ ├── utf_16_le.py │ │ │ ├── utf_32.py │ │ │ ├── utf_32_be.py │ │ │ ├── utf_32_le.py │ │ │ ├── utf_7.py │ │ │ ├── utf_8.py │ │ │ ├── utf_8_sig.py │ │ │ ├── uu_codec.py │ │ │ └── zlib_codec.py │ │ ├── enum.py │ │ ├── fnmatch.py │ │ ├── functools.py │ │ ├── genericpath.py │ │ ├── hashlib.py │ │ ├── heapq.py │ │ ├── hmac.py │ │ ├── imp.py │ │ ├── importlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _bootstrap.cpython-36.pyc │ │ │ │ ├── _bootstrap_external.cpython-36.pyc │ │ │ │ ├── abc.cpython-36.pyc │ │ │ │ ├── machinery.cpython-36.pyc │ │ │ │ └── util.cpython-36.pyc │ │ │ ├── _bootstrap.py │ │ │ ├── _bootstrap_external.py │ │ │ ├── abc.py │ │ │ ├── machinery.py │ │ │ └── util.py │ │ ├── io.py │ │ ├── keyword.py │ │ ├── linecache.py │ │ ├── locale.py │ │ ├── no-global-site-packages.txt │ │ ├── ntpath.py │ │ ├── operator.py │ │ ├── orig-prefix.txt │ │ ├── os.py │ │ ├── posixpath.py │ │ ├── random.py │ │ ├── re.py │ │ ├── reprlib.py │ │ ├── rlcompleter.py │ │ ├── shutil.py │ │ ├── site-packages │ │ │ ├── __pycache__ │ │ │ │ └── easy_install.cpython-36.pyc │ │ │ ├── easy_install.py │ │ │ ├── pip-9.0.1.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ ├── pip │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── __main__.cpython-36.pyc │ │ │ │ │ ├── basecommand.cpython-36.pyc │ │ │ │ │ ├── baseparser.cpython-36.pyc │ │ │ │ │ ├── cmdoptions.cpython-36.pyc │ │ │ │ │ ├── download.cpython-36.pyc │ │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ │ ├── index.cpython-36.pyc │ │ │ │ │ ├── locations.cpython-36.pyc │ │ │ │ │ ├── pep425tags.cpython-36.pyc │ │ │ │ │ ├── status_codes.cpython-36.pyc │ │ │ │ │ └── wheel.cpython-36.pyc │ │ │ │ ├── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── appdirs.cpython-36.pyc │ │ │ │ │ │ ├── distro.cpython-36.pyc │ │ │ │ │ │ ├── ipaddress.cpython-36.pyc │ │ │ │ │ │ ├── ordereddict.cpython-36.pyc │ │ │ │ │ │ ├── pyparsing.cpython-36.pyc │ │ │ │ │ │ ├── re-vendor.cpython-36.pyc │ │ │ │ │ │ ├── retrying.cpython-36.pyc │ │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── cachecontrol │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── _cmd.cpython-36.pyc │ │ │ │ │ │ │ ├── adapter.cpython-36.pyc │ │ │ │ │ │ │ ├── cache.cpython-36.pyc │ │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ │ ├── controller.cpython-36.pyc │ │ │ │ │ │ │ ├── filewrapper.cpython-36.pyc │ │ │ │ │ │ │ ├── heuristics.cpython-36.pyc │ │ │ │ │ │ │ ├── serialize.cpython-36.pyc │ │ │ │ │ │ │ └── wrapper.cpython-36.pyc │ │ │ │ │ │ ├── _cmd.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ ├── caches │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── file_cache.cpython-36.pyc │ │ │ │ │ │ │ │ └── redis_cache.cpython-36.pyc │ │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── controller.py │ │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ │ ├── heuristics.py │ │ │ │ │ │ ├── serialize.py │ │ │ │ │ │ └── wrapper.py │ │ │ │ │ ├── colorama │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── ansi.cpython-36.pyc │ │ │ │ │ │ │ ├── ansitowin32.cpython-36.pyc │ │ │ │ │ │ │ ├── initialise.cpython-36.pyc │ │ │ │ │ │ │ ├── win32.cpython-36.pyc │ │ │ │ │ │ │ └── winterm.cpython-36.pyc │ │ │ │ │ │ ├── ansi.py │ │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ │ ├── initialise.py │ │ │ │ │ │ ├── win32.py │ │ │ │ │ │ └── winterm.py │ │ │ │ │ ├── distlib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ │ ├── database.cpython-36.pyc │ │ │ │ │ │ │ ├── index.cpython-36.pyc │ │ │ │ │ │ │ ├── locators.cpython-36.pyc │ │ │ │ │ │ │ ├── manifest.cpython-36.pyc │ │ │ │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ │ │ │ ├── resources.cpython-36.pyc │ │ │ │ │ │ │ ├── scripts.cpython-36.pyc │ │ │ │ │ │ │ ├── util.cpython-36.pyc │ │ │ │ │ │ │ ├── version.cpython-36.pyc │ │ │ │ │ │ │ └── wheel.cpython-36.pyc │ │ │ │ │ │ ├── _backport │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ │ │ │ │ ├── shutil.cpython-36.pyc │ │ │ │ │ │ │ │ ├── sysconfig.cpython-36.pyc │ │ │ │ │ │ │ │ └── tarfile.cpython-36.pyc │ │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ │ ├── shutil.py │ │ │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ │ └── tarfile.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── database.py │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ ├── locators.py │ │ │ │ │ │ ├── manifest.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── resources.py │ │ │ │ │ │ ├── scripts.py │ │ │ │ │ │ ├── t32.exe │ │ │ │ │ │ ├── t64.exe │ │ │ │ │ │ ├── util.py │ │ │ │ │ │ ├── version.py │ │ │ │ │ │ ├── w32.exe │ │ │ │ │ │ ├── w64.exe │ │ │ │ │ │ └── wheel.py │ │ │ │ │ ├── distro.py │ │ │ │ │ ├── html5lib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── _ihatexml.cpython-36.pyc │ │ │ │ │ │ │ ├── _inputstream.cpython-36.pyc │ │ │ │ │ │ │ ├── _tokenizer.cpython-36.pyc │ │ │ │ │ │ │ ├── _utils.cpython-36.pyc │ │ │ │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ │ │ │ ├── html5parser.cpython-36.pyc │ │ │ │ │ │ │ └── serializer.cpython-36.pyc │ │ │ │ │ │ ├── _ihatexml.py │ │ │ │ │ │ ├── _inputstream.py │ │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ │ ├── _trie │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── _base.cpython-36.pyc │ │ │ │ │ │ │ │ ├── datrie.cpython-36.pyc │ │ │ │ │ │ │ │ └── py.cpython-36.pyc │ │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ │ ├── datrie.py │ │ │ │ │ │ │ └── py.py │ │ │ │ │ │ ├── _utils.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── alphabeticalattributes.cpython-36.pyc │ │ │ │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ │ │ │ ├── inject_meta_charset.cpython-36.pyc │ │ │ │ │ │ │ │ ├── lint.cpython-36.pyc │ │ │ │ │ │ │ │ ├── optionaltags.cpython-36.pyc │ │ │ │ │ │ │ │ ├── sanitizer.cpython-36.pyc │ │ │ │ │ │ │ │ └── whitespace.cpython-36.pyc │ │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ │ └── whitespace.py │ │ │ │ │ │ ├── html5parser.py │ │ │ │ │ │ ├── serializer.py │ │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── genshi.cpython-36.pyc │ │ │ │ │ │ │ │ └── sax.cpython-36.pyc │ │ │ │ │ │ │ ├── genshi.py │ │ │ │ │ │ │ └── sax.py │ │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ │ │ │ ├── dom.cpython-36.pyc │ │ │ │ │ │ │ │ ├── etree.cpython-36.pyc │ │ │ │ │ │ │ │ └── etree_lxml.cpython-36.pyc │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ │ └── etree_lxml.py │ │ │ │ │ │ └── treewalkers │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ │ │ ├── dom.cpython-36.pyc │ │ │ │ │ │ │ ├── etree.cpython-36.pyc │ │ │ │ │ │ │ ├── etree_lxml.cpython-36.pyc │ │ │ │ │ │ │ └── genshi.cpython-36.pyc │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ │ │ └── genshi.py │ │ │ │ │ ├── ipaddress.py │ │ │ │ │ ├── lockfile │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── linklockfile.cpython-36.pyc │ │ │ │ │ │ │ ├── mkdirlockfile.cpython-36.pyc │ │ │ │ │ │ │ ├── pidlockfile.cpython-36.pyc │ │ │ │ │ │ │ ├── sqlitelockfile.cpython-36.pyc │ │ │ │ │ │ │ └── symlinklockfile.cpython-36.pyc │ │ │ │ │ │ ├── linklockfile.py │ │ │ │ │ │ ├── mkdirlockfile.py │ │ │ │ │ │ ├── pidlockfile.py │ │ │ │ │ │ ├── sqlitelockfile.py │ │ │ │ │ │ └── symlinklockfile.py │ │ │ │ │ ├── ordereddict.py │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __about__.cpython-36.pyc │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── _compat.cpython-36.pyc │ │ │ │ │ │ │ ├── _structures.cpython-36.pyc │ │ │ │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ │ │ │ ├── requirements.cpython-36.pyc │ │ │ │ │ │ │ ├── specifiers.cpython-36.pyc │ │ │ │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ │ │ │ └── version.cpython-36.pyc │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── version.py │ │ │ │ │ ├── pkg_resources │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ │ ├── progress │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── bar.cpython-36.pyc │ │ │ │ │ │ │ ├── counter.cpython-36.pyc │ │ │ │ │ │ │ ├── helpers.cpython-36.pyc │ │ │ │ │ │ │ └── spinner.cpython-36.pyc │ │ │ │ │ │ ├── bar.py │ │ │ │ │ │ ├── counter.py │ │ │ │ │ │ ├── helpers.py │ │ │ │ │ │ └── spinner.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ ├── re-vendor.py │ │ │ │ │ ├── requests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── adapters.cpython-36.pyc │ │ │ │ │ │ │ ├── api.cpython-36.pyc │ │ │ │ │ │ │ ├── auth.cpython-36.pyc │ │ │ │ │ │ │ ├── certs.cpython-36.pyc │ │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ │ ├── cookies.cpython-36.pyc │ │ │ │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ │ │ │ ├── hooks.cpython-36.pyc │ │ │ │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ │ │ │ ├── sessions.cpython-36.pyc │ │ │ │ │ │ │ ├── status_codes.cpython-36.pyc │ │ │ │ │ │ │ ├── structures.cpython-36.pyc │ │ │ │ │ │ │ └── utils.cpython-36.pyc │ │ │ │ │ │ ├── adapters.py │ │ │ │ │ │ ├── api.py │ │ │ │ │ │ ├── auth.py │ │ │ │ │ │ ├── cacert.pem │ │ │ │ │ │ ├── certs.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── cookies.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ ├── hooks.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── chardet │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── big5freq.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── big5prober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── chardetect.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── chardistribution.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── charsetgroupprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── charsetprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── codingstatemachine.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── cp949prober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── escprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── escsm.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── eucjpprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── euckrfreq.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── euckrprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── euctwfreq.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── euctwprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── gb2312freq.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── gb2312prober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── hebrewprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── jisfreq.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── jpcntx.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langbulgarianmodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langcyrillicmodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langgreekmodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langhebrewmodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langhungarianmodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── langthaimodel.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── latin1prober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── mbcharsetprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── mbcsgroupprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── mbcssm.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── sbcharsetprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── sbcsgroupprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── sjisprober.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── universaldetector.cpython-36.pyc │ │ │ │ │ │ │ │ │ └── utf8prober.cpython-36.pyc │ │ │ │ │ │ │ │ ├── big5freq.py │ │ │ │ │ │ │ │ ├── big5prober.py │ │ │ │ │ │ │ │ ├── chardetect.py │ │ │ │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ │ │ │ ├── escprober.py │ │ │ │ │ │ │ │ ├── escsm.py │ │ │ │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ │ │ │ └── utf8prober.py │ │ │ │ │ │ │ └── urllib3 │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── _collections.cpython-36.pyc │ │ │ │ │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ │ │ │ │ ├── connectionpool.cpython-36.pyc │ │ │ │ │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ │ │ │ │ ├── fields.cpython-36.pyc │ │ │ │ │ │ │ │ ├── filepost.cpython-36.pyc │ │ │ │ │ │ │ │ ├── poolmanager.cpython-36.pyc │ │ │ │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ │ │ │ └── response.cpython-36.pyc │ │ │ │ │ │ │ │ ├── _collections.py │ │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── appengine.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── ntlmpool.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── pyopenssl.cpython-36.pyc │ │ │ │ │ │ │ │ │ └── socks.cpython-36.pyc │ │ │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ │ │ └── socks.py │ │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ │ ├── filepost.py │ │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ │ ├── ordered_dict.cpython-36.pyc │ │ │ │ │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ │ └── _implementation.cpython-36.pyc │ │ │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ │ │ │ │ ├── retry.cpython-36.pyc │ │ │ │ │ │ │ │ ├── ssl_.cpython-36.pyc │ │ │ │ │ │ │ │ ├── timeout.cpython-36.pyc │ │ │ │ │ │ │ │ └── url.cpython-36.pyc │ │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ │ │ └── url.py │ │ │ │ │ │ ├── sessions.py │ │ │ │ │ │ ├── status_codes.py │ │ │ │ │ │ ├── structures.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── retrying.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── webencodings │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── labels.cpython-36.pyc │ │ │ │ │ │ ├── mklabels.cpython-36.pyc │ │ │ │ │ │ ├── tests.cpython-36.pyc │ │ │ │ │ │ └── x_user_defined.cpython-36.pyc │ │ │ │ │ │ ├── labels.py │ │ │ │ │ │ ├── mklabels.py │ │ │ │ │ │ ├── tests.py │ │ │ │ │ │ └── x_user_defined.py │ │ │ │ ├── basecommand.py │ │ │ │ ├── baseparser.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── check.cpython-36.pyc │ │ │ │ │ │ ├── completion.cpython-36.pyc │ │ │ │ │ │ ├── download.cpython-36.pyc │ │ │ │ │ │ ├── freeze.cpython-36.pyc │ │ │ │ │ │ ├── hash.cpython-36.pyc │ │ │ │ │ │ ├── help.cpython-36.pyc │ │ │ │ │ │ ├── install.cpython-36.pyc │ │ │ │ │ │ ├── list.cpython-36.pyc │ │ │ │ │ │ ├── search.cpython-36.pyc │ │ │ │ │ │ ├── show.cpython-36.pyc │ │ │ │ │ │ ├── uninstall.cpython-36.pyc │ │ │ │ │ │ └── wheel.cpython-36.pyc │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── dictconfig.cpython-36.pyc │ │ │ │ │ └── dictconfig.py │ │ │ │ ├── download.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index.py │ │ │ │ ├── locations.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── index.cpython-36.pyc │ │ │ │ │ └── index.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── check.cpython-36.pyc │ │ │ │ │ │ └── freeze.cpython-36.pyc │ │ │ │ │ ├── check.py │ │ │ │ │ └── freeze.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── req_file.cpython-36.pyc │ │ │ │ │ │ ├── req_install.cpython-36.pyc │ │ │ │ │ │ ├── req_set.cpython-36.pyc │ │ │ │ │ │ └── req_uninstall.cpython-36.pyc │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── appdirs.cpython-36.pyc │ │ │ │ │ │ ├── build.cpython-36.pyc │ │ │ │ │ │ ├── deprecation.cpython-36.pyc │ │ │ │ │ │ ├── encoding.cpython-36.pyc │ │ │ │ │ │ ├── filesystem.cpython-36.pyc │ │ │ │ │ │ ├── glibc.cpython-36.pyc │ │ │ │ │ │ ├── hashes.cpython-36.pyc │ │ │ │ │ │ ├── logging.cpython-36.pyc │ │ │ │ │ │ ├── outdated.cpython-36.pyc │ │ │ │ │ │ ├── packaging.cpython-36.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-36.pyc │ │ │ │ │ │ └── ui.cpython-36.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── outdated.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ └── ui.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── bazaar.cpython-36.pyc │ │ │ │ │ │ ├── git.cpython-36.pyc │ │ │ │ │ │ ├── mercurial.cpython-36.pyc │ │ │ │ │ │ └── subversion.cpython-36.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ └── subversion.py │ │ │ │ └── wheel.py │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── py31compat.cpython-36.pyc │ │ │ │ ├── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── appdirs.cpython-36.pyc │ │ │ │ │ │ ├── pyparsing.cpython-36.pyc │ │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __about__.cpython-36.pyc │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ │ ├── _compat.cpython-36.pyc │ │ │ │ │ │ │ ├── _structures.cpython-36.pyc │ │ │ │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ │ │ │ ├── requirements.cpython-36.pyc │ │ │ │ │ │ │ ├── specifiers.cpython-36.pyc │ │ │ │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ │ │ │ └── version.cpython-36.pyc │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── version.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ └── six.py │ │ │ │ ├── extern │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── py31compat.py │ │ │ ├── setuptools-38.5.1.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── entry_points.txt │ │ │ │ ├── metadata.json │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ │ ├── setuptools │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── archive_util.cpython-36.pyc │ │ │ │ │ ├── build_meta.cpython-36.pyc │ │ │ │ │ ├── config.cpython-36.pyc │ │ │ │ │ ├── dep_util.cpython-36.pyc │ │ │ │ │ ├── depends.cpython-36.pyc │ │ │ │ │ ├── dist.cpython-36.pyc │ │ │ │ │ ├── extension.cpython-36.pyc │ │ │ │ │ ├── glibc.cpython-36.pyc │ │ │ │ │ ├── glob.cpython-36.pyc │ │ │ │ │ ├── launch.cpython-36.pyc │ │ │ │ │ ├── lib2to3_ex.cpython-36.pyc │ │ │ │ │ ├── monkey.cpython-36.pyc │ │ │ │ │ ├── msvc.cpython-36.pyc │ │ │ │ │ ├── namespaces.cpython-36.pyc │ │ │ │ │ ├── package_index.cpython-36.pyc │ │ │ │ │ ├── pep425tags.cpython-36.pyc │ │ │ │ │ ├── py27compat.cpython-36.pyc │ │ │ │ │ ├── py31compat.cpython-36.pyc │ │ │ │ │ ├── py33compat.cpython-36.pyc │ │ │ │ │ ├── py36compat.cpython-36.pyc │ │ │ │ │ ├── sandbox.cpython-36.pyc │ │ │ │ │ ├── site-patch.cpython-36.pyc │ │ │ │ │ ├── ssl_support.cpython-36.pyc │ │ │ │ │ ├── unicode_utils.cpython-36.pyc │ │ │ │ │ ├── version.cpython-36.pyc │ │ │ │ │ ├── wheel.cpython-36.pyc │ │ │ │ │ └── windows_support.cpython-36.pyc │ │ │ │ ├── archive_util.py │ │ │ │ ├── build_meta.py │ │ │ │ ├── cli-32.exe │ │ │ │ ├── cli-64.exe │ │ │ │ ├── cli.exe │ │ │ │ ├── command │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── alias.cpython-36.pyc │ │ │ │ │ │ ├── bdist_egg.cpython-36.pyc │ │ │ │ │ │ ├── bdist_rpm.cpython-36.pyc │ │ │ │ │ │ ├── bdist_wininst.cpython-36.pyc │ │ │ │ │ │ ├── build_clib.cpython-36.pyc │ │ │ │ │ │ ├── build_ext.cpython-36.pyc │ │ │ │ │ │ ├── build_py.cpython-36.pyc │ │ │ │ │ │ ├── develop.cpython-36.pyc │ │ │ │ │ │ ├── dist_info.cpython-36.pyc │ │ │ │ │ │ ├── easy_install.cpython-36.pyc │ │ │ │ │ │ ├── egg_info.cpython-36.pyc │ │ │ │ │ │ ├── install.cpython-36.pyc │ │ │ │ │ │ ├── install_egg_info.cpython-36.pyc │ │ │ │ │ │ ├── install_lib.cpython-36.pyc │ │ │ │ │ │ ├── install_scripts.cpython-36.pyc │ │ │ │ │ │ ├── py36compat.cpython-36.pyc │ │ │ │ │ │ ├── register.cpython-36.pyc │ │ │ │ │ │ ├── rotate.cpython-36.pyc │ │ │ │ │ │ ├── saveopts.cpython-36.pyc │ │ │ │ │ │ ├── sdist.cpython-36.pyc │ │ │ │ │ │ ├── setopt.cpython-36.pyc │ │ │ │ │ │ ├── test.cpython-36.pyc │ │ │ │ │ │ ├── upload.cpython-36.pyc │ │ │ │ │ │ └── upload_docs.cpython-36.pyc │ │ │ │ │ ├── alias.py │ │ │ │ │ ├── bdist_egg.py │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ ├── build_clib.py │ │ │ │ │ ├── build_ext.py │ │ │ │ │ ├── build_py.py │ │ │ │ │ ├── develop.py │ │ │ │ │ ├── dist_info.py │ │ │ │ │ ├── easy_install.py │ │ │ │ │ ├── egg_info.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ ├── install_lib.py │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ ├── launcher manifest.xml │ │ │ │ │ ├── py36compat.py │ │ │ │ │ ├── register.py │ │ │ │ │ ├── rotate.py │ │ │ │ │ ├── saveopts.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ ├── setopt.py │ │ │ │ │ ├── test.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_docs.py │ │ │ │ ├── config.py │ │ │ │ ├── dep_util.py │ │ │ │ ├── depends.py │ │ │ │ ├── dist.py │ │ │ │ ├── extension.py │ │ │ │ ├── extern │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── glibc.py │ │ │ │ ├── glob.py │ │ │ │ ├── gui-32.exe │ │ │ │ ├── gui-64.exe │ │ │ │ ├── gui.exe │ │ │ │ ├── launch.py │ │ │ │ ├── lib2to3_ex.py │ │ │ │ ├── monkey.py │ │ │ │ ├── msvc.py │ │ │ │ ├── namespaces.py │ │ │ │ ├── package_index.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── py27compat.py │ │ │ │ ├── py31compat.py │ │ │ │ ├── py33compat.py │ │ │ │ ├── py36compat.py │ │ │ │ ├── sandbox.py │ │ │ │ ├── script (dev).tmpl │ │ │ │ ├── script.tmpl │ │ │ │ ├── site-patch.py │ │ │ │ ├── ssl_support.py │ │ │ │ ├── unicode_utils.py │ │ │ │ ├── version.py │ │ │ │ ├── wheel.py │ │ │ │ └── windows_support.py │ │ │ ├── wheel-0.30.0.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ └── wheel │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __main__.cpython-36.pyc │ │ │ │ ├── archive.cpython-36.pyc │ │ │ │ ├── bdist_wheel.cpython-36.pyc │ │ │ │ ├── decorator.cpython-36.pyc │ │ │ │ ├── egg2wheel.cpython-36.pyc │ │ │ │ ├── install.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ ├── paths.cpython-36.pyc │ │ │ │ ├── pep425tags.cpython-36.pyc │ │ │ │ ├── pkginfo.cpython-36.pyc │ │ │ │ ├── util.cpython-36.pyc │ │ │ │ └── wininst2wheel.cpython-36.pyc │ │ │ │ ├── archive.py │ │ │ │ ├── bdist_wheel.py │ │ │ │ ├── decorator.py │ │ │ │ ├── egg2wheel.py │ │ │ │ ├── install.py │ │ │ │ ├── metadata.py │ │ │ │ ├── paths.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── pkginfo.py │ │ │ │ ├── signatures │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── djbec.cpython-36.pyc │ │ │ │ │ ├── ed25519py.cpython-36.pyc │ │ │ │ │ └── keys.cpython-36.pyc │ │ │ │ ├── djbec.py │ │ │ │ ├── ed25519py.py │ │ │ │ └── keys.py │ │ │ │ ├── tool │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── util.py │ │ │ │ └── wininst2wheel.py │ │ ├── site.py │ │ ├── sre_compile.py │ │ ├── sre_constants.py │ │ ├── sre_parse.py │ │ ├── stat.py │ │ ├── struct.py │ │ ├── tarfile.py │ │ ├── tempfile.py │ │ ├── token.py │ │ ├── tokenize.py │ │ ├── types.py │ │ ├── warnings.py │ │ └── weakref.py │ │ ├── Scripts │ │ ├── activate │ │ ├── activate.bat │ │ ├── activate.ps1 │ │ ├── activate_this.py │ │ ├── deactivate.bat │ │ ├── easy_install-3.6.exe │ │ ├── easy_install.exe │ │ ├── pip.exe │ │ ├── pip3.6.exe │ │ ├── pip3.exe │ │ ├── python.exe │ │ ├── python36.dll │ │ ├── pythonw.exe │ │ └── wheel.exe │ │ ├── stocGradAscent1.py │ │ ├── tcl │ │ ├── tcl8.6 │ │ │ ├── auto.tcl │ │ │ ├── clock.tcl │ │ │ ├── encoding │ │ │ │ ├── ascii.enc │ │ │ │ ├── big5.enc │ │ │ │ ├── cp1250.enc │ │ │ │ ├── cp1251.enc │ │ │ │ ├── cp1252.enc │ │ │ │ ├── cp1253.enc │ │ │ │ ├── cp1254.enc │ │ │ │ ├── cp1255.enc │ │ │ │ ├── cp1256.enc │ │ │ │ ├── cp1257.enc │ │ │ │ ├── cp1258.enc │ │ │ │ ├── cp437.enc │ │ │ │ ├── cp737.enc │ │ │ │ ├── cp775.enc │ │ │ │ ├── cp850.enc │ │ │ │ ├── cp852.enc │ │ │ │ ├── cp855.enc │ │ │ │ ├── cp857.enc │ │ │ │ ├── cp860.enc │ │ │ │ ├── cp861.enc │ │ │ │ ├── cp862.enc │ │ │ │ ├── cp863.enc │ │ │ │ ├── cp864.enc │ │ │ │ ├── cp865.enc │ │ │ │ ├── cp866.enc │ │ │ │ ├── cp869.enc │ │ │ │ ├── cp874.enc │ │ │ │ ├── cp932.enc │ │ │ │ ├── cp936.enc │ │ │ │ ├── cp949.enc │ │ │ │ ├── cp950.enc │ │ │ │ ├── dingbats.enc │ │ │ │ ├── ebcdic.enc │ │ │ │ ├── euc-cn.enc │ │ │ │ ├── euc-jp.enc │ │ │ │ ├── euc-kr.enc │ │ │ │ ├── gb12345.enc │ │ │ │ ├── gb1988.enc │ │ │ │ ├── gb2312-raw.enc │ │ │ │ ├── gb2312.enc │ │ │ │ ├── iso2022-jp.enc │ │ │ │ ├── iso2022-kr.enc │ │ │ │ ├── iso2022.enc │ │ │ │ ├── iso8859-1.enc │ │ │ │ ├── iso8859-10.enc │ │ │ │ ├── iso8859-13.enc │ │ │ │ ├── iso8859-14.enc │ │ │ │ ├── iso8859-15.enc │ │ │ │ ├── iso8859-16.enc │ │ │ │ ├── iso8859-2.enc │ │ │ │ ├── iso8859-3.enc │ │ │ │ ├── iso8859-4.enc │ │ │ │ ├── iso8859-5.enc │ │ │ │ ├── iso8859-6.enc │ │ │ │ ├── iso8859-7.enc │ │ │ │ ├── iso8859-8.enc │ │ │ │ ├── iso8859-9.enc │ │ │ │ ├── jis0201.enc │ │ │ │ ├── jis0208.enc │ │ │ │ ├── jis0212.enc │ │ │ │ ├── koi8-r.enc │ │ │ │ ├── koi8-u.enc │ │ │ │ ├── ksc5601.enc │ │ │ │ ├── macCentEuro.enc │ │ │ │ ├── macCroatian.enc │ │ │ │ ├── macCyrillic.enc │ │ │ │ ├── macDingbats.enc │ │ │ │ ├── macGreek.enc │ │ │ │ ├── macIceland.enc │ │ │ │ ├── macJapan.enc │ │ │ │ ├── macRoman.enc │ │ │ │ ├── macRomania.enc │ │ │ │ ├── macThai.enc │ │ │ │ ├── macTurkish.enc │ │ │ │ ├── macUkraine.enc │ │ │ │ ├── shiftjis.enc │ │ │ │ ├── symbol.enc │ │ │ │ └── tis-620.enc │ │ │ ├── history.tcl │ │ │ ├── http1.0 │ │ │ │ ├── http.tcl │ │ │ │ └── pkgIndex.tcl │ │ │ ├── init.tcl │ │ │ ├── msgs │ │ │ │ ├── af.msg │ │ │ │ ├── af_za.msg │ │ │ │ ├── ar.msg │ │ │ │ ├── ar_in.msg │ │ │ │ ├── ar_jo.msg │ │ │ │ ├── ar_lb.msg │ │ │ │ ├── ar_sy.msg │ │ │ │ ├── be.msg │ │ │ │ ├── bg.msg │ │ │ │ ├── bn.msg │ │ │ │ ├── bn_in.msg │ │ │ │ ├── ca.msg │ │ │ │ ├── cs.msg │ │ │ │ ├── da.msg │ │ │ │ ├── de.msg │ │ │ │ ├── de_at.msg │ │ │ │ ├── de_be.msg │ │ │ │ ├── el.msg │ │ │ │ ├── en_au.msg │ │ │ │ ├── en_be.msg │ │ │ │ ├── en_bw.msg │ │ │ │ ├── en_ca.msg │ │ │ │ ├── en_gb.msg │ │ │ │ ├── en_hk.msg │ │ │ │ ├── en_ie.msg │ │ │ │ ├── en_in.msg │ │ │ │ ├── en_nz.msg │ │ │ │ ├── en_ph.msg │ │ │ │ ├── en_sg.msg │ │ │ │ ├── en_za.msg │ │ │ │ ├── en_zw.msg │ │ │ │ ├── eo.msg │ │ │ │ ├── es.msg │ │ │ │ ├── es_ar.msg │ │ │ │ ├── es_bo.msg │ │ │ │ ├── es_cl.msg │ │ │ │ ├── es_co.msg │ │ │ │ ├── es_cr.msg │ │ │ │ ├── es_do.msg │ │ │ │ ├── es_ec.msg │ │ │ │ ├── es_gt.msg │ │ │ │ ├── es_hn.msg │ │ │ │ ├── es_mx.msg │ │ │ │ ├── es_ni.msg │ │ │ │ ├── es_pa.msg │ │ │ │ ├── es_pe.msg │ │ │ │ ├── es_pr.msg │ │ │ │ ├── es_py.msg │ │ │ │ ├── es_sv.msg │ │ │ │ ├── es_uy.msg │ │ │ │ ├── es_ve.msg │ │ │ │ ├── et.msg │ │ │ │ ├── eu.msg │ │ │ │ ├── eu_es.msg │ │ │ │ ├── fa.msg │ │ │ │ ├── fa_in.msg │ │ │ │ ├── fa_ir.msg │ │ │ │ ├── fi.msg │ │ │ │ ├── fo.msg │ │ │ │ ├── fo_fo.msg │ │ │ │ ├── fr.msg │ │ │ │ ├── fr_be.msg │ │ │ │ ├── fr_ca.msg │ │ │ │ ├── fr_ch.msg │ │ │ │ ├── ga.msg │ │ │ │ ├── ga_ie.msg │ │ │ │ ├── gl.msg │ │ │ │ ├── gl_es.msg │ │ │ │ ├── gv.msg │ │ │ │ ├── gv_gb.msg │ │ │ │ ├── he.msg │ │ │ │ ├── hi.msg │ │ │ │ ├── hi_in.msg │ │ │ │ ├── hr.msg │ │ │ │ ├── hu.msg │ │ │ │ ├── id.msg │ │ │ │ ├── id_id.msg │ │ │ │ ├── is.msg │ │ │ │ ├── it.msg │ │ │ │ ├── it_ch.msg │ │ │ │ ├── ja.msg │ │ │ │ ├── kl.msg │ │ │ │ ├── kl_gl.msg │ │ │ │ ├── ko.msg │ │ │ │ ├── ko_kr.msg │ │ │ │ ├── kok.msg │ │ │ │ ├── kok_in.msg │ │ │ │ ├── kw.msg │ │ │ │ ├── kw_gb.msg │ │ │ │ ├── lt.msg │ │ │ │ ├── lv.msg │ │ │ │ ├── mk.msg │ │ │ │ ├── mr.msg │ │ │ │ ├── mr_in.msg │ │ │ │ ├── ms.msg │ │ │ │ ├── ms_my.msg │ │ │ │ ├── mt.msg │ │ │ │ ├── nb.msg │ │ │ │ ├── nl.msg │ │ │ │ ├── nl_be.msg │ │ │ │ ├── nn.msg │ │ │ │ ├── pl.msg │ │ │ │ ├── pt.msg │ │ │ │ ├── pt_br.msg │ │ │ │ ├── ro.msg │ │ │ │ ├── ru.msg │ │ │ │ ├── ru_ua.msg │ │ │ │ ├── sh.msg │ │ │ │ ├── sk.msg │ │ │ │ ├── sl.msg │ │ │ │ ├── sq.msg │ │ │ │ ├── sr.msg │ │ │ │ ├── sv.msg │ │ │ │ ├── sw.msg │ │ │ │ ├── ta.msg │ │ │ │ ├── ta_in.msg │ │ │ │ ├── te.msg │ │ │ │ ├── te_in.msg │ │ │ │ ├── th.msg │ │ │ │ ├── tr.msg │ │ │ │ ├── uk.msg │ │ │ │ ├── vi.msg │ │ │ │ ├── zh.msg │ │ │ │ ├── zh_cn.msg │ │ │ │ ├── zh_hk.msg │ │ │ │ ├── zh_sg.msg │ │ │ │ └── zh_tw.msg │ │ │ ├── opt0.4 │ │ │ │ ├── optparse.tcl │ │ │ │ └── pkgIndex.tcl │ │ │ ├── package.tcl │ │ │ ├── parray.tcl │ │ │ ├── safe.tcl │ │ │ ├── tclIndex │ │ │ ├── tm.tcl │ │ │ ├── tzdata │ │ │ │ ├── Africa │ │ │ │ │ ├── Abidjan │ │ │ │ │ ├── Accra │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ ├── Algiers │ │ │ │ │ ├── Asmara │ │ │ │ │ ├── Asmera │ │ │ │ │ ├── Bamako │ │ │ │ │ ├── Bangui │ │ │ │ │ ├── Banjul │ │ │ │ │ ├── Bissau │ │ │ │ │ ├── Blantyre │ │ │ │ │ ├── Brazzaville │ │ │ │ │ ├── Bujumbura │ │ │ │ │ ├── Cairo │ │ │ │ │ ├── Casablanca │ │ │ │ │ ├── Ceuta │ │ │ │ │ ├── Conakry │ │ │ │ │ ├── Dakar │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ ├── Djibouti │ │ │ │ │ ├── Douala │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ ├── Freetown │ │ │ │ │ ├── Gaborone │ │ │ │ │ ├── Harare │ │ │ │ │ ├── Johannesburg │ │ │ │ │ ├── Juba │ │ │ │ │ ├── Kampala │ │ │ │ │ ├── Khartoum │ │ │ │ │ ├── Kigali │ │ │ │ │ ├── Kinshasa │ │ │ │ │ ├── Lagos │ │ │ │ │ ├── Libreville │ │ │ │ │ ├── Lome │ │ │ │ │ ├── Luanda │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ ├── Lusaka │ │ │ │ │ ├── Malabo │ │ │ │ │ ├── Maputo │ │ │ │ │ ├── Maseru │ │ │ │ │ ├── Mbabane │ │ │ │ │ ├── Mogadishu │ │ │ │ │ ├── Monrovia │ │ │ │ │ ├── Nairobi │ │ │ │ │ ├── Ndjamena │ │ │ │ │ ├── Niamey │ │ │ │ │ ├── Nouakchott │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ ├── Timbuktu │ │ │ │ │ ├── Tripoli │ │ │ │ │ ├── Tunis │ │ │ │ │ └── Windhoek │ │ │ │ ├── America │ │ │ │ │ ├── Adak │ │ │ │ │ ├── Anchorage │ │ │ │ │ ├── Anguilla │ │ │ │ │ ├── Antigua │ │ │ │ │ ├── Araguaina │ │ │ │ │ ├── Argentina │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ ├── Aruba │ │ │ │ │ ├── Asuncion │ │ │ │ │ ├── Atikokan │ │ │ │ │ ├── Atka │ │ │ │ │ ├── Bahia │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ ├── Barbados │ │ │ │ │ ├── Belem │ │ │ │ │ ├── Belize │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ ├── Bogota │ │ │ │ │ ├── Boise │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ ├── Cancun │ │ │ │ │ ├── Caracas │ │ │ │ │ ├── Catamarca │ │ │ │ │ ├── Cayenne │ │ │ │ │ ├── Cayman │ │ │ │ │ ├── Chicago │ │ │ │ │ ├── Chihuahua │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ ├── Cordoba │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ ├── Creston │ │ │ │ │ ├── Cuiaba │ │ │ │ │ ├── Curacao │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ ├── Dawson │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ ├── Denver │ │ │ │ │ ├── Detroit │ │ │ │ │ ├── Dominica │ │ │ │ │ ├── Edmonton │ │ │ │ │ ├── Eirunepe │ │ │ │ │ ├── El_Salvador │ │ │ │ │ ├── Ensenada │ │ │ │ │ ├── Fort_Nelson │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ ├── Fortaleza │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ ├── Godthab │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ ├── Grenada │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ ├── Guatemala │ │ │ │ │ ├── Guayaquil │ │ │ │ │ ├── Guyana │ │ │ │ │ ├── Halifax │ │ │ │ │ ├── Havana │ │ │ │ │ ├── Hermosillo │ │ │ │ │ ├── Indiana │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ └── Winamac │ │ │ │ │ ├── Indianapolis │ │ │ │ │ ├── Inuvik │ │ │ │ │ ├── Iqaluit │ │ │ │ │ ├── Jamaica │ │ │ │ │ ├── Jujuy │ │ │ │ │ ├── Juneau │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ └── Monticello │ │ │ │ │ ├── Knox_IN │ │ │ │ │ ├── Kralendijk │ │ │ │ │ ├── La_Paz │ │ │ │ │ ├── Lima │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ ├── Louisville │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ ├── Maceio │ │ │ │ │ ├── Managua │ │ │ │ │ ├── Manaus │ │ │ │ │ ├── Marigot │ │ │ │ │ ├── Martinique │ │ │ │ │ ├── Matamoros │ │ │ │ │ ├── Mazatlan │ │ │ │ │ ├── Mendoza │ │ │ │ │ ├── Menominee │ │ │ │ │ ├── Merida │ │ │ │ │ ├── Metlakatla │ │ │ │ │ ├── Mexico_City │ │ │ │ │ ├── Miquelon │ │ │ │ │ ├── Moncton │ │ │ │ │ ├── Monterrey │ │ │ │ │ ├── Montevideo │ │ │ │ │ ├── Montreal │ │ │ │ │ ├── Montserrat │ │ │ │ │ ├── Nassau │ │ │ │ │ ├── New_York │ │ │ │ │ ├── Nipigon │ │ │ │ │ ├── Nome │ │ │ │ │ ├── Noronha │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ ├── Center │ │ │ │ │ │ └── New_Salem │ │ │ │ │ ├── Ojinaga │ │ │ │ │ ├── Panama │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ ├── Paramaribo │ │ │ │ │ ├── Phoenix │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ ├── Rainy_River │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ ├── Recife │ │ │ │ │ ├── Regina │ │ │ │ │ ├── Resolute │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ ├── Rosario │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ ├── Santarem │ │ │ │ │ ├── Santiago │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ ├── Shiprock │ │ │ │ │ ├── Sitka │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ ├── St_Johns │ │ │ │ │ ├── St_Kitts │ │ │ │ │ ├── St_Lucia │ │ │ │ │ ├── St_Thomas │ │ │ │ │ ├── St_Vincent │ │ │ │ │ ├── Swift_Current │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ ├── Thule │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ ├── Tijuana │ │ │ │ │ ├── Toronto │ │ │ │ │ ├── Tortola │ │ │ │ │ ├── Vancouver │ │ │ │ │ ├── Virgin │ │ │ │ │ ├── Whitehorse │ │ │ │ │ ├── Winnipeg │ │ │ │ │ ├── Yakutat │ │ │ │ │ └── Yellowknife │ │ │ │ ├── Antarctica │ │ │ │ │ ├── Casey │ │ │ │ │ ├── Davis │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ ├── Macquarie │ │ │ │ │ ├── Mawson │ │ │ │ │ ├── McMurdo │ │ │ │ │ ├── Palmer │ │ │ │ │ ├── Rothera │ │ │ │ │ ├── South_Pole │ │ │ │ │ ├── Syowa │ │ │ │ │ ├── Troll │ │ │ │ │ └── Vostok │ │ │ │ ├── Arctic │ │ │ │ │ └── Longyearbyen │ │ │ │ ├── Asia │ │ │ │ │ ├── Aden │ │ │ │ │ ├── Almaty │ │ │ │ │ ├── Amman │ │ │ │ │ ├── Anadyr │ │ │ │ │ ├── Aqtau │ │ │ │ │ ├── Aqtobe │ │ │ │ │ ├── Ashgabat │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ ├── Baghdad │ │ │ │ │ ├── Bahrain │ │ │ │ │ ├── Baku │ │ │ │ │ ├── Bangkok │ │ │ │ │ ├── Barnaul │ │ │ │ │ ├── Beirut │ │ │ │ │ ├── Bishkek │ │ │ │ │ ├── Brunei │ │ │ │ │ ├── Calcutta │ │ │ │ │ ├── Chita │ │ │ │ │ ├── Choibalsan │ │ │ │ │ ├── Chongqing │ │ │ │ │ ├── Chungking │ │ │ │ │ ├── Colombo │ │ │ │ │ ├── Dacca │ │ │ │ │ ├── Damascus │ │ │ │ │ ├── Dhaka │ │ │ │ │ ├── Dili │ │ │ │ │ ├── Dubai │ │ │ │ │ ├── Dushanbe │ │ │ │ │ ├── Gaza │ │ │ │ │ ├── Harbin │ │ │ │ │ ├── Hebron │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ ├── Hovd │ │ │ │ │ ├── Irkutsk │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jakarta │ │ │ │ │ ├── Jayapura │ │ │ │ │ ├── Jerusalem │ │ │ │ │ ├── Kabul │ │ │ │ │ ├── Kamchatka │ │ │ │ │ ├── Karachi │ │ │ │ │ ├── Kashgar │ │ │ │ │ ├── Kathmandu │ │ │ │ │ ├── Katmandu │ │ │ │ │ ├── Khandyga │ │ │ │ │ ├── Kolkata │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ ├── Kuching │ │ │ │ │ ├── Kuwait │ │ │ │ │ ├── Macao │ │ │ │ │ ├── Macau │ │ │ │ │ ├── Magadan │ │ │ │ │ ├── Makassar │ │ │ │ │ ├── Manila │ │ │ │ │ ├── Muscat │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ ├── Omsk │ │ │ │ │ ├── Oral │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ ├── Pontianak │ │ │ │ │ ├── Pyongyang │ │ │ │ │ ├── Qatar │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ ├── Rangoon │ │ │ │ │ ├── Riyadh │ │ │ │ │ ├── Saigon │ │ │ │ │ ├── Sakhalin │ │ │ │ │ ├── Samarkand │ │ │ │ │ ├── Seoul │ │ │ │ │ ├── Shanghai │ │ │ │ │ ├── Singapore │ │ │ │ │ ├── Srednekolymsk │ │ │ │ │ ├── Taipei │ │ │ │ │ ├── Tashkent │ │ │ │ │ ├── Tbilisi │ │ │ │ │ ├── Tehran │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ ├── Thimbu │ │ │ │ │ ├── Thimphu │ │ │ │ │ ├── Tokyo │ │ │ │ │ ├── Tomsk │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ ├── Urumqi │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ ├── Vientiane │ │ │ │ │ ├── Vladivostok │ │ │ │ │ ├── Yakutsk │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ └── Yerevan │ │ │ │ ├── Atlantic │ │ │ │ │ ├── Azores │ │ │ │ │ ├── Bermuda │ │ │ │ │ ├── Canary │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ ├── Faeroe │ │ │ │ │ ├── Faroe │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ ├── Madeira │ │ │ │ │ ├── Reykjavik │ │ │ │ │ ├── South_Georgia │ │ │ │ │ ├── St_Helena │ │ │ │ │ └── Stanley │ │ │ │ ├── Australia │ │ │ │ │ ├── ACT │ │ │ │ │ ├── Adelaide │ │ │ │ │ ├── Brisbane │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ ├── Canberra │ │ │ │ │ ├── Currie │ │ │ │ │ ├── Darwin │ │ │ │ │ ├── Eucla │ │ │ │ │ ├── Hobart │ │ │ │ │ ├── LHI │ │ │ │ │ ├── Lindeman │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ ├── Melbourne │ │ │ │ │ ├── NSW │ │ │ │ │ ├── North │ │ │ │ │ ├── Perth │ │ │ │ │ ├── Queensland │ │ │ │ │ ├── South │ │ │ │ │ ├── Sydney │ │ │ │ │ ├── Tasmania │ │ │ │ │ ├── Victoria │ │ │ │ │ ├── West │ │ │ │ │ └── Yancowinna │ │ │ │ ├── Brazil │ │ │ │ │ ├── Acre │ │ │ │ │ ├── DeNoronha │ │ │ │ │ ├── East │ │ │ │ │ └── West │ │ │ │ ├── CET │ │ │ │ ├── CST6CDT │ │ │ │ ├── Canada │ │ │ │ │ ├── Atlantic │ │ │ │ │ ├── Central │ │ │ │ │ ├── East-Saskatchewan │ │ │ │ │ ├── Eastern │ │ │ │ │ ├── Mountain │ │ │ │ │ ├── Newfoundland │ │ │ │ │ ├── Pacific │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ └── Yukon │ │ │ │ ├── Chile │ │ │ │ │ ├── Continental │ │ │ │ │ └── EasterIsland │ │ │ │ ├── Cuba │ │ │ │ ├── EET │ │ │ │ ├── EST │ │ │ │ ├── EST5EDT │ │ │ │ ├── Egypt │ │ │ │ ├── Eire │ │ │ │ ├── Etc │ │ │ │ │ ├── GMT │ │ │ │ │ ├── GMT+0 │ │ │ │ │ ├── GMT+1 │ │ │ │ │ ├── GMT+10 │ │ │ │ │ ├── GMT+11 │ │ │ │ │ ├── GMT+12 │ │ │ │ │ ├── GMT+2 │ │ │ │ │ ├── GMT+3 │ │ │ │ │ ├── GMT+4 │ │ │ │ │ ├── GMT+5 │ │ │ │ │ ├── GMT+6 │ │ │ │ │ ├── GMT+7 │ │ │ │ │ ├── GMT+8 │ │ │ │ │ ├── GMT+9 │ │ │ │ │ ├── GMT-0 │ │ │ │ │ ├── GMT-1 │ │ │ │ │ ├── GMT-10 │ │ │ │ │ ├── GMT-11 │ │ │ │ │ ├── GMT-12 │ │ │ │ │ ├── GMT-13 │ │ │ │ │ ├── GMT-14 │ │ │ │ │ ├── GMT-2 │ │ │ │ │ ├── GMT-3 │ │ │ │ │ ├── GMT-4 │ │ │ │ │ ├── GMT-5 │ │ │ │ │ ├── GMT-6 │ │ │ │ │ ├── GMT-7 │ │ │ │ │ ├── GMT-8 │ │ │ │ │ ├── GMT-9 │ │ │ │ │ ├── GMT0 │ │ │ │ │ ├── Greenwich │ │ │ │ │ ├── UCT │ │ │ │ │ ├── UTC │ │ │ │ │ ├── Universal │ │ │ │ │ └── Zulu │ │ │ │ ├── Europe │ │ │ │ │ ├── Amsterdam │ │ │ │ │ ├── Andorra │ │ │ │ │ ├── Astrakhan │ │ │ │ │ ├── Athens │ │ │ │ │ ├── Belfast │ │ │ │ │ ├── Belgrade │ │ │ │ │ ├── Berlin │ │ │ │ │ ├── Bratislava │ │ │ │ │ ├── Brussels │ │ │ │ │ ├── Bucharest │ │ │ │ │ ├── Budapest │ │ │ │ │ ├── Busingen │ │ │ │ │ ├── Chisinau │ │ │ │ │ ├── Copenhagen │ │ │ │ │ ├── Dublin │ │ │ │ │ ├── Gibraltar │ │ │ │ │ ├── Guernsey │ │ │ │ │ ├── Helsinki │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jersey │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ ├── Kiev │ │ │ │ │ ├── Kirov │ │ │ │ │ ├── Lisbon │ │ │ │ │ ├── Ljubljana │ │ │ │ │ ├── London │ │ │ │ │ ├── Luxembourg │ │ │ │ │ ├── Madrid │ │ │ │ │ ├── Malta │ │ │ │ │ ├── Mariehamn │ │ │ │ │ ├── Minsk │ │ │ │ │ ├── Monaco │ │ │ │ │ ├── Moscow │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Oslo │ │ │ │ │ ├── Paris │ │ │ │ │ ├── Podgorica │ │ │ │ │ ├── Prague │ │ │ │ │ ├── Riga │ │ │ │ │ ├── Rome │ │ │ │ │ ├── Samara │ │ │ │ │ ├── San_Marino │ │ │ │ │ ├── Sarajevo │ │ │ │ │ ├── Simferopol │ │ │ │ │ ├── Skopje │ │ │ │ │ ├── Sofia │ │ │ │ │ ├── Stockholm │ │ │ │ │ ├── Tallinn │ │ │ │ │ ├── Tirane │ │ │ │ │ ├── Tiraspol │ │ │ │ │ ├── Ulyanovsk │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ ├── Vaduz │ │ │ │ │ ├── Vatican │ │ │ │ │ ├── Vienna │ │ │ │ │ ├── Vilnius │ │ │ │ │ ├── Volgograd │ │ │ │ │ ├── Warsaw │ │ │ │ │ ├── Zagreb │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ └── Zurich │ │ │ │ ├── GB │ │ │ │ ├── GB-Eire │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── HST │ │ │ │ ├── Hongkong │ │ │ │ ├── Iceland │ │ │ │ ├── Indian │ │ │ │ │ ├── Antananarivo │ │ │ │ │ ├── Chagos │ │ │ │ │ ├── Christmas │ │ │ │ │ ├── Cocos │ │ │ │ │ ├── Comoro │ │ │ │ │ ├── Kerguelen │ │ │ │ │ ├── Mahe │ │ │ │ │ ├── Maldives │ │ │ │ │ ├── Mauritius │ │ │ │ │ ├── Mayotte │ │ │ │ │ └── Reunion │ │ │ │ ├── Iran │ │ │ │ ├── Israel │ │ │ │ ├── Jamaica │ │ │ │ ├── Japan │ │ │ │ ├── Kwajalein │ │ │ │ ├── Libya │ │ │ │ ├── MET │ │ │ │ ├── MST │ │ │ │ ├── MST7MDT │ │ │ │ ├── Mexico │ │ │ │ │ ├── BajaNorte │ │ │ │ │ ├── BajaSur │ │ │ │ │ └── General │ │ │ │ ├── NZ │ │ │ │ ├── NZ-CHAT │ │ │ │ ├── Navajo │ │ │ │ ├── PRC │ │ │ │ ├── PST8PDT │ │ │ │ ├── Pacific │ │ │ │ │ ├── Apia │ │ │ │ │ ├── Auckland │ │ │ │ │ ├── Bougainville │ │ │ │ │ ├── Chatham │ │ │ │ │ ├── Chuuk │ │ │ │ │ ├── Easter │ │ │ │ │ ├── Efate │ │ │ │ │ ├── Enderbury │ │ │ │ │ ├── Fakaofo │ │ │ │ │ ├── Fiji │ │ │ │ │ ├── Funafuti │ │ │ │ │ ├── Galapagos │ │ │ │ │ ├── Gambier │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ ├── Guam │ │ │ │ │ ├── Honolulu │ │ │ │ │ ├── Johnston │ │ │ │ │ ├── Kiritimati │ │ │ │ │ ├── Kosrae │ │ │ │ │ ├── Kwajalein │ │ │ │ │ ├── Majuro │ │ │ │ │ ├── Marquesas │ │ │ │ │ ├── Midway │ │ │ │ │ ├── Nauru │ │ │ │ │ ├── Niue │ │ │ │ │ ├── Norfolk │ │ │ │ │ ├── Noumea │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ ├── Palau │ │ │ │ │ ├── Pitcairn │ │ │ │ │ ├── Pohnpei │ │ │ │ │ ├── Ponape │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ ├── Rarotonga │ │ │ │ │ ├── Saipan │ │ │ │ │ ├── Samoa │ │ │ │ │ ├── Tahiti │ │ │ │ │ ├── Tarawa │ │ │ │ │ ├── Tongatapu │ │ │ │ │ ├── Truk │ │ │ │ │ ├── Wake │ │ │ │ │ ├── Wallis │ │ │ │ │ └── Yap │ │ │ │ ├── Poland │ │ │ │ ├── Portugal │ │ │ │ ├── ROC │ │ │ │ ├── ROK │ │ │ │ ├── Singapore │ │ │ │ ├── SystemV │ │ │ │ │ ├── AST4 │ │ │ │ │ ├── AST4ADT │ │ │ │ │ ├── CST6 │ │ │ │ │ ├── CST6CDT │ │ │ │ │ ├── EST5 │ │ │ │ │ ├── EST5EDT │ │ │ │ │ ├── HST10 │ │ │ │ │ ├── MST7 │ │ │ │ │ ├── MST7MDT │ │ │ │ │ ├── PST8 │ │ │ │ │ ├── PST8PDT │ │ │ │ │ ├── YST9 │ │ │ │ │ └── YST9YDT │ │ │ │ ├── Turkey │ │ │ │ ├── UCT │ │ │ │ ├── US │ │ │ │ │ ├── Alaska │ │ │ │ │ ├── Aleutian │ │ │ │ │ ├── Arizona │ │ │ │ │ ├── Central │ │ │ │ │ ├── East-Indiana │ │ │ │ │ ├── Eastern │ │ │ │ │ ├── Hawaii │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ ├── Michigan │ │ │ │ │ ├── Mountain │ │ │ │ │ ├── Pacific │ │ │ │ │ ├── Pacific-New │ │ │ │ │ └── Samoa │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ ├── W-SU │ │ │ │ ├── WET │ │ │ │ └── Zulu │ │ │ └── word.tcl │ │ └── tk8.6 │ │ │ ├── bgerror.tcl │ │ │ ├── button.tcl │ │ │ ├── choosedir.tcl │ │ │ ├── clrpick.tcl │ │ │ ├── comdlg.tcl │ │ │ ├── console.tcl │ │ │ ├── demos │ │ │ ├── README │ │ │ ├── anilabel.tcl │ │ │ ├── aniwave.tcl │ │ │ ├── arrow.tcl │ │ │ ├── bind.tcl │ │ │ ├── bitmap.tcl │ │ │ ├── browse │ │ │ ├── button.tcl │ │ │ ├── check.tcl │ │ │ ├── clrpick.tcl │ │ │ ├── colors.tcl │ │ │ ├── combo.tcl │ │ │ ├── cscroll.tcl │ │ │ ├── ctext.tcl │ │ │ ├── dialog1.tcl │ │ │ ├── dialog2.tcl │ │ │ ├── en.msg │ │ │ ├── entry1.tcl │ │ │ ├── entry2.tcl │ │ │ ├── entry3.tcl │ │ │ ├── filebox.tcl │ │ │ ├── floor.tcl │ │ │ ├── fontchoose.tcl │ │ │ ├── form.tcl │ │ │ ├── goldberg.tcl │ │ │ ├── hello │ │ │ ├── hscale.tcl │ │ │ ├── icon.tcl │ │ │ ├── image1.tcl │ │ │ ├── image2.tcl │ │ │ ├── images │ │ │ │ ├── earth.gif │ │ │ │ ├── earthris.gif │ │ │ │ ├── flagdown.xbm │ │ │ │ ├── flagup.xbm │ │ │ │ ├── gray25.xbm │ │ │ │ ├── letters.xbm │ │ │ │ ├── noletter.xbm │ │ │ │ ├── ouster.png │ │ │ │ ├── pattern.xbm │ │ │ │ ├── tcllogo.gif │ │ │ │ └── teapot.ppm │ │ │ ├── items.tcl │ │ │ ├── ixset │ │ │ ├── knightstour.tcl │ │ │ ├── label.tcl │ │ │ ├── labelframe.tcl │ │ │ ├── license.terms │ │ │ ├── mclist.tcl │ │ │ ├── menu.tcl │ │ │ ├── menubu.tcl │ │ │ ├── msgbox.tcl │ │ │ ├── nl.msg │ │ │ ├── paned1.tcl │ │ │ ├── paned2.tcl │ │ │ ├── pendulum.tcl │ │ │ ├── plot.tcl │ │ │ ├── puzzle.tcl │ │ │ ├── radio.tcl │ │ │ ├── rmt │ │ │ ├── rolodex │ │ │ ├── ruler.tcl │ │ │ ├── sayings.tcl │ │ │ ├── search.tcl │ │ │ ├── spin.tcl │ │ │ ├── square │ │ │ ├── states.tcl │ │ │ ├── style.tcl │ │ │ ├── tclIndex │ │ │ ├── tcolor │ │ │ ├── text.tcl │ │ │ ├── textpeer.tcl │ │ │ ├── timer │ │ │ ├── toolbar.tcl │ │ │ ├── tree.tcl │ │ │ ├── ttkbut.tcl │ │ │ ├── ttkmenu.tcl │ │ │ ├── ttknote.tcl │ │ │ ├── ttkpane.tcl │ │ │ ├── ttkprogress.tcl │ │ │ ├── ttkscale.tcl │ │ │ ├── twind.tcl │ │ │ ├── unicodeout.tcl │ │ │ ├── vscale.tcl │ │ │ └── widget │ │ │ ├── dialog.tcl │ │ │ ├── entry.tcl │ │ │ ├── focus.tcl │ │ │ ├── fontchooser.tcl │ │ │ ├── iconlist.tcl │ │ │ ├── icons.tcl │ │ │ ├── images │ │ │ ├── README │ │ │ ├── logo.eps │ │ │ ├── logo100.gif │ │ │ ├── logo64.gif │ │ │ ├── logoLarge.gif │ │ │ ├── logoMed.gif │ │ │ ├── pwrdLogo.eps │ │ │ ├── pwrdLogo100.gif │ │ │ ├── pwrdLogo150.gif │ │ │ ├── pwrdLogo175.gif │ │ │ ├── pwrdLogo200.gif │ │ │ ├── pwrdLogo75.gif │ │ │ └── tai-ku.gif │ │ │ ├── license.terms │ │ │ ├── listbox.tcl │ │ │ ├── megawidget.tcl │ │ │ ├── menu.tcl │ │ │ ├── mkpsenc.tcl │ │ │ ├── msgbox.tcl │ │ │ ├── msgs │ │ │ ├── cs.msg │ │ │ ├── da.msg │ │ │ ├── de.msg │ │ │ ├── el.msg │ │ │ ├── en.msg │ │ │ ├── en_gb.msg │ │ │ ├── eo.msg │ │ │ ├── es.msg │ │ │ ├── fr.msg │ │ │ ├── hu.msg │ │ │ ├── it.msg │ │ │ ├── nl.msg │ │ │ ├── pl.msg │ │ │ ├── pt.msg │ │ │ ├── ru.msg │ │ │ └── sv.msg │ │ │ ├── obsolete.tcl │ │ │ ├── optMenu.tcl │ │ │ ├── palette.tcl │ │ │ ├── panedwindow.tcl │ │ │ ├── pkgIndex.tcl │ │ │ ├── safetk.tcl │ │ │ ├── scale.tcl │ │ │ ├── scrlbar.tcl │ │ │ ├── spinbox.tcl │ │ │ ├── tclIndex │ │ │ ├── tearoff.tcl │ │ │ ├── text.tcl │ │ │ ├── tk.tcl │ │ │ ├── tkfbox.tcl │ │ │ ├── ttk │ │ │ ├── altTheme.tcl │ │ │ ├── aquaTheme.tcl │ │ │ ├── button.tcl │ │ │ ├── clamTheme.tcl │ │ │ ├── classicTheme.tcl │ │ │ ├── combobox.tcl │ │ │ ├── cursors.tcl │ │ │ ├── defaults.tcl │ │ │ ├── entry.tcl │ │ │ ├── fonts.tcl │ │ │ ├── menubutton.tcl │ │ │ ├── notebook.tcl │ │ │ ├── panedwindow.tcl │ │ │ ├── progress.tcl │ │ │ ├── scale.tcl │ │ │ ├── scrollbar.tcl │ │ │ ├── sizegrip.tcl │ │ │ ├── spinbox.tcl │ │ │ ├── treeview.tcl │ │ │ ├── ttk.tcl │ │ │ ├── utils.tcl │ │ │ ├── vistaTheme.tcl │ │ │ ├── winTheme.tcl │ │ │ └── xpTheme.tcl │ │ │ ├── unsupported.tcl │ │ │ └── xmfbox.tcl │ │ └── testSet.txt ├── Chapter7-AdaBoost │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── workspace.xml │ │ └── 第七章AdaBoost.iml │ └── adaboost.py ├── Chapter8-Regression │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── workspace.xml │ │ └── 第八章回归.iml │ ├── abalone.txt │ ├── bayu.py │ ├── ex0.txt │ ├── lwlr.py │ ├── regression.py │ ├── ridge_regression.py │ └── venv │ │ ├── Lib │ │ ├── site-packages │ │ │ ├── easy-install.pth │ │ │ ├── pip-9.0.1-py3.6.egg │ │ │ │ ├── EGG-INFO │ │ │ │ │ ├── PKG-INFO │ │ │ │ │ ├── SOURCES.txt │ │ │ │ │ ├── dependency_links.txt │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ ├── not-zip-safe │ │ │ │ │ ├── requires.txt │ │ │ │ │ └── top_level.txt │ │ │ │ └── pip │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── cachecontrol │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _cmd.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ ├── caches │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── controller.py │ │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ │ ├── heuristics.py │ │ │ │ │ │ ├── serialize.py │ │ │ │ │ │ └── wrapper.py │ │ │ │ │ ├── colorama │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ansi.py │ │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ │ ├── initialise.py │ │ │ │ │ │ ├── win32.py │ │ │ │ │ │ └── winterm.py │ │ │ │ │ ├── distlib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _backport │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ │ ├── shutil.py │ │ │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ │ └── tarfile.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── database.py │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ ├── locators.py │ │ │ │ │ │ ├── manifest.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── resources.py │ │ │ │ │ │ ├── scripts.py │ │ │ │ │ │ ├── t32.exe │ │ │ │ │ │ ├── t64.exe │ │ │ │ │ │ ├── util.py │ │ │ │ │ │ ├── version.py │ │ │ │ │ │ ├── w32.exe │ │ │ │ │ │ ├── w64.exe │ │ │ │ │ │ └── wheel.py │ │ │ │ │ ├── distro.py │ │ │ │ │ ├── html5lib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _ihatexml.py │ │ │ │ │ │ ├── _inputstream.py │ │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ │ ├── _trie │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ │ ├── datrie.py │ │ │ │ │ │ │ └── py.py │ │ │ │ │ │ ├── _utils.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ │ └── whitespace.py │ │ │ │ │ │ ├── html5parser.py │ │ │ │ │ │ ├── serializer.py │ │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── genshi.py │ │ │ │ │ │ │ └── sax.py │ │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ │ └── etree_lxml.py │ │ │ │ │ │ └── treewalkers │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ │ │ └── genshi.py │ │ │ │ │ ├── ipaddress.py │ │ │ │ │ ├── lockfile │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── linklockfile.py │ │ │ │ │ │ ├── mkdirlockfile.py │ │ │ │ │ │ ├── pidlockfile.py │ │ │ │ │ │ ├── sqlitelockfile.py │ │ │ │ │ │ └── symlinklockfile.py │ │ │ │ │ ├── ordereddict.py │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── version.py │ │ │ │ │ ├── pkg_resources │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── progress │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bar.py │ │ │ │ │ │ ├── counter.py │ │ │ │ │ │ ├── helpers.py │ │ │ │ │ │ └── spinner.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ ├── re-vendor.py │ │ │ │ │ ├── requests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── adapters.py │ │ │ │ │ │ ├── api.py │ │ │ │ │ │ ├── auth.py │ │ │ │ │ │ ├── cacert.pem │ │ │ │ │ │ ├── certs.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── cookies.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ ├── hooks.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── chardet │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── big5freq.py │ │ │ │ │ │ │ │ ├── big5prober.py │ │ │ │ │ │ │ │ ├── chardetect.py │ │ │ │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ │ │ │ ├── escprober.py │ │ │ │ │ │ │ │ ├── escsm.py │ │ │ │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ │ │ │ └── utf8prober.py │ │ │ │ │ │ │ └── urllib3 │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── _collections.py │ │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ │ │ └── socks.py │ │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ │ ├── filepost.py │ │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ │ │ └── url.py │ │ │ │ │ │ ├── sessions.py │ │ │ │ │ │ ├── status_codes.py │ │ │ │ │ │ ├── structures.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── retrying.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── webencodings │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── labels.py │ │ │ │ │ │ ├── mklabels.py │ │ │ │ │ │ ├── tests.py │ │ │ │ │ │ └── x_user_defined.py │ │ │ │ │ ├── basecommand.py │ │ │ │ │ ├── baseparser.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── dictconfig.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── locations.py │ │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── index.py │ │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── check.py │ │ │ │ │ └── freeze.py │ │ │ │ │ ├── pep425tags.py │ │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ │ ├── status_codes.py │ │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── outdated.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ └── ui.py │ │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ └── subversion.py │ │ │ │ │ └── wheel.py │ │ │ ├── setuptools-28.8.0-py3.6.egg │ │ │ └── setuptools.pth │ │ └── tcl8.6 │ │ │ └── init.tcl │ │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── _asyncio.pyd │ │ ├── _bz2.pyd │ │ ├── _ctypes.pyd │ │ ├── _ctypes_test.pyd │ │ ├── _decimal.pyd │ │ ├── _elementtree.pyd │ │ ├── _hashlib.pyd │ │ ├── _lzma.pyd │ │ ├── _msi.pyd │ │ ├── _multiprocessing.pyd │ │ ├── _overlapped.pyd │ │ ├── _socket.pyd │ │ ├── _sqlite3.pyd │ │ ├── _ssl.pyd │ │ ├── _testbuffer.pyd │ │ ├── _testcapi.pyd │ │ ├── _testconsole.pyd │ │ ├── _testimportmultiple.pyd │ │ ├── _testmultiphase.pyd │ │ ├── _tkinter.pyd │ │ ├── activate │ │ ├── activate.bat │ │ ├── api-ms-win-core-console-l1-1-0.dll │ │ ├── api-ms-win-core-datetime-l1-1-0.dll │ │ ├── api-ms-win-core-debug-l1-1-0.dll │ │ ├── api-ms-win-core-errorhandling-l1-1-0.dll │ │ ├── api-ms-win-core-file-l1-1-0.dll │ │ ├── api-ms-win-core-file-l1-2-0.dll │ │ ├── api-ms-win-core-file-l2-1-0.dll │ │ ├── api-ms-win-core-handle-l1-1-0.dll │ │ ├── api-ms-win-core-heap-l1-1-0.dll │ │ ├── api-ms-win-core-interlocked-l1-1-0.dll │ │ ├── api-ms-win-core-libraryloader-l1-1-0.dll │ │ ├── api-ms-win-core-localization-l1-2-0.dll │ │ ├── api-ms-win-core-memory-l1-1-0.dll │ │ ├── api-ms-win-core-namedpipe-l1-1-0.dll │ │ ├── api-ms-win-core-processenvironment-l1-1-0.dll │ │ ├── api-ms-win-core-processthreads-l1-1-0.dll │ │ ├── api-ms-win-core-processthreads-l1-1-1.dll │ │ ├── api-ms-win-core-profile-l1-1-0.dll │ │ ├── api-ms-win-core-rtlsupport-l1-1-0.dll │ │ ├── api-ms-win-core-string-l1-1-0.dll │ │ ├── api-ms-win-core-synch-l1-1-0.dll │ │ ├── api-ms-win-core-synch-l1-2-0.dll │ │ ├── api-ms-win-core-sysinfo-l1-1-0.dll │ │ ├── api-ms-win-core-timezone-l1-1-0.dll │ │ ├── api-ms-win-core-util-l1-1-0.dll │ │ ├── api-ms-win-crt-conio-l1-1-0.dll │ │ ├── api-ms-win-crt-convert-l1-1-0.dll │ │ ├── api-ms-win-crt-environment-l1-1-0.dll │ │ ├── api-ms-win-crt-filesystem-l1-1-0.dll │ │ ├── api-ms-win-crt-heap-l1-1-0.dll │ │ ├── api-ms-win-crt-locale-l1-1-0.dll │ │ ├── api-ms-win-crt-math-l1-1-0.dll │ │ ├── api-ms-win-crt-multibyte-l1-1-0.dll │ │ ├── api-ms-win-crt-private-l1-1-0.dll │ │ ├── api-ms-win-crt-process-l1-1-0.dll │ │ ├── api-ms-win-crt-runtime-l1-1-0.dll │ │ ├── api-ms-win-crt-stdio-l1-1-0.dll │ │ ├── api-ms-win-crt-string-l1-1-0.dll │ │ ├── api-ms-win-crt-time-l1-1-0.dll │ │ ├── api-ms-win-crt-utility-l1-1-0.dll │ │ ├── concrt140.dll │ │ ├── deactivate.bat │ │ ├── easy_install-3.6-script.py │ │ ├── easy_install-3.6.exe │ │ ├── easy_install-script.py │ │ ├── easy_install.exe │ │ ├── msvcp140.dll │ │ ├── pip-script.py │ │ ├── pip.exe │ │ ├── pip3-script.py │ │ ├── pip3.6-script.py │ │ ├── pip3.6.exe │ │ ├── pip3.exe │ │ ├── pyexpat.pyd │ │ ├── python.exe │ │ ├── python3.dll │ │ ├── python36.dll │ │ ├── pythoncom36.dll │ │ ├── pythonw.exe │ │ ├── pywintypes36.dll │ │ ├── select.pyd │ │ ├── sqlite3.dll │ │ ├── tcl86t.dll │ │ ├── tk86t.dll │ │ ├── ucrtbase.dll │ │ ├── unicodedata.pyd │ │ ├── vccorlib140.dll │ │ ├── vcomp140.dll │ │ ├── vcruntime140.dll │ │ ├── winsound.pyd │ │ ├── xlwings32.dll │ │ └── xlwings64.dll │ │ └── pyvenv.cfg ├── Machine Learning in Action.pdf ├── README.md ├── _config.yml └── 机器学习实战.pdf ├── README.md └── 笔记 ├── Big-Data-Analysis-and-Mining.md ├── 《机器学习》(周志华)笔记.md └── 吴恩达机器学习笔记 ├── 01_02_Introduction_regression_analysis_and_gr.html ├── 01_02_Introduction_regression_analysis_and_gr_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [17].png ├── Image [18].png ├── Image [19].png ├── Image [1].png ├── Image [20].png ├── Image [21].png ├── Image [22].png ├── Image [23].png ├── Image [24].png ├── Image [25].png ├── Image [2].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 03_Linear_algebra_review.html ├── 03_Linear_algebra_review_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [1].png ├── Image [2].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 04_Linear_Regression_with_multiple_variables.html ├── 04_Linear_Regression_with_multiple_variables_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [1].png ├── Image [2].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 05_Octave.html ├── 06_Logistic_Regression.html ├── 06_Logistic_Regression_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [17].png ├── Image [18].png ├── Image [19].png ├── Image [1].png ├── Image [20].png ├── Image [21].png ├── Image [22].png ├── Image [23].png ├── Image [24].png ├── Image [2].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 07_Regularization.html ├── 07_Regularization_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [1].png ├── Image [2].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 08_Neural_Networks_Representation.html ├── 08_Neural_Networks_Representation_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [17].png ├── Image [18].png ├── Image [19].png ├── Image [1].png ├── Image [2].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 09_Neural_Networks_Learning.html ├── 09_Neural_Networks_Learning_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [17].png ├── Image [18].png ├── Image [19].png ├── Image [1].png ├── Image [20].png ├── Image [21].png ├── Image [22].png ├── Image [23].png ├── Image [24].png ├── Image [25].png ├── Image [26].png ├── Image [27].png ├── Image [28].png ├── Image [29].png ├── Image [2].png ├── Image [30].png ├── Image [31].png ├── Image [32].png ├── Image [33].png ├── Image [34].png ├── Image [35].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 10_Advice_for_applying_machine_learning.html ├── 10_Advice_for_applying_machine_learning_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [1].png ├── Image [2].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 11_Machine_Learning_System_Design.html ├── 11_Machine_Learning_System_Design_files ├── Image [1].png ├── Image [2].png ├── Image [3].png ├── Image [4].png └── Image.png ├── 12_Support_Vector_Machines.html ├── 12_Support_Vector_Machines_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [17].png ├── Image [18].png ├── Image [19].png ├── Image [1].png ├── Image [20].png ├── Image [21].png ├── Image [22].png ├── Image [23].png ├── Image [24].png ├── Image [25].png ├── Image [26].png ├── Image [27].png ├── Image [28].png ├── Image [29].png ├── Image [2].png ├── Image [30].png ├── Image [31].png ├── Image [32].png ├── Image [33].png ├── Image [34].png ├── Image [35].png ├── Image [36].png ├── Image [37].png ├── Image [38].png ├── Image [39].png ├── Image [3].png ├── Image [40].png ├── Image [41].png ├── Image [42].png ├── Image [43].png ├── Image [44].png ├── Image [45].png ├── Image [46].png ├── Image [47].png ├── Image [48].png ├── Image [49].png ├── Image [4].png ├── Image [50].png ├── Image [51].png ├── Image [52].png ├── Image [53].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 13_Clustering.html ├── 13_Clustering_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [1].png ├── Image [2].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 14_Dimensionality_Reduction.html ├── 14_Dimensionality_Reduction_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [17].png ├── Image [18].png ├── Image [19].png ├── Image [1].png ├── Image [20].png ├── Image [2].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 15_Anomaly_Detection.html ├── 15_Anomaly_Detection_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [17].png ├── Image [18].png ├── Image [19].png ├── Image [1].png ├── Image [20].png ├── Image [21].png ├── Image [22].png ├── Image [23].png ├── Image [24].png ├── Image [25].png ├── Image [26].png ├── Image [27].png ├── Image [28].png ├── Image [29].png ├── Image [2].png ├── Image [30].png ├── Image [31].png ├── Image [32].png ├── Image [33].png ├── Image [34].png ├── Image [35].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 16_Recommender_Systems.html ├── 16_Recommender_Systems_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [17].png ├── Image [18].png ├── Image [19].png ├── Image [1].png ├── Image [20].png ├── Image [21].png ├── Image [22].png ├── Image [23].png ├── Image [24].png ├── Image [25].png ├── Image [26].png ├── Image [27].png ├── Image [28].png ├── Image [29].png ├── Image [2].png ├── Image [30].png ├── Image [31].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 17_Large_Scale_Machine_Learning.html ├── 17_Large_Scale_Machine_Learning_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [17].png ├── Image [18].png ├── Image [19].png ├── Image [1].png ├── Image [20].png ├── Image [21].png ├── Image [22].png ├── Image [23].png ├── Image [24].png ├── Image [25].png ├── Image [26].png ├── Image [27].png ├── Image [28].png ├── Image [29].png ├── Image [2].png ├── Image [30].png ├── Image [31].png ├── Image [32].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 18_Application_Example_OCR.html ├── 18_Application_Example_OCR_files ├── Image [10].png ├── Image [11].png ├── Image [12].png ├── Image [13].png ├── Image [14].png ├── Image [15].png ├── Image [16].png ├── Image [1].png ├── Image [2].png ├── Image [3].png ├── Image [4].png ├── Image [5].png ├── Image [6].png ├── Image [7].png ├── Image [8].png ├── Image [9].png └── Image.png ├── 19_Course_Summary.html ├── changelog.html ├── index.html └── style.css /Machine Learning In Action/CHapter11-Apriori/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/CHapter11-Apriori/.idea/misc.xml -------------------------------------------------------------------------------- /Machine Learning In Action/CHapter11-Apriori/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/CHapter11-Apriori/.idea/modules.xml -------------------------------------------------------------------------------- /Machine Learning In Action/CHapter11-Apriori/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/CHapter11-Apriori/.idea/workspace.xml -------------------------------------------------------------------------------- /Machine Learning In Action/CHapter11-Apriori/.idea/第十一章Apriori.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/CHapter11-Apriori/.idea/第十一章Apriori.iml -------------------------------------------------------------------------------- /Machine Learning In Action/CHapter11-Apriori/Apiori.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/CHapter11-Apriori/Apiori.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter10-Kmeans/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter10-Kmeans/.idea/misc.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter10-Kmeans/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter10-Kmeans/.idea/modules.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter10-Kmeans/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter10-Kmeans/.idea/workspace.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter10-Kmeans/.idea/第十章k均值.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter10-Kmeans/.idea/第十章k均值.iml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter10-Kmeans/biKmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter10-Kmeans/biKmeans.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter10-Kmeans/kMeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter10-Kmeans/kMeans.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter10-Kmeans/testSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter10-Kmeans/testSet.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter10-Kmeans/testSet2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter10-Kmeans/testSet2.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter13-PCA/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter13-PCA/.idea/misc.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter13-PCA/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter13-PCA/.idea/modules.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter13-PCA/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter13-PCA/.idea/workspace.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter13-PCA/.idea/第十三章PCA.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter13-PCA/.idea/第十三章PCA.iml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter13-PCA/pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter13-PCA/pca.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter13-PCA/pca1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter13-PCA/pca1.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter13-PCA/secom.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter13-PCA/secom.data -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter13-PCA/testSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter13-PCA/testSet.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter14-SVD/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter14-SVD/.idea/misc.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter14-SVD/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter14-SVD/.idea/modules.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter14-SVD/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter14-SVD/.idea/workspace.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter14-SVD/.idea/第十四章SVD.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter14-SVD/.idea/第十四章SVD.iml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter14-SVD/0_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter14-SVD/0_5.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter14-SVD/SVD1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter14-SVD/SVD1.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter14-SVD/scd_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter14-SVD/scd_picture.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/.idea/misc.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/.idea/modules.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/.idea/workspace.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/.idea/第十五章 Hadoop.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/.idea/第十五章 Hadoop.iml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/MyMapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/MyMapper.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/MyReducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/MyReducer.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/err.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/inputFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/inputFile.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/junk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/junk.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/kickStart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/kickStart.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/mrMean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/mrMean.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/mrMeanMapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/mrMeanMapper.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/mrMeanReducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/mrMeanReducer.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/mrSVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/mrSVM.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/mrSVMkickStart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/mrSVMkickStart.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/myfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/myfile.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/myout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/myout.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/pegasos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/pegasos.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/proximalSVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/proximalSVM.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/py27dbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/py27dbg.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/svmDat2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/svmDat2.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/svmDat26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/svmDat26 -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/svmDat27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/svmDat27 -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/svmData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/svmData.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/testSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/testSet.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/testSet200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/testSet200.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter15-Hadoop/wc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter15-Hadoop/wc.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter3-Decision_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter3-Decision_tree/README.md -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter3-Decision_tree/classifierStorage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter3-Decision_tree/classifierStorage.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter3-Decision_tree/decision_tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter3-Decision_tree/decision_tree -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter3-Decision_tree/decision_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter3-Decision_tree/decision_tree.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter3-Decision_tree/lenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter3-Decision_tree/lenses.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter3-Decision_tree/sklearn_decision_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter3-Decision_tree/sklearn_decision_tree.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/.idea/misc.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/.idea/modules.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/.idea/workspace.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/.idea/第四章朴素贝叶斯.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/.idea/第四章朴素贝叶斯.iml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/NB_spam_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/NB_spam_classify.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/beiyesi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/beiyesi.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/10.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/11.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/12.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/13.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/14.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/15.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/16.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/17.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/18.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/19.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/2.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/20.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/21.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/22.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/23.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/24.txt: -------------------------------------------------------------------------------- 1 | Ok I will be there by 10:00 at the latest. -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/25.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/3.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/4.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/5.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/6.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/7.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/8.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/ham/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/ham/9.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/1.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/10.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/11.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/12.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/13.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/14.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/15.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/16.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/17.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/18.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/19.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/2.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/20.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/21.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/22.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/23.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/24.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/25.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/3.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/4.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/5.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/6.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/7.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/8.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/email/spam/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/email/spam/9.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/spam.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/Python-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/Python-ast.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/Python.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/abstract.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/accu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/accu.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/asdl.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/ast.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/bitset.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/bltinmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/bltinmodule.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/boolobject.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/bytesobject.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/cellobject.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/ceval.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/classobject.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/code.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/codecs.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/compile.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/datetime.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/descrobject.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/dictobject.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/dtoa.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/enumobject.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/errcode.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/eval.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/fileutils.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/genobject.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/graminit.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/grammar.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/import.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/intrcheck.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/marshal.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/node.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/object.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/objimpl.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/opcode.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/osdefs.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/osmodule.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/parsetok.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pgen.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/py_curses.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyarena.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyatomic.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pycapsule.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyconfig.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyctype.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pydebug.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pydtrace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pydtrace.d -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pydtrace.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyerrors.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyexpat.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyfpe.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pygetopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pygetopt.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyhash.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pymacro.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pymath.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pymem.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pyport.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pystate.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pystrcmp.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pystrhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pystrhex.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pystrtod.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pythonrun.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pythread.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/pytime.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/setobject.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/sip.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/structseq.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/symtable.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/sysmodule.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/token.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/traceback.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/typeslots.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/ucnhash.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Include/warnings.h -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/__future__.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/_bootlocale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/_bootlocale.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/_weakrefset.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/abc.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/base64.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/bisect.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/codecs.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/copy.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/copyreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/copyreg.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/encodings/hz.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/enum.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/fnmatch.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/functools.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/genericpath.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/hashlib.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/heapq.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/hmac.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/imp.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/io.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/keyword.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/linecache.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/locale.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/no-global-site-packages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/ntpath.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/operator.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/orig-prefix.txt: -------------------------------------------------------------------------------- 1 | C:\Users\linxid\Anaconda3 -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/os.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/posixpath.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/random.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/re.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/reprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/reprlib.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/rlcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/rlcompleter.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/shutil.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site-packages/pip-9.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site-packages/pip-9.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site-packages/pip/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site-packages/setuptools-38.5.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site-packages/setuptools-38.5.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site-packages/setuptools-38.5.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site-packages/wheel-0.30.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site-packages/wheel-0.30.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/site.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/sre_compile.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/sre_parse.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/stat.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/struct.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/tarfile.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/tempfile.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/token.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/tokenize.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/types.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/warnings.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Lib/weakref.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/activate -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/pip3.6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/pip3.6.exe -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/wheel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/Scripts/wheel.exe -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/pip-selfcheck.json: -------------------------------------------------------------------------------- 1 | {"last_check":"2018-03-01T03:27:20Z","pypi_version":"9.0.1"} -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/auto.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/auto.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/init.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/safe.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/safe.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/tclIndex -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/tm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/tm.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/word.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tcl8.6/word.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/demos/rmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/demos/rmt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/entry.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/focus.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/focus.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/icons.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/icons.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/menu.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/scale.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/tclIndex -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/text.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter4-NaiveBayes/venv/tcl/tk8.6/tk.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/.idea/misc.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/logistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/logistic.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/testSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/testSet.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/abc.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/copy.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/enum.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/hmac.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/imp.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/io.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/no-global-site-packages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/orig-prefix.txt: -------------------------------------------------------------------------------- 1 | C:\Users\linxid\Anaconda3 -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/os.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/re.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site-packages/pip-9.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site-packages/pip-9.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site-packages/pip/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site-packages/setuptools-38.5.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site-packages/setuptools-38.5.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site-packages/setuptools-38.5.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site-packages/wheel-0.30.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site-packages/wheel-0.30.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/site.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/venv/Lib/stat.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter5-LogisticRegression/venv/testSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter5-LogisticRegression/venv/testSet.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter7-AdaBoost/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter7-AdaBoost/.idea/misc.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter7-AdaBoost/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter7-AdaBoost/.idea/modules.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter7-AdaBoost/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter7-AdaBoost/.idea/workspace.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter7-AdaBoost/.idea/第七章AdaBoost.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter7-AdaBoost/.idea/第七章AdaBoost.iml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter7-AdaBoost/adaboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter7-AdaBoost/adaboost.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/.idea/misc.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/.idea/modules.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/.idea/workspace.xml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/.idea/第八章回归.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/.idea/第八章回归.iml -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/abalone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/abalone.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/bayu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/bayu.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/ex0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/ex0.txt -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/lwlr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/lwlr.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/regression.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/ridge_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/ridge_regression.py -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Lib/site-packages/pip-9.0.1-py3.6.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Lib/site-packages/pip-9.0.1-py3.6.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Lib/site-packages/pip-9.0.1-py3.6.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Lib/site-packages/pip-9.0.1-py3.6.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Lib/site-packages/pip-9.0.1-py3.6.egg/pip/_vendor/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Lib/site-packages/pip-9.0.1-py3.6.egg/pip/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-28.8.0-py3.6.egg 2 | -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Lib/tcl8.6/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Lib/tcl8.6/init.tcl -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/_bz2.pyd -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/_ctypes.pyd -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/_lzma.pyd -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/_msi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/_msi.pyd -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/_socket.pyd -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/_ssl.pyd -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/activate -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/pip3.6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/pip3.6.exe -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/pyexpat.pyd -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/python3.dll -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/select.pyd -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/sqlite3.dll -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/tcl86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/tcl86t.dll -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/Scripts/tk86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/Scripts/tk86t.dll -------------------------------------------------------------------------------- /Machine Learning In Action/Chapter8-Regression/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Chapter8-Regression/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Machine Learning In Action/Machine Learning in Action.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/Machine Learning in Action.pdf -------------------------------------------------------------------------------- /Machine Learning In Action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/README.md -------------------------------------------------------------------------------- /Machine Learning In Action/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/_config.yml -------------------------------------------------------------------------------- /Machine Learning In Action/机器学习实战.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/Machine Learning In Action/机器学习实战.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/README.md -------------------------------------------------------------------------------- /笔记/Big-Data-Analysis-and-Mining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/Big-Data-Analysis-and-Mining.md -------------------------------------------------------------------------------- /笔记/《机器学习》(周志华)笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/《机器学习》(周志华)笔记.md -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/01_02_Introduction_regression_analysis_and_gr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/01_02_Introduction_regression_analysis_and_gr.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/03_Linear_algebra_review_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/04_Linear_Regression_with_multiple_variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/04_Linear_Regression_with_multiple_variables.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/05_Octave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/05_Octave.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [14].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [14].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [15].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [15].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [16].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [16].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [17].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [17].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [18].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [18].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [19].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [19].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [20].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [20].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [21].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [21].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [22].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [22].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [23].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [23].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [24].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [24].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/06_Logistic_Regression_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [14].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [14].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [15].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [15].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [16].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [16].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/07_Regularization_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/07_Regularization_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [14].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [14].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [15].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [15].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [16].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [16].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [17].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [17].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [18].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [18].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [19].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [19].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/08_Neural_Networks_Representation_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [14].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [14].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [15].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [15].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [16].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [16].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [17].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [17].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [18].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [18].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [19].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [19].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [20].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [20].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [21].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [21].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [22].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [22].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [23].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [23].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [24].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [24].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [25].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [25].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [26].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [26].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [27].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [27].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [28].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [28].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [29].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [29].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [30].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [30].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [31].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [31].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [32].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [32].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [33].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [33].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [34].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [34].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [35].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [35].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/09_Neural_Networks_Learning_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/10_Advice_for_applying_machine_learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/10_Advice_for_applying_machine_learning.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/10_Advice_for_applying_machine_learning_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/10_Advice_for_applying_machine_learning_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/11_Machine_Learning_System_Design_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [14].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [14].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [15].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [15].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [16].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [16].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [17].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [17].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [18].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [18].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [19].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [19].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [20].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [20].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [21].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [21].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [22].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [22].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [23].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [23].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [24].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [24].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [25].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [25].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [26].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [26].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [27].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [27].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [28].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [28].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [29].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [29].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [30].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [30].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [31].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [31].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [32].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [32].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [33].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [33].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [34].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [34].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [35].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [35].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [36].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [36].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [37].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [37].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [38].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [38].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [39].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [39].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [40].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [40].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [41].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [41].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [42].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [42].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [43].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [43].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [44].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [44].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [45].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [45].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [46].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [46].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [47].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [47].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [48].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [48].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [49].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [49].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [50].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [50].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [51].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [51].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [52].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [52].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [53].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [53].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/12_Support_Vector_Machines_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/13_Clustering_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/13_Clustering_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [14].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [14].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [15].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [15].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [16].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [16].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [17].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [17].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [18].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [18].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [19].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [19].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [20].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [20].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/14_Dimensionality_Reduction_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [14].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [14].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [15].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [15].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [16].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [16].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [17].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [17].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [18].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [18].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [19].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [19].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [20].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [20].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [21].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [21].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [22].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [22].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [23].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [23].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [24].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [24].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [25].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [25].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [26].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [26].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [27].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [27].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [28].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [28].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [29].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [29].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [30].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [30].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [31].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [31].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [32].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [32].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [33].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [33].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [34].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [34].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [35].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [35].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/15_Anomaly_Detection_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [14].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [14].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [15].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [15].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [16].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [16].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [17].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [17].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [18].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [18].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [19].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [19].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [20].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [20].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [21].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [21].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [22].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [22].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [23].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [23].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [24].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [24].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [25].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [25].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [26].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [26].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [27].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [27].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [28].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [28].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [29].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [29].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [30].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [30].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [31].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [31].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/16_Recommender_Systems_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [14].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [14].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [15].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [15].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [16].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [16].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [17].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [17].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [18].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [18].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [19].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [19].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [20].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [20].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [21].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [21].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [22].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [22].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [23].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [23].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [24].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [24].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [25].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [25].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [26].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [26].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [27].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [27].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [28].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [28].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [29].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [29].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [30].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [30].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [31].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [31].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [32].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [32].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/17_Large_Scale_Machine_Learning_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [10].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [10].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [11].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [11].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [12].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [12].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [13].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [13].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [14].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [14].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [15].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [15].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [16].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [16].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [1].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [1].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [2].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [2].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [3].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [3].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [4].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [4].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [5].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [5].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [6].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [6].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [7].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [7].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [8].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [8].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [9].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image [9].png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/18_Application_Example_OCR_files/Image.png -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/19_Course_Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/19_Course_Summary.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/changelog.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/index.html -------------------------------------------------------------------------------- /笔记/吴恩达机器学习笔记/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxid/Machine_Learning_Study_Path/HEAD/笔记/吴恩达机器学习笔记/style.css --------------------------------------------------------------------------------