├── .gitattributes ├── .idea ├── .gitignore ├── ML Code.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── C++ └── EigenTutorial1 │ └── EigenBasics │ ├── .vs │ └── EigenBasics │ │ └── v16 │ │ ├── .suo │ │ └── Browse.VC.db │ ├── Debug │ ├── EigenBasics.exe │ ├── EigenBasics.ilk │ └── EigenBasics.pdb │ ├── EigenBasics.sln │ └── EigenBasics │ ├── Code │ └── Basics.cpp │ ├── Debug │ ├── Basics.obj │ ├── EigenBasics.exe.recipe │ ├── EigenBasics.log │ ├── EigenBasics.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── EigenBasics.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── vc142.idb │ └── vc142.pdb │ ├── EigenBasics.vcxproj │ ├── EigenBasics.vcxproj.filters │ ├── EigenBasics.vcxproj.user │ └── x64 │ └── Debug │ ├── EigenBasics.Build.CppClean.log │ ├── EigenBasics.exe.recipe │ ├── EigenBasics.log │ ├── EigenBasics.tlog │ ├── CL.command.1.tlog │ ├── EigenBasics.lastbuildstate │ └── unsuccessfulbuild │ └── EigenBasics.vcxproj.FileListAbsolute.txt ├── JAVA ├── KMeans │ ├── .classpath │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── jarRepositories.xml │ │ ├── libraries │ │ │ ├── Maven__ch_qos_logback_logback_classic_1_1_7.xml │ │ │ ├── Maven__ch_qos_logback_logback_core_1_1_7.xml │ │ │ ├── Maven__com_github_oshi_oshi_core_3_4_2.xml │ │ │ ├── Maven__com_google_flatbuffers_flatbuffers_java_1_10_0.xml │ │ │ ├── Maven__com_jakewharton_byteunits_byteunits_0_9_1.xml │ │ │ ├── Maven__commons_codec_commons_codec_1_10.xml │ │ │ ├── Maven__commons_io_commons_io_2_5.xml │ │ │ ├── Maven__commons_net_commons_net_3_1.xml │ │ │ ├── Maven__junit_junit_4_12.xml │ │ │ ├── Maven__net_ericaro_neoitertools_1_0_0.xml │ │ │ ├── Maven__net_java_dev_jna_jna_4_3_0.xml │ │ │ ├── Maven__net_java_dev_jna_jna_platform_4_3_0.xml │ │ │ ├── Maven__org_apache_commons_commons_compress_1_18.xml │ │ │ ├── Maven__org_apache_commons_commons_lang3_3_6.xml │ │ │ ├── Maven__org_apache_commons_commons_math3_3_5.xml │ │ │ ├── Maven__org_bytedeco_javacpp_1_5_3.xml │ │ │ ├── Maven__org_bytedeco_javacpp_linux_x86_64_1_5_3.xml │ │ │ ├── Maven__org_bytedeco_openblas_0_3_9_1_1_5_3.xml │ │ │ ├── Maven__org_bytedeco_openblas_linux_x86_64_0_3_9_1_1_5_3.xml │ │ │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ │ │ ├── Maven__org_jfree_jfreechart_1_5_0.xml │ │ │ ├── Maven__org_nd4j_guava_1_0_0_beta7.xml │ │ │ ├── Maven__org_nd4j_jackson_1_0_0_beta7.xml │ │ │ ├── Maven__org_nd4j_nd4j_api_1_0_0_beta7.xml │ │ │ ├── Maven__org_nd4j_nd4j_common_1_0_0_beta7.xml │ │ │ ├── Maven__org_nd4j_nd4j_native_1_0_0_beta7.xml │ │ │ ├── Maven__org_nd4j_nd4j_native_api_1_0_0_beta7.xml │ │ │ ├── Maven__org_nd4j_nd4j_native_linux_x86_64_1_0_0_beta7.xml │ │ │ ├── Maven__org_nd4j_protobuf_1_0_0_beta7.xml │ │ │ ├── Maven__org_slf4j_slf4j_api_1_7_20.xml │ │ │ └── Maven__org_threeten_threetenbp_1_3_3.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── Data │ │ ├── bird_small.mat │ │ ├── ex7data1.csv │ │ ├── ex7data2.csv │ │ ├── ex7faces.csv │ │ └── rubiks_cube.jpg │ ├── MLKMean.iml │ ├── Test Results - KMeansTests.html │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── JML │ │ │ │ └── KMean │ │ │ │ └── algo │ │ │ │ ├── Centroids.java │ │ │ │ ├── KMeans.java │ │ │ │ └── Main.java │ │ └── test │ │ │ └── java │ │ │ └── KMeansTests.java │ └── target │ │ ├── classes │ │ └── com │ │ │ └── JML │ │ │ └── KMean │ │ │ └── algo │ │ │ ├── Centroids.class │ │ │ ├── KMeans.class │ │ │ └── Main.class │ │ └── test-classes │ │ └── KMeansTests.class ├── README.Md └── Regression │ ├── .idea │ ├── compiler.xml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── jarRepositories.xml │ ├── libraries │ │ ├── Maven__ch_qos_logback_logback_classic_1_1_7.xml │ │ ├── Maven__ch_qos_logback_logback_core_1_1_7.xml │ │ ├── Maven__com_github_oshi_oshi_core_3_4_2.xml │ │ ├── Maven__com_google_flatbuffers_flatbuffers_java_1_10_0.xml │ │ ├── Maven__com_jakewharton_byteunits_byteunits_0_9_1.xml │ │ ├── Maven__commons_codec_commons_codec_1_10.xml │ │ ├── Maven__commons_io_commons_io_2_5.xml │ │ ├── Maven__commons_net_commons_net_3_1.xml │ │ ├── Maven__junit_junit_4_13_1.xml │ │ ├── Maven__net_ericaro_neoitertools_1_0_0.xml │ │ ├── Maven__net_java_dev_jna_jna_4_3_0.xml │ │ ├── Maven__net_java_dev_jna_jna_platform_4_3_0.xml │ │ ├── Maven__org_apache_commons_commons_compress_1_18.xml │ │ ├── Maven__org_apache_commons_commons_lang3_3_6.xml │ │ ├── Maven__org_apache_commons_commons_math3_3_5.xml │ │ ├── Maven__org_bytedeco_javacpp_1_5_3.xml │ │ ├── Maven__org_bytedeco_javacpp_linux_x86_64_1_5_3.xml │ │ ├── Maven__org_bytedeco_openblas_0_3_9_1_1_5_3.xml │ │ ├── Maven__org_bytedeco_openblas_linux_x86_64_0_3_9_1_1_5_3.xml │ │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ │ ├── Maven__org_jfree_jfreechart_1_5_0.xml │ │ ├── Maven__org_nd4j_guava_1_0_0_beta7.xml │ │ ├── Maven__org_nd4j_jackson_1_0_0_beta7.xml │ │ ├── Maven__org_nd4j_nd4j_api_1_0_0_beta7.xml │ │ ├── Maven__org_nd4j_nd4j_common_1_0_0_beta7.xml │ │ ├── Maven__org_nd4j_nd4j_native_1_0_0_beta7.xml │ │ ├── Maven__org_nd4j_nd4j_native_api_1_0_0_beta7.xml │ │ ├── Maven__org_nd4j_nd4j_native_linux_x86_64_1_0_0_beta7.xml │ │ ├── Maven__org_nd4j_protobuf_1_0_0_beta7.xml │ │ ├── Maven__org_slf4j_slf4j_api_1_7_20.xml │ │ └── Maven__org_threeten_threetenbp_1_3_3.xml │ ├── misc.xml │ ├── modules.xml │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml │ ├── Data │ ├── Chart.png │ ├── ex1data1.txt │ ├── ex1data2.txt │ ├── multi.png │ └── scatt.png │ ├── MLModelsJava.iml │ ├── pom.xml │ ├── src │ ├── Regression │ │ ├── Normalization │ │ │ └── Scale.java │ │ ├── Optimizers │ │ │ └── Optimizer.java │ │ └── main │ │ │ ├── dualvariable │ │ │ └── LinearRegression.java │ │ │ └── multivariable │ │ │ └── MultiVariable.java │ └── test.java │ └── target │ └── classes │ ├── Regression │ ├── Normalization │ │ └── Scale.class │ ├── Optimizers │ │ └── Optimizer.class │ └── main │ │ ├── dualvariable │ │ └── LinearRegression.class │ │ └── multivariable │ │ └── MultiVariable.class │ └── test.class ├── Python ├── .idea │ ├── .gitignore │ ├── Python.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── AnomlyDetection │ ├── .idea │ │ ├── .gitignore │ │ ├── AnomlyDetection.iml │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── AD │ │ ├── AD_main.py │ │ ├── ComputThreshold.py │ │ ├── GaussianModel.py │ │ ├── __pycache__ │ │ │ ├── ComputThreshold.cpython-38.pyc │ │ │ ├── GaussianModel.cpython-38.pyc │ │ │ └── stand_dev.cpython-38.pyc │ │ └── stand_dev.py │ └── Data │ │ ├── ex8data1.mat │ │ └── ex8data2.mat ├── Classification │ ├── .idea │ │ ├── Classification.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── Data │ │ ├── ex2data1.txt │ │ ├── ex2data2.txt │ │ └── ex3data1.mat │ ├── Images │ │ ├── Classi1.png │ │ └── MultiClass1.png │ ├── LogisticRegression │ │ ├── BinaryClassification.py │ │ ├── LossandGradient.py │ │ ├── MultiClass.py │ │ ├── __pycache__ │ │ │ ├── LossandGradient.cpython-38.pyc │ │ │ ├── prediction.cpython-38.pyc │ │ │ ├── prediction1VSall.cpython-38.pyc │ │ │ └── sigmoidFuntion.cpython-38.pyc │ │ ├── plot_data.py │ │ ├── prediction.py │ │ ├── prediction1VSall.py │ │ ├── regularizationExample.py │ │ └── sigmoidFuntion.py │ └── venv │ │ ├── Lib │ │ └── site-packages │ │ │ ├── __pycache__ │ │ │ └── easy_install.cpython-38.pyc │ │ │ ├── _distutils_hack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── override.cpython-38.pyc │ │ │ └── override.py │ │ │ ├── distutils-precedence.pth │ │ │ ├── easy_install.py │ │ │ ├── pip-20.2.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── __main__.cpython-38.pyc │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── build_env.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── locations.cpython-38.pyc │ │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ │ ├── pyproject.cpython-38.pyc │ │ │ │ │ ├── self_outdated_check.cpython-38.pyc │ │ │ │ │ └── wheel_builder.cpython-38.pyc │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── autocompletion.cpython-38.pyc │ │ │ │ │ │ ├── base_command.cpython-38.pyc │ │ │ │ │ │ ├── cmdoptions.cpython-38.pyc │ │ │ │ │ │ ├── command_context.cpython-38.pyc │ │ │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ │ │ ├── main_parser.cpython-38.pyc │ │ │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ │ │ ├── progress_bars.cpython-38.pyc │ │ │ │ │ │ ├── req_command.cpython-38.pyc │ │ │ │ │ │ ├── spinners.cpython-38.pyc │ │ │ │ │ │ └── status_codes.cpython-38.pyc │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── command_context.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── progress_bars.py │ │ │ │ │ ├── req_command.py │ │ │ │ │ ├── spinners.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ │ ├── completion.cpython-38.pyc │ │ │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ │ ├── hash.cpython-38.pyc │ │ │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ │ │ ├── list.cpython-38.pyc │ │ │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ │ │ ├── show.cpython-38.pyc │ │ │ │ │ │ ├── uninstall.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── configuration.py │ │ │ │ ├── distributions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── installed.cpython-38.pyc │ │ │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── installed.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── collector.cpython-38.pyc │ │ │ │ │ │ └── package_finder.cpython-38.pyc │ │ │ │ │ ├── collector.py │ │ │ │ │ └── package_finder.py │ │ │ │ ├── locations.py │ │ │ │ ├── main.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── candidate.cpython-38.pyc │ │ │ │ │ │ ├── direct_url.cpython-38.pyc │ │ │ │ │ │ ├── format_control.cpython-38.pyc │ │ │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ │ │ ├── link.cpython-38.pyc │ │ │ │ │ │ ├── scheme.cpython-38.pyc │ │ │ │ │ │ ├── search_scope.cpython-38.pyc │ │ │ │ │ │ ├── selection_prefs.cpython-38.pyc │ │ │ │ │ │ ├── target_python.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── direct_url.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── link.py │ │ │ │ │ ├── scheme.py │ │ │ │ │ ├── search_scope.py │ │ │ │ │ ├── selection_prefs.py │ │ │ │ │ ├── target_python.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── network │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ │ ├── lazy_wheel.cpython-38.pyc │ │ │ │ │ │ ├── session.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── xmlrpc.cpython-38.pyc │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── lazy_wheel.py │ │ │ │ │ ├── session.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── xmlrpc.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ │ └── prepare.cpython-38.pyc │ │ │ │ │ ├── build │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc │ │ │ │ │ │ │ ├── wheel.cpython-38.pyc │ │ │ │ │ │ │ └── wheel_legacy.cpython-38.pyc │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ │ ├── wheel.py │ │ │ │ │ │ └── wheel_legacy.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── install │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── editable_legacy.cpython-38.pyc │ │ │ │ │ │ │ ├── legacy.cpython-38.pyc │ │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ │ ├── legacy.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── constructors.cpython-38.pyc │ │ │ │ │ │ ├── req_file.cpython-38.pyc │ │ │ │ │ │ ├── req_install.cpython-38.pyc │ │ │ │ │ │ ├── req_set.cpython-38.pyc │ │ │ │ │ │ ├── req_tracker.cpython-38.pyc │ │ │ │ │ │ └── req_uninstall.cpython-38.pyc │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolution │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── base.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── legacy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ │ │ └── resolver.py │ │ │ │ │ └── resolvelib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── candidates.cpython-38.pyc │ │ │ │ │ │ ├── factory.cpython-38.pyc │ │ │ │ │ │ ├── provider.cpython-38.pyc │ │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── candidates.py │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ ├── provider.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ └── resolver.py │ │ │ │ ├── self_outdated_check.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ │ ├── compatibility_tags.cpython-38.pyc │ │ │ │ │ │ ├── datetime.cpython-38.pyc │ │ │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ │ │ ├── direct_url_helpers.cpython-38.pyc │ │ │ │ │ │ ├── distutils_args.cpython-38.pyc │ │ │ │ │ │ ├── encoding.cpython-38.pyc │ │ │ │ │ │ ├── entrypoints.cpython-38.pyc │ │ │ │ │ │ ├── filesystem.cpython-38.pyc │ │ │ │ │ │ ├── filetypes.cpython-38.pyc │ │ │ │ │ │ ├── glibc.cpython-38.pyc │ │ │ │ │ │ ├── hashes.cpython-38.pyc │ │ │ │ │ │ ├── inject_securetransport.cpython-38.pyc │ │ │ │ │ │ ├── logging.cpython-38.pyc │ │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── packaging.cpython-38.pyc │ │ │ │ │ │ ├── parallel.cpython-38.pyc │ │ │ │ │ │ ├── pkg_resources.cpython-38.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-38.pyc │ │ │ │ │ │ ├── subprocess.cpython-38.pyc │ │ │ │ │ │ ├── temp_dir.cpython-38.pyc │ │ │ │ │ │ ├── typing.cpython-38.pyc │ │ │ │ │ │ ├── unpacking.cpython-38.pyc │ │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ │ ├── virtualenv.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compatibility_tags.py │ │ │ │ │ ├── datetime.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── direct_url_helpers.py │ │ │ │ │ ├── distutils_args.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── entrypoints.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── filetypes.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── inject_securetransport.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── parallel.py │ │ │ │ │ ├── pkg_resources.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ ├── subprocess.py │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ ├── typing.py │ │ │ │ │ ├── unpacking.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── bazaar.cpython-38.pyc │ │ │ │ │ │ ├── git.cpython-38.pyc │ │ │ │ │ │ ├── mercurial.cpython-38.pyc │ │ │ │ │ │ ├── subversion.cpython-38.pyc │ │ │ │ │ │ └── versioncontrol.cpython-38.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ ├── subversion.py │ │ │ │ │ └── versioncontrol.py │ │ │ │ └── wheel_builder.py │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ ├── contextlib2.cpython-38.pyc │ │ │ │ ├── distro.cpython-38.pyc │ │ │ │ ├── ipaddress.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ ├── retrying.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _cmd.cpython-38.pyc │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── controller.cpython-38.pyc │ │ │ │ │ ├── filewrapper.cpython-38.pyc │ │ │ │ │ ├── heuristics.cpython-38.pyc │ │ │ │ │ ├── serialize.cpython-38.pyc │ │ │ │ │ └── wrapper.cpython-38.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── file_cache.cpython-38.pyc │ │ │ │ │ │ └── redis_cache.cpython-38.pyc │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ │ └── core.cpython-38.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── big5freq.cpython-38.pyc │ │ │ │ │ ├── big5prober.cpython-38.pyc │ │ │ │ │ ├── chardistribution.cpython-38.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-38.pyc │ │ │ │ │ ├── charsetprober.cpython-38.pyc │ │ │ │ │ ├── codingstatemachine.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── cp949prober.cpython-38.pyc │ │ │ │ │ ├── enums.cpython-38.pyc │ │ │ │ │ ├── escprober.cpython-38.pyc │ │ │ │ │ ├── escsm.cpython-38.pyc │ │ │ │ │ ├── eucjpprober.cpython-38.pyc │ │ │ │ │ ├── euckrfreq.cpython-38.pyc │ │ │ │ │ ├── euckrprober.cpython-38.pyc │ │ │ │ │ ├── euctwfreq.cpython-38.pyc │ │ │ │ │ ├── euctwprober.cpython-38.pyc │ │ │ │ │ ├── gb2312freq.cpython-38.pyc │ │ │ │ │ ├── gb2312prober.cpython-38.pyc │ │ │ │ │ ├── hebrewprober.cpython-38.pyc │ │ │ │ │ ├── jisfreq.cpython-38.pyc │ │ │ │ │ ├── jpcntx.cpython-38.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ │ │ │ ├── langcyrillicmodel.cpython-38.pyc │ │ │ │ │ ├── langgreekmodel.cpython-38.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-38.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-38.pyc │ │ │ │ │ ├── langthaimodel.cpython-38.pyc │ │ │ │ │ ├── langturkishmodel.cpython-38.pyc │ │ │ │ │ ├── latin1prober.cpython-38.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-38.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ │ │ │ ├── mbcssm.cpython-38.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-38.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ │ │ │ ├── sjisprober.cpython-38.pyc │ │ │ │ │ ├── universaldetector.cpython-38.pyc │ │ │ │ │ ├── utf8prober.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── chardetect.cpython-38.pyc │ │ │ │ │ └── chardetect.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── enums.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 │ │ │ │ ├── langturkishmodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ ├── utf8prober.py │ │ │ │ └── version.py │ │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── ansi.cpython-38.pyc │ │ │ │ │ ├── ansitowin32.cpython-38.pyc │ │ │ │ │ ├── initialise.cpython-38.pyc │ │ │ │ │ ├── win32.cpython-38.pyc │ │ │ │ │ └── winterm.cpython-38.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── contextlib2.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── database.cpython-38.pyc │ │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ │ ├── locators.cpython-38.pyc │ │ │ │ │ ├── manifest.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ ├── resources.cpython-38.pyc │ │ │ │ │ ├── scripts.cpython-38.pyc │ │ │ │ │ ├── util.cpython-38.pyc │ │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ │ ├── shutil.cpython-38.pyc │ │ │ │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ │ │ │ └── tarfile.cpython-38.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-38.pyc │ │ │ │ │ ├── _ihatexml.cpython-38.pyc │ │ │ │ │ ├── _inputstream.cpython-38.pyc │ │ │ │ │ ├── _tokenizer.cpython-38.pyc │ │ │ │ │ ├── _utils.cpython-38.pyc │ │ │ │ │ ├── constants.cpython-38.pyc │ │ │ │ │ ├── html5parser.cpython-38.pyc │ │ │ │ │ └── serializer.cpython-38.pyc │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _base.cpython-38.pyc │ │ │ │ │ │ └── py.cpython-38.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-38.pyc │ │ │ │ │ │ ├── lint.cpython-38.pyc │ │ │ │ │ │ ├── optionaltags.cpython-38.pyc │ │ │ │ │ │ ├── sanitizer.cpython-38.pyc │ │ │ │ │ │ └── whitespace.cpython-38.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-38.pyc │ │ │ │ │ │ ├── genshi.cpython-38.pyc │ │ │ │ │ │ └── sax.cpython-38.pyc │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ │ │ └── etree_lxml.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ │ ├── etree_lxml.cpython-38.pyc │ │ │ │ │ └── genshi.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── codec.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ │ ├── idnadata.cpython-38.pyc │ │ │ │ │ ├── intranges.cpython-38.pyc │ │ │ │ │ ├── package_data.cpython-38.pyc │ │ │ │ │ └── uts46data.cpython-38.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _version.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── ext.cpython-38.pyc │ │ │ │ │ └── fallback.cpython-38.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _typing.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _in_process.cpython-38.pyc │ │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── colorlog.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── dirtools.cpython-38.pyc │ │ │ │ │ ├── envbuild.cpython-38.pyc │ │ │ │ │ ├── meta.cpython-38.pyc │ │ │ │ │ └── wrappers.cpython-38.pyc │ │ │ │ ├── _in_process.py │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── dirtools.py │ │ │ │ ├── envbuild.py │ │ │ │ ├── meta.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── py31compat.cpython-38.pyc │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bar.cpython-38.pyc │ │ │ │ │ ├── counter.cpython-38.pyc │ │ │ │ │ └── spinner.cpython-38.pyc │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── __version__.cpython-38.pyc │ │ │ │ │ ├── _internal_utils.cpython-38.pyc │ │ │ │ │ ├── adapters.cpython-38.pyc │ │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ │ ├── certs.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── cookies.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ │ ├── hooks.cpython-38.pyc │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ ├── packages.cpython-38.pyc │ │ │ │ │ ├── sessions.cpython-38.pyc │ │ │ │ │ ├── status_codes.cpython-38.pyc │ │ │ │ │ ├── structures.cpython-38.pyc │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ ├── __version__.py │ │ │ │ ├── _internal_utils.py │ │ │ │ ├── adapters.py │ │ │ │ ├── api.py │ │ │ │ ├── auth.py │ │ │ │ ├── certs.py │ │ │ │ ├── compat.py │ │ │ │ ├── cookies.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── help.py │ │ │ │ ├── hooks.py │ │ │ │ ├── models.py │ │ │ │ ├── packages.py │ │ │ │ ├── sessions.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── structures.py │ │ │ │ └── utils.py │ │ │ │ ├── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── providers.cpython-38.pyc │ │ │ │ │ ├── reporters.cpython-38.pyc │ │ │ │ │ ├── resolvers.cpython-38.pyc │ │ │ │ │ └── structs.cpython-38.pyc │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── collections_abc.cpython-38.pyc │ │ │ │ │ └── collections_abc.py │ │ │ │ ├── providers.py │ │ │ │ ├── reporters.py │ │ │ │ ├── resolvers.py │ │ │ │ └── structs.py │ │ │ │ ├── retrying.py │ │ │ │ ├── six.py │ │ │ │ ├── toml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── common.cpython-38.pyc │ │ │ │ │ ├── decoder.cpython-38.pyc │ │ │ │ │ ├── encoder.cpython-38.pyc │ │ │ │ │ ├── ordered.cpython-38.pyc │ │ │ │ │ └── tz.cpython-38.pyc │ │ │ │ ├── common.py │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── ordered.py │ │ │ │ └── tz.py │ │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _collections.cpython-38.pyc │ │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ │ ├── connectionpool.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ ├── filepost.cpython-38.pyc │ │ │ │ │ ├── poolmanager.cpython-38.pyc │ │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ │ └── response.cpython-38.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _appengine_environ.cpython-38.pyc │ │ │ │ │ │ ├── appengine.cpython-38.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-38.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-38.pyc │ │ │ │ │ │ ├── securetransport.cpython-38.pyc │ │ │ │ │ │ └── socks.cpython-38.pyc │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── bindings.cpython-38.pyc │ │ │ │ │ │ │ └── low_level.cpython-38.pyc │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── six.cpython-38.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── makefile.cpython-38.pyc │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── _implementation.cpython-38.pyc │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ │ ├── queue.cpython-38.pyc │ │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ │ ├── response.cpython-38.pyc │ │ │ │ │ ├── retry.cpython-38.pyc │ │ │ │ │ ├── ssl_.cpython-38.pyc │ │ │ │ │ ├── timeout.cpython-38.pyc │ │ │ │ │ ├── url.cpython-38.pyc │ │ │ │ │ └── wait.cpython-38.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ ├── vendor.txt │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── labels.cpython-38.pyc │ │ │ │ ├── mklabels.cpython-38.pyc │ │ │ │ ├── tests.cpython-38.pyc │ │ │ │ └── x_user_defined.cpython-38.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ │ └── six.cpython-38.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pyparsing.py │ │ │ │ └── six.py │ │ │ └── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── setuptools-49.3.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ │ └── setuptools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _deprecation_warning.cpython-38.pyc │ │ │ ├── _imp.cpython-38.pyc │ │ │ ├── archive_util.cpython-38.pyc │ │ │ ├── build_meta.cpython-38.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── dep_util.cpython-38.pyc │ │ │ ├── depends.cpython-38.pyc │ │ │ ├── dist.cpython-38.pyc │ │ │ ├── errors.cpython-38.pyc │ │ │ ├── extension.cpython-38.pyc │ │ │ ├── glob.cpython-38.pyc │ │ │ ├── installer.cpython-38.pyc │ │ │ ├── launch.cpython-38.pyc │ │ │ ├── lib2to3_ex.cpython-38.pyc │ │ │ ├── monkey.cpython-38.pyc │ │ │ ├── msvc.cpython-38.pyc │ │ │ ├── namespaces.cpython-38.pyc │ │ │ ├── package_index.cpython-38.pyc │ │ │ ├── py27compat.cpython-38.pyc │ │ │ ├── py31compat.cpython-38.pyc │ │ │ ├── py33compat.cpython-38.pyc │ │ │ ├── py34compat.cpython-38.pyc │ │ │ ├── sandbox.cpython-38.pyc │ │ │ ├── ssl_support.cpython-38.pyc │ │ │ ├── unicode_utils.cpython-38.pyc │ │ │ ├── version.cpython-38.pyc │ │ │ ├── wheel.cpython-38.pyc │ │ │ └── windows_support.cpython-38.pyc │ │ │ ├── _deprecation_warning.py │ │ │ ├── _distutils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _msvccompiler.cpython-38.pyc │ │ │ │ ├── archive_util.cpython-38.pyc │ │ │ │ ├── bcppcompiler.cpython-38.pyc │ │ │ │ ├── ccompiler.cpython-38.pyc │ │ │ │ ├── cmd.cpython-38.pyc │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ ├── cygwinccompiler.cpython-38.pyc │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ ├── dep_util.cpython-38.pyc │ │ │ │ ├── dir_util.cpython-38.pyc │ │ │ │ ├── dist.cpython-38.pyc │ │ │ │ ├── errors.cpython-38.pyc │ │ │ │ ├── extension.cpython-38.pyc │ │ │ │ ├── fancy_getopt.cpython-38.pyc │ │ │ │ ├── file_util.cpython-38.pyc │ │ │ │ ├── filelist.cpython-38.pyc │ │ │ │ ├── log.cpython-38.pyc │ │ │ │ ├── msvc9compiler.cpython-38.pyc │ │ │ │ ├── msvccompiler.cpython-38.pyc │ │ │ │ ├── spawn.cpython-38.pyc │ │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ │ ├── text_file.cpython-38.pyc │ │ │ │ ├── unixccompiler.cpython-38.pyc │ │ │ │ ├── util.cpython-38.pyc │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ └── versionpredicate.cpython-38.pyc │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── bcppcompiler.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bdist.cpython-38.pyc │ │ │ │ │ ├── bdist_dumb.cpython-38.pyc │ │ │ │ │ ├── bdist_msi.cpython-38.pyc │ │ │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ │ ├── build_clib.cpython-38.pyc │ │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ │ ├── build_py.cpython-38.pyc │ │ │ │ │ ├── build_scripts.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── clean.cpython-38.pyc │ │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ │ ├── install_data.cpython-38.pyc │ │ │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ │ │ ├── install_headers.cpython-38.pyc │ │ │ │ │ ├── install_lib.cpython-38.pyc │ │ │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ │ │ ├── register.cpython-38.pyc │ │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ │ └── upload.cpython-38.pyc │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_msi.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── check.py │ │ │ │ ├── clean.py │ │ │ │ ├── config.py │ │ │ │ ├── install.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_headers.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── register.py │ │ │ │ ├── sdist.py │ │ │ │ └── upload.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── cygwinccompiler.py │ │ │ ├── debug.py │ │ │ ├── dep_util.py │ │ │ ├── dir_util.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── fancy_getopt.py │ │ │ ├── file_util.py │ │ │ ├── filelist.py │ │ │ ├── log.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── spawn.py │ │ │ ├── sysconfig.py │ │ │ ├── text_file.py │ │ │ ├── unixccompiler.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ └── versionpredicate.py │ │ │ ├── _imp.py │ │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── ordered_set.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ ├── ordered_set.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ │ ├── archive_util.py │ │ │ ├── build_meta.py │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── cli.exe │ │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── alias.cpython-38.pyc │ │ │ │ ├── bdist_egg.cpython-38.pyc │ │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ │ ├── build_clib.cpython-38.pyc │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ ├── build_py.cpython-38.pyc │ │ │ │ ├── develop.cpython-38.pyc │ │ │ │ ├── dist_info.cpython-38.pyc │ │ │ │ ├── easy_install.cpython-38.pyc │ │ │ │ ├── egg_info.cpython-38.pyc │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ │ ├── install_lib.cpython-38.pyc │ │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ │ ├── py36compat.cpython-38.pyc │ │ │ │ ├── register.cpython-38.pyc │ │ │ │ ├── rotate.cpython-38.pyc │ │ │ │ ├── saveopts.cpython-38.pyc │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ ├── setopt.cpython-38.pyc │ │ │ │ ├── test.cpython-38.pyc │ │ │ │ ├── upload.cpython-38.pyc │ │ │ │ └── upload_docs.cpython-38.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 │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── glob.py │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui.exe │ │ │ ├── installer.py │ │ │ ├── launch.py │ │ │ ├── lib2to3_ex.py │ │ │ ├── monkey.py │ │ │ ├── msvc.py │ │ │ ├── namespaces.py │ │ │ ├── package_index.py │ │ │ ├── py27compat.py │ │ │ ├── py31compat.py │ │ │ ├── py33compat.py │ │ │ ├── py34compat.py │ │ │ ├── sandbox.py │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── ssl_support.py │ │ │ ├── unicode_utils.py │ │ │ ├── version.py │ │ │ ├── wheel.py │ │ │ └── windows_support.py │ │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── activate │ │ ├── activate.bat │ │ ├── deactivate.bat │ │ ├── easy_install-3.8.exe │ │ ├── easy_install.exe │ │ ├── pip.exe │ │ ├── pip3.8.exe │ │ ├── pip3.exe │ │ ├── python.exe │ │ └── pythonw.exe │ │ └── pyvenv.cfg ├── LinearRegression │ ├── .idea │ │ ├── LinearRegression.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── Data │ │ ├── ex1data1.txt │ │ └── ex1data2.txt │ ├── Images │ │ ├── Regression1.png │ │ └── Regression2.png │ ├── LinearRegressionMain │ │ ├── MultiVariableRegression.py │ │ ├── Optimization.py │ │ ├── SingleVariableRegression.py │ │ ├── __pycache__ │ │ │ ├── Optimization.cpython-38.pyc │ │ │ └── plot_data.cpython-38.pyc │ │ └── plot_data.py │ ├── MathTools │ │ ├── FeatureNormalization.py │ │ ├── StandardDeviation.py │ │ └── __pycache__ │ │ │ ├── FeatureNormalization.cpython-38.pyc │ │ │ └── StandardDeviation.cpython-38.pyc │ └── venv │ │ ├── Lib │ │ └── site-packages │ │ │ ├── __pycache__ │ │ │ └── easy_install.cpython-38.pyc │ │ │ ├── _distutils_hack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── override.cpython-38.pyc │ │ │ └── override.py │ │ │ ├── distutils-precedence.pth │ │ │ ├── easy_install.py │ │ │ ├── pip-20.2.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── __main__.cpython-38.pyc │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── build_env.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── locations.cpython-38.pyc │ │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ │ ├── pyproject.cpython-38.pyc │ │ │ │ │ ├── self_outdated_check.cpython-38.pyc │ │ │ │ │ └── wheel_builder.cpython-38.pyc │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── autocompletion.cpython-38.pyc │ │ │ │ │ │ ├── base_command.cpython-38.pyc │ │ │ │ │ │ ├── cmdoptions.cpython-38.pyc │ │ │ │ │ │ ├── command_context.cpython-38.pyc │ │ │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ │ │ ├── main_parser.cpython-38.pyc │ │ │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ │ │ ├── progress_bars.cpython-38.pyc │ │ │ │ │ │ ├── req_command.cpython-38.pyc │ │ │ │ │ │ ├── spinners.cpython-38.pyc │ │ │ │ │ │ └── status_codes.cpython-38.pyc │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── command_context.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── progress_bars.py │ │ │ │ │ ├── req_command.py │ │ │ │ │ ├── spinners.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ │ ├── completion.cpython-38.pyc │ │ │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ │ ├── hash.cpython-38.pyc │ │ │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ │ │ ├── list.cpython-38.pyc │ │ │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ │ │ ├── show.cpython-38.pyc │ │ │ │ │ │ ├── uninstall.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── configuration.py │ │ │ │ ├── distributions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── installed.cpython-38.pyc │ │ │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── installed.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── collector.cpython-38.pyc │ │ │ │ │ │ └── package_finder.cpython-38.pyc │ │ │ │ │ ├── collector.py │ │ │ │ │ └── package_finder.py │ │ │ │ ├── locations.py │ │ │ │ ├── main.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── candidate.cpython-38.pyc │ │ │ │ │ │ ├── direct_url.cpython-38.pyc │ │ │ │ │ │ ├── format_control.cpython-38.pyc │ │ │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ │ │ ├── link.cpython-38.pyc │ │ │ │ │ │ ├── scheme.cpython-38.pyc │ │ │ │ │ │ ├── search_scope.cpython-38.pyc │ │ │ │ │ │ ├── selection_prefs.cpython-38.pyc │ │ │ │ │ │ ├── target_python.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── direct_url.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── link.py │ │ │ │ │ ├── scheme.py │ │ │ │ │ ├── search_scope.py │ │ │ │ │ ├── selection_prefs.py │ │ │ │ │ ├── target_python.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── network │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ │ ├── lazy_wheel.cpython-38.pyc │ │ │ │ │ │ ├── session.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── xmlrpc.cpython-38.pyc │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── lazy_wheel.py │ │ │ │ │ ├── session.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── xmlrpc.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ │ └── prepare.cpython-38.pyc │ │ │ │ │ ├── build │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc │ │ │ │ │ │ │ ├── wheel.cpython-38.pyc │ │ │ │ │ │ │ └── wheel_legacy.cpython-38.pyc │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ │ ├── wheel.py │ │ │ │ │ │ └── wheel_legacy.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── install │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── editable_legacy.cpython-38.pyc │ │ │ │ │ │ │ ├── legacy.cpython-38.pyc │ │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ │ ├── legacy.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── constructors.cpython-38.pyc │ │ │ │ │ │ ├── req_file.cpython-38.pyc │ │ │ │ │ │ ├── req_install.cpython-38.pyc │ │ │ │ │ │ ├── req_set.cpython-38.pyc │ │ │ │ │ │ ├── req_tracker.cpython-38.pyc │ │ │ │ │ │ └── req_uninstall.cpython-38.pyc │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolution │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── base.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── legacy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ │ │ └── resolver.py │ │ │ │ │ └── resolvelib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── candidates.cpython-38.pyc │ │ │ │ │ │ ├── factory.cpython-38.pyc │ │ │ │ │ │ ├── provider.cpython-38.pyc │ │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── candidates.py │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ ├── provider.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ └── resolver.py │ │ │ │ ├── self_outdated_check.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ │ ├── compatibility_tags.cpython-38.pyc │ │ │ │ │ │ ├── datetime.cpython-38.pyc │ │ │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ │ │ ├── direct_url_helpers.cpython-38.pyc │ │ │ │ │ │ ├── distutils_args.cpython-38.pyc │ │ │ │ │ │ ├── encoding.cpython-38.pyc │ │ │ │ │ │ ├── entrypoints.cpython-38.pyc │ │ │ │ │ │ ├── filesystem.cpython-38.pyc │ │ │ │ │ │ ├── filetypes.cpython-38.pyc │ │ │ │ │ │ ├── glibc.cpython-38.pyc │ │ │ │ │ │ ├── hashes.cpython-38.pyc │ │ │ │ │ │ ├── inject_securetransport.cpython-38.pyc │ │ │ │ │ │ ├── logging.cpython-38.pyc │ │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── packaging.cpython-38.pyc │ │ │ │ │ │ ├── parallel.cpython-38.pyc │ │ │ │ │ │ ├── pkg_resources.cpython-38.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-38.pyc │ │ │ │ │ │ ├── subprocess.cpython-38.pyc │ │ │ │ │ │ ├── temp_dir.cpython-38.pyc │ │ │ │ │ │ ├── typing.cpython-38.pyc │ │ │ │ │ │ ├── unpacking.cpython-38.pyc │ │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ │ ├── virtualenv.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compatibility_tags.py │ │ │ │ │ ├── datetime.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── direct_url_helpers.py │ │ │ │ │ ├── distutils_args.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── entrypoints.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── filetypes.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── inject_securetransport.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── parallel.py │ │ │ │ │ ├── pkg_resources.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ ├── subprocess.py │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ ├── typing.py │ │ │ │ │ ├── unpacking.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── bazaar.cpython-38.pyc │ │ │ │ │ │ ├── git.cpython-38.pyc │ │ │ │ │ │ ├── mercurial.cpython-38.pyc │ │ │ │ │ │ ├── subversion.cpython-38.pyc │ │ │ │ │ │ └── versioncontrol.cpython-38.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ ├── subversion.py │ │ │ │ │ └── versioncontrol.py │ │ │ │ └── wheel_builder.py │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ ├── contextlib2.cpython-38.pyc │ │ │ │ ├── distro.cpython-38.pyc │ │ │ │ ├── ipaddress.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ ├── retrying.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _cmd.cpython-38.pyc │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── controller.cpython-38.pyc │ │ │ │ │ ├── filewrapper.cpython-38.pyc │ │ │ │ │ ├── heuristics.cpython-38.pyc │ │ │ │ │ ├── serialize.cpython-38.pyc │ │ │ │ │ └── wrapper.cpython-38.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── file_cache.cpython-38.pyc │ │ │ │ │ │ └── redis_cache.cpython-38.pyc │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ │ └── core.cpython-38.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── big5freq.cpython-38.pyc │ │ │ │ │ ├── big5prober.cpython-38.pyc │ │ │ │ │ ├── chardistribution.cpython-38.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-38.pyc │ │ │ │ │ ├── charsetprober.cpython-38.pyc │ │ │ │ │ ├── codingstatemachine.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── cp949prober.cpython-38.pyc │ │ │ │ │ ├── enums.cpython-38.pyc │ │ │ │ │ ├── escprober.cpython-38.pyc │ │ │ │ │ ├── escsm.cpython-38.pyc │ │ │ │ │ ├── eucjpprober.cpython-38.pyc │ │ │ │ │ ├── euckrfreq.cpython-38.pyc │ │ │ │ │ ├── euckrprober.cpython-38.pyc │ │ │ │ │ ├── euctwfreq.cpython-38.pyc │ │ │ │ │ ├── euctwprober.cpython-38.pyc │ │ │ │ │ ├── gb2312freq.cpython-38.pyc │ │ │ │ │ ├── gb2312prober.cpython-38.pyc │ │ │ │ │ ├── hebrewprober.cpython-38.pyc │ │ │ │ │ ├── jisfreq.cpython-38.pyc │ │ │ │ │ ├── jpcntx.cpython-38.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ │ │ │ ├── langcyrillicmodel.cpython-38.pyc │ │ │ │ │ ├── langgreekmodel.cpython-38.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-38.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-38.pyc │ │ │ │ │ ├── langthaimodel.cpython-38.pyc │ │ │ │ │ ├── langturkishmodel.cpython-38.pyc │ │ │ │ │ ├── latin1prober.cpython-38.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-38.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ │ │ │ ├── mbcssm.cpython-38.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-38.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ │ │ │ ├── sjisprober.cpython-38.pyc │ │ │ │ │ ├── universaldetector.cpython-38.pyc │ │ │ │ │ ├── utf8prober.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── chardetect.cpython-38.pyc │ │ │ │ │ └── chardetect.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── enums.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 │ │ │ │ ├── langturkishmodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ ├── utf8prober.py │ │ │ │ └── version.py │ │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── ansi.cpython-38.pyc │ │ │ │ │ ├── ansitowin32.cpython-38.pyc │ │ │ │ │ ├── initialise.cpython-38.pyc │ │ │ │ │ ├── win32.cpython-38.pyc │ │ │ │ │ └── winterm.cpython-38.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── contextlib2.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── database.cpython-38.pyc │ │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ │ ├── locators.cpython-38.pyc │ │ │ │ │ ├── manifest.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ ├── resources.cpython-38.pyc │ │ │ │ │ ├── scripts.cpython-38.pyc │ │ │ │ │ ├── util.cpython-38.pyc │ │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ │ ├── shutil.cpython-38.pyc │ │ │ │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ │ │ │ └── tarfile.cpython-38.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-38.pyc │ │ │ │ │ ├── _ihatexml.cpython-38.pyc │ │ │ │ │ ├── _inputstream.cpython-38.pyc │ │ │ │ │ ├── _tokenizer.cpython-38.pyc │ │ │ │ │ ├── _utils.cpython-38.pyc │ │ │ │ │ ├── constants.cpython-38.pyc │ │ │ │ │ ├── html5parser.cpython-38.pyc │ │ │ │ │ └── serializer.cpython-38.pyc │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _base.cpython-38.pyc │ │ │ │ │ │ └── py.cpython-38.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-38.pyc │ │ │ │ │ │ ├── lint.cpython-38.pyc │ │ │ │ │ │ ├── optionaltags.cpython-38.pyc │ │ │ │ │ │ ├── sanitizer.cpython-38.pyc │ │ │ │ │ │ └── whitespace.cpython-38.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-38.pyc │ │ │ │ │ │ ├── genshi.cpython-38.pyc │ │ │ │ │ │ └── sax.cpython-38.pyc │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ │ │ └── etree_lxml.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ │ ├── etree_lxml.cpython-38.pyc │ │ │ │ │ └── genshi.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── codec.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ │ ├── idnadata.cpython-38.pyc │ │ │ │ │ ├── intranges.cpython-38.pyc │ │ │ │ │ ├── package_data.cpython-38.pyc │ │ │ │ │ └── uts46data.cpython-38.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _version.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── ext.cpython-38.pyc │ │ │ │ │ └── fallback.cpython-38.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _typing.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _in_process.cpython-38.pyc │ │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── colorlog.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── dirtools.cpython-38.pyc │ │ │ │ │ ├── envbuild.cpython-38.pyc │ │ │ │ │ ├── meta.cpython-38.pyc │ │ │ │ │ └── wrappers.cpython-38.pyc │ │ │ │ ├── _in_process.py │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── dirtools.py │ │ │ │ ├── envbuild.py │ │ │ │ ├── meta.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── py31compat.cpython-38.pyc │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bar.cpython-38.pyc │ │ │ │ │ ├── counter.cpython-38.pyc │ │ │ │ │ └── spinner.cpython-38.pyc │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── __version__.cpython-38.pyc │ │ │ │ │ ├── _internal_utils.cpython-38.pyc │ │ │ │ │ ├── adapters.cpython-38.pyc │ │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ │ ├── certs.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── cookies.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ │ ├── hooks.cpython-38.pyc │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ ├── packages.cpython-38.pyc │ │ │ │ │ ├── sessions.cpython-38.pyc │ │ │ │ │ ├── status_codes.cpython-38.pyc │ │ │ │ │ ├── structures.cpython-38.pyc │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ ├── __version__.py │ │ │ │ ├── _internal_utils.py │ │ │ │ ├── adapters.py │ │ │ │ ├── api.py │ │ │ │ ├── auth.py │ │ │ │ ├── certs.py │ │ │ │ ├── compat.py │ │ │ │ ├── cookies.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── help.py │ │ │ │ ├── hooks.py │ │ │ │ ├── models.py │ │ │ │ ├── packages.py │ │ │ │ ├── sessions.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── structures.py │ │ │ │ └── utils.py │ │ │ │ ├── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── providers.cpython-38.pyc │ │ │ │ │ ├── reporters.cpython-38.pyc │ │ │ │ │ ├── resolvers.cpython-38.pyc │ │ │ │ │ └── structs.cpython-38.pyc │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── collections_abc.cpython-38.pyc │ │ │ │ │ └── collections_abc.py │ │ │ │ ├── providers.py │ │ │ │ ├── reporters.py │ │ │ │ ├── resolvers.py │ │ │ │ └── structs.py │ │ │ │ ├── retrying.py │ │ │ │ ├── six.py │ │ │ │ ├── toml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── common.cpython-38.pyc │ │ │ │ │ ├── decoder.cpython-38.pyc │ │ │ │ │ ├── encoder.cpython-38.pyc │ │ │ │ │ ├── ordered.cpython-38.pyc │ │ │ │ │ └── tz.cpython-38.pyc │ │ │ │ ├── common.py │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── ordered.py │ │ │ │ └── tz.py │ │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _collections.cpython-38.pyc │ │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ │ ├── connectionpool.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ ├── filepost.cpython-38.pyc │ │ │ │ │ ├── poolmanager.cpython-38.pyc │ │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ │ └── response.cpython-38.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _appengine_environ.cpython-38.pyc │ │ │ │ │ │ ├── appengine.cpython-38.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-38.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-38.pyc │ │ │ │ │ │ ├── securetransport.cpython-38.pyc │ │ │ │ │ │ └── socks.cpython-38.pyc │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── bindings.cpython-38.pyc │ │ │ │ │ │ │ └── low_level.cpython-38.pyc │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── six.cpython-38.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── makefile.cpython-38.pyc │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── _implementation.cpython-38.pyc │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ │ ├── queue.cpython-38.pyc │ │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ │ ├── response.cpython-38.pyc │ │ │ │ │ ├── retry.cpython-38.pyc │ │ │ │ │ ├── ssl_.cpython-38.pyc │ │ │ │ │ ├── timeout.cpython-38.pyc │ │ │ │ │ ├── url.cpython-38.pyc │ │ │ │ │ └── wait.cpython-38.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ ├── vendor.txt │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── labels.cpython-38.pyc │ │ │ │ ├── mklabels.cpython-38.pyc │ │ │ │ ├── tests.cpython-38.pyc │ │ │ │ └── x_user_defined.cpython-38.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ │ └── six.cpython-38.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pyparsing.py │ │ │ │ └── six.py │ │ │ └── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── setuptools-49.3.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ │ └── setuptools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _deprecation_warning.cpython-38.pyc │ │ │ ├── _imp.cpython-38.pyc │ │ │ ├── archive_util.cpython-38.pyc │ │ │ ├── build_meta.cpython-38.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── dep_util.cpython-38.pyc │ │ │ ├── depends.cpython-38.pyc │ │ │ ├── dist.cpython-38.pyc │ │ │ ├── errors.cpython-38.pyc │ │ │ ├── extension.cpython-38.pyc │ │ │ ├── glob.cpython-38.pyc │ │ │ ├── installer.cpython-38.pyc │ │ │ ├── launch.cpython-38.pyc │ │ │ ├── lib2to3_ex.cpython-38.pyc │ │ │ ├── monkey.cpython-38.pyc │ │ │ ├── msvc.cpython-38.pyc │ │ │ ├── namespaces.cpython-38.pyc │ │ │ ├── package_index.cpython-38.pyc │ │ │ ├── py27compat.cpython-38.pyc │ │ │ ├── py31compat.cpython-38.pyc │ │ │ ├── py33compat.cpython-38.pyc │ │ │ ├── py34compat.cpython-38.pyc │ │ │ ├── sandbox.cpython-38.pyc │ │ │ ├── ssl_support.cpython-38.pyc │ │ │ ├── unicode_utils.cpython-38.pyc │ │ │ ├── version.cpython-38.pyc │ │ │ ├── wheel.cpython-38.pyc │ │ │ └── windows_support.cpython-38.pyc │ │ │ ├── _deprecation_warning.py │ │ │ ├── _distutils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _msvccompiler.cpython-38.pyc │ │ │ │ ├── archive_util.cpython-38.pyc │ │ │ │ ├── bcppcompiler.cpython-38.pyc │ │ │ │ ├── ccompiler.cpython-38.pyc │ │ │ │ ├── cmd.cpython-38.pyc │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ ├── cygwinccompiler.cpython-38.pyc │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ ├── dep_util.cpython-38.pyc │ │ │ │ ├── dir_util.cpython-38.pyc │ │ │ │ ├── dist.cpython-38.pyc │ │ │ │ ├── errors.cpython-38.pyc │ │ │ │ ├── extension.cpython-38.pyc │ │ │ │ ├── fancy_getopt.cpython-38.pyc │ │ │ │ ├── file_util.cpython-38.pyc │ │ │ │ ├── filelist.cpython-38.pyc │ │ │ │ ├── log.cpython-38.pyc │ │ │ │ ├── msvc9compiler.cpython-38.pyc │ │ │ │ ├── msvccompiler.cpython-38.pyc │ │ │ │ ├── spawn.cpython-38.pyc │ │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ │ ├── text_file.cpython-38.pyc │ │ │ │ ├── unixccompiler.cpython-38.pyc │ │ │ │ ├── util.cpython-38.pyc │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ └── versionpredicate.cpython-38.pyc │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── bcppcompiler.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bdist.cpython-38.pyc │ │ │ │ │ ├── bdist_dumb.cpython-38.pyc │ │ │ │ │ ├── bdist_msi.cpython-38.pyc │ │ │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ │ ├── build_clib.cpython-38.pyc │ │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ │ ├── build_py.cpython-38.pyc │ │ │ │ │ ├── build_scripts.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── clean.cpython-38.pyc │ │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ │ ├── install_data.cpython-38.pyc │ │ │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ │ │ ├── install_headers.cpython-38.pyc │ │ │ │ │ ├── install_lib.cpython-38.pyc │ │ │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ │ │ ├── register.cpython-38.pyc │ │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ │ └── upload.cpython-38.pyc │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_msi.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── check.py │ │ │ │ ├── clean.py │ │ │ │ ├── config.py │ │ │ │ ├── install.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_headers.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── register.py │ │ │ │ ├── sdist.py │ │ │ │ └── upload.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── cygwinccompiler.py │ │ │ ├── debug.py │ │ │ ├── dep_util.py │ │ │ ├── dir_util.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── fancy_getopt.py │ │ │ ├── file_util.py │ │ │ ├── filelist.py │ │ │ ├── log.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── spawn.py │ │ │ ├── sysconfig.py │ │ │ ├── text_file.py │ │ │ ├── unixccompiler.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ └── versionpredicate.py │ │ │ ├── _imp.py │ │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── ordered_set.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ ├── ordered_set.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ │ ├── archive_util.py │ │ │ ├── build_meta.py │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── cli.exe │ │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── alias.cpython-38.pyc │ │ │ │ ├── bdist_egg.cpython-38.pyc │ │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ │ ├── build_clib.cpython-38.pyc │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ ├── build_py.cpython-38.pyc │ │ │ │ ├── develop.cpython-38.pyc │ │ │ │ ├── dist_info.cpython-38.pyc │ │ │ │ ├── easy_install.cpython-38.pyc │ │ │ │ ├── egg_info.cpython-38.pyc │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ │ ├── install_lib.cpython-38.pyc │ │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ │ ├── py36compat.cpython-38.pyc │ │ │ │ ├── register.cpython-38.pyc │ │ │ │ ├── rotate.cpython-38.pyc │ │ │ │ ├── saveopts.cpython-38.pyc │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ ├── setopt.cpython-38.pyc │ │ │ │ ├── test.cpython-38.pyc │ │ │ │ ├── upload.cpython-38.pyc │ │ │ │ └── upload_docs.cpython-38.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 │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── glob.py │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui.exe │ │ │ ├── installer.py │ │ │ ├── launch.py │ │ │ ├── lib2to3_ex.py │ │ │ ├── monkey.py │ │ │ ├── msvc.py │ │ │ ├── namespaces.py │ │ │ ├── package_index.py │ │ │ ├── py27compat.py │ │ │ ├── py31compat.py │ │ │ ├── py33compat.py │ │ │ ├── py34compat.py │ │ │ ├── sandbox.py │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── ssl_support.py │ │ │ ├── unicode_utils.py │ │ │ ├── version.py │ │ │ ├── wheel.py │ │ │ └── windows_support.py │ │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── activate │ │ ├── activate.bat │ │ ├── deactivate.bat │ │ ├── easy_install-3.8.exe │ │ ├── easy_install.exe │ │ ├── pip.exe │ │ ├── pip3.8.exe │ │ ├── pip3.exe │ │ ├── python.exe │ │ └── pythonw.exe │ │ └── pyvenv.cfg ├── RecommenderSystem │ ├── .idea │ │ ├── .gitignore │ │ ├── RecommenderSystem.iml │ │ ├── encodings.xml │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── Collaborativefiltering │ │ ├── CostGrad.py │ │ ├── Normalize.py │ │ ├── __pycache__ │ │ │ ├── CostGrad.cpython-38.pyc │ │ │ ├── Normalize.cpython-38.pyc │ │ │ └── getMovieList.cpython-38.pyc │ │ ├── getMovieList.py │ │ └── main.py │ ├── Data │ │ ├── ex8_movieParams.mat │ │ ├── ex8_movies.mat │ │ └── movie_ids.txt │ └── DebuggingTool │ │ ├── TestFunction.py │ │ ├── TestNumericalGradient.py │ │ └── __pycache__ │ │ ├── TestFunction.cpython-38.pyc │ │ └── TestNumericalGradient.cpython-38.pyc ├── SVM │ ├── .idea │ │ ├── SVM.iml │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── Data │ │ ├── ex6data1.mat │ │ ├── ex6data2.mat │ │ └── ex6data3.mat │ ├── SupportVectorMachine │ │ ├── Experimenting_C_sigma.py │ │ ├── GBO.py │ │ ├── GaussianKernel.py │ │ ├── OriginalSMO.py │ │ ├── Prediction.py │ │ ├── SVM_Linear.py │ │ ├── SVM_NonLinear.py │ │ ├── SimplifiedSMO.py │ │ ├── Visualizeboundary.py │ │ └── __pycache__ │ │ │ ├── GBO.cpython-38.pyc │ │ │ ├── GaussianKernel.cpython-38.pyc │ │ │ ├── OriginalSMO.cpython-38.pyc │ │ │ ├── Prediction.cpython-38.pyc │ │ │ └── Visualizeboundary.cpython-38.pyc │ └── venv │ │ ├── Lib │ │ └── site-packages │ │ │ ├── __pycache__ │ │ │ └── easy_install.cpython-38.pyc │ │ │ ├── _distutils_hack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── override.cpython-38.pyc │ │ │ └── override.py │ │ │ ├── distutils-precedence.pth │ │ │ ├── easy_install.py │ │ │ ├── pip-20.2.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── __main__.cpython-38.pyc │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── build_env.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── locations.cpython-38.pyc │ │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ │ ├── pyproject.cpython-38.pyc │ │ │ │ │ ├── self_outdated_check.cpython-38.pyc │ │ │ │ │ └── wheel_builder.cpython-38.pyc │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── autocompletion.cpython-38.pyc │ │ │ │ │ │ ├── base_command.cpython-38.pyc │ │ │ │ │ │ ├── cmdoptions.cpython-38.pyc │ │ │ │ │ │ ├── command_context.cpython-38.pyc │ │ │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ │ │ ├── main_parser.cpython-38.pyc │ │ │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ │ │ ├── progress_bars.cpython-38.pyc │ │ │ │ │ │ ├── req_command.cpython-38.pyc │ │ │ │ │ │ ├── spinners.cpython-38.pyc │ │ │ │ │ │ └── status_codes.cpython-38.pyc │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── command_context.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── progress_bars.py │ │ │ │ │ ├── req_command.py │ │ │ │ │ ├── spinners.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ │ ├── completion.cpython-38.pyc │ │ │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ │ ├── hash.cpython-38.pyc │ │ │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ │ │ ├── list.cpython-38.pyc │ │ │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ │ │ ├── show.cpython-38.pyc │ │ │ │ │ │ ├── uninstall.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── configuration.py │ │ │ │ ├── distributions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── installed.cpython-38.pyc │ │ │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── installed.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── collector.cpython-38.pyc │ │ │ │ │ │ └── package_finder.cpython-38.pyc │ │ │ │ │ ├── collector.py │ │ │ │ │ └── package_finder.py │ │ │ │ ├── locations.py │ │ │ │ ├── main.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── candidate.cpython-38.pyc │ │ │ │ │ │ ├── direct_url.cpython-38.pyc │ │ │ │ │ │ ├── format_control.cpython-38.pyc │ │ │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ │ │ ├── link.cpython-38.pyc │ │ │ │ │ │ ├── scheme.cpython-38.pyc │ │ │ │ │ │ ├── search_scope.cpython-38.pyc │ │ │ │ │ │ ├── selection_prefs.cpython-38.pyc │ │ │ │ │ │ ├── target_python.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── direct_url.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── link.py │ │ │ │ │ ├── scheme.py │ │ │ │ │ ├── search_scope.py │ │ │ │ │ ├── selection_prefs.py │ │ │ │ │ ├── target_python.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── network │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ │ ├── lazy_wheel.cpython-38.pyc │ │ │ │ │ │ ├── session.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── xmlrpc.cpython-38.pyc │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── lazy_wheel.py │ │ │ │ │ ├── session.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── xmlrpc.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ │ └── prepare.cpython-38.pyc │ │ │ │ │ ├── build │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc │ │ │ │ │ │ │ ├── wheel.cpython-38.pyc │ │ │ │ │ │ │ └── wheel_legacy.cpython-38.pyc │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ │ ├── wheel.py │ │ │ │ │ │ └── wheel_legacy.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── install │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── editable_legacy.cpython-38.pyc │ │ │ │ │ │ │ ├── legacy.cpython-38.pyc │ │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ │ ├── legacy.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── constructors.cpython-38.pyc │ │ │ │ │ │ ├── req_file.cpython-38.pyc │ │ │ │ │ │ ├── req_install.cpython-38.pyc │ │ │ │ │ │ ├── req_set.cpython-38.pyc │ │ │ │ │ │ ├── req_tracker.cpython-38.pyc │ │ │ │ │ │ └── req_uninstall.cpython-38.pyc │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolution │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── base.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── legacy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ │ │ └── resolver.py │ │ │ │ │ └── resolvelib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── candidates.cpython-38.pyc │ │ │ │ │ │ ├── factory.cpython-38.pyc │ │ │ │ │ │ ├── provider.cpython-38.pyc │ │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── candidates.py │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ ├── provider.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ └── resolver.py │ │ │ │ ├── self_outdated_check.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ │ ├── compatibility_tags.cpython-38.pyc │ │ │ │ │ │ ├── datetime.cpython-38.pyc │ │ │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ │ │ ├── direct_url_helpers.cpython-38.pyc │ │ │ │ │ │ ├── distutils_args.cpython-38.pyc │ │ │ │ │ │ ├── encoding.cpython-38.pyc │ │ │ │ │ │ ├── entrypoints.cpython-38.pyc │ │ │ │ │ │ ├── filesystem.cpython-38.pyc │ │ │ │ │ │ ├── filetypes.cpython-38.pyc │ │ │ │ │ │ ├── glibc.cpython-38.pyc │ │ │ │ │ │ ├── hashes.cpython-38.pyc │ │ │ │ │ │ ├── inject_securetransport.cpython-38.pyc │ │ │ │ │ │ ├── logging.cpython-38.pyc │ │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ │ ├── packaging.cpython-38.pyc │ │ │ │ │ │ ├── parallel.cpython-38.pyc │ │ │ │ │ │ ├── pkg_resources.cpython-38.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-38.pyc │ │ │ │ │ │ ├── subprocess.cpython-38.pyc │ │ │ │ │ │ ├── temp_dir.cpython-38.pyc │ │ │ │ │ │ ├── typing.cpython-38.pyc │ │ │ │ │ │ ├── unpacking.cpython-38.pyc │ │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ │ ├── virtualenv.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compatibility_tags.py │ │ │ │ │ ├── datetime.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── direct_url_helpers.py │ │ │ │ │ ├── distutils_args.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── entrypoints.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── filetypes.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── inject_securetransport.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── parallel.py │ │ │ │ │ ├── pkg_resources.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ ├── subprocess.py │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ ├── typing.py │ │ │ │ │ ├── unpacking.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── bazaar.cpython-38.pyc │ │ │ │ │ │ ├── git.cpython-38.pyc │ │ │ │ │ │ ├── mercurial.cpython-38.pyc │ │ │ │ │ │ ├── subversion.cpython-38.pyc │ │ │ │ │ │ └── versioncontrol.cpython-38.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ ├── subversion.py │ │ │ │ │ └── versioncontrol.py │ │ │ │ └── wheel_builder.py │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ ├── contextlib2.cpython-38.pyc │ │ │ │ ├── distro.cpython-38.pyc │ │ │ │ ├── ipaddress.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ ├── retrying.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _cmd.cpython-38.pyc │ │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── controller.cpython-38.pyc │ │ │ │ │ ├── filewrapper.cpython-38.pyc │ │ │ │ │ ├── heuristics.cpython-38.pyc │ │ │ │ │ ├── serialize.cpython-38.pyc │ │ │ │ │ └── wrapper.cpython-38.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── file_cache.cpython-38.pyc │ │ │ │ │ │ └── redis_cache.cpython-38.pyc │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ │ └── core.cpython-38.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── big5freq.cpython-38.pyc │ │ │ │ │ ├── big5prober.cpython-38.pyc │ │ │ │ │ ├── chardistribution.cpython-38.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-38.pyc │ │ │ │ │ ├── charsetprober.cpython-38.pyc │ │ │ │ │ ├── codingstatemachine.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── cp949prober.cpython-38.pyc │ │ │ │ │ ├── enums.cpython-38.pyc │ │ │ │ │ ├── escprober.cpython-38.pyc │ │ │ │ │ ├── escsm.cpython-38.pyc │ │ │ │ │ ├── eucjpprober.cpython-38.pyc │ │ │ │ │ ├── euckrfreq.cpython-38.pyc │ │ │ │ │ ├── euckrprober.cpython-38.pyc │ │ │ │ │ ├── euctwfreq.cpython-38.pyc │ │ │ │ │ ├── euctwprober.cpython-38.pyc │ │ │ │ │ ├── gb2312freq.cpython-38.pyc │ │ │ │ │ ├── gb2312prober.cpython-38.pyc │ │ │ │ │ ├── hebrewprober.cpython-38.pyc │ │ │ │ │ ├── jisfreq.cpython-38.pyc │ │ │ │ │ ├── jpcntx.cpython-38.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ │ │ │ ├── langcyrillicmodel.cpython-38.pyc │ │ │ │ │ ├── langgreekmodel.cpython-38.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-38.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-38.pyc │ │ │ │ │ ├── langthaimodel.cpython-38.pyc │ │ │ │ │ ├── langturkishmodel.cpython-38.pyc │ │ │ │ │ ├── latin1prober.cpython-38.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-38.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ │ │ │ ├── mbcssm.cpython-38.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-38.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ │ │ │ ├── sjisprober.cpython-38.pyc │ │ │ │ │ ├── universaldetector.cpython-38.pyc │ │ │ │ │ ├── utf8prober.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── chardetect.cpython-38.pyc │ │ │ │ │ └── chardetect.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── enums.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 │ │ │ │ ├── langturkishmodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ ├── utf8prober.py │ │ │ │ └── version.py │ │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── ansi.cpython-38.pyc │ │ │ │ │ ├── ansitowin32.cpython-38.pyc │ │ │ │ │ ├── initialise.cpython-38.pyc │ │ │ │ │ ├── win32.cpython-38.pyc │ │ │ │ │ └── winterm.cpython-38.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── contextlib2.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── database.cpython-38.pyc │ │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ │ ├── locators.cpython-38.pyc │ │ │ │ │ ├── manifest.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ ├── resources.cpython-38.pyc │ │ │ │ │ ├── scripts.cpython-38.pyc │ │ │ │ │ ├── util.cpython-38.pyc │ │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ │ ├── shutil.cpython-38.pyc │ │ │ │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ │ │ │ └── tarfile.cpython-38.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-38.pyc │ │ │ │ │ ├── _ihatexml.cpython-38.pyc │ │ │ │ │ ├── _inputstream.cpython-38.pyc │ │ │ │ │ ├── _tokenizer.cpython-38.pyc │ │ │ │ │ ├── _utils.cpython-38.pyc │ │ │ │ │ ├── constants.cpython-38.pyc │ │ │ │ │ ├── html5parser.cpython-38.pyc │ │ │ │ │ └── serializer.cpython-38.pyc │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _base.cpython-38.pyc │ │ │ │ │ │ └── py.cpython-38.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-38.pyc │ │ │ │ │ │ ├── lint.cpython-38.pyc │ │ │ │ │ │ ├── optionaltags.cpython-38.pyc │ │ │ │ │ │ ├── sanitizer.cpython-38.pyc │ │ │ │ │ │ └── whitespace.cpython-38.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-38.pyc │ │ │ │ │ │ ├── genshi.cpython-38.pyc │ │ │ │ │ │ └── sax.cpython-38.pyc │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ │ │ └── etree_lxml.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ │ ├── etree_lxml.cpython-38.pyc │ │ │ │ │ └── genshi.cpython-38.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── codec.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ │ ├── idnadata.cpython-38.pyc │ │ │ │ │ ├── intranges.cpython-38.pyc │ │ │ │ │ ├── package_data.cpython-38.pyc │ │ │ │ │ └── uts46data.cpython-38.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _version.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── ext.cpython-38.pyc │ │ │ │ │ └── fallback.cpython-38.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _typing.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _in_process.cpython-38.pyc │ │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── colorlog.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── dirtools.cpython-38.pyc │ │ │ │ │ ├── envbuild.cpython-38.pyc │ │ │ │ │ ├── meta.cpython-38.pyc │ │ │ │ │ └── wrappers.cpython-38.pyc │ │ │ │ ├── _in_process.py │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── dirtools.py │ │ │ │ ├── envbuild.py │ │ │ │ ├── meta.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── py31compat.cpython-38.pyc │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bar.cpython-38.pyc │ │ │ │ │ ├── counter.cpython-38.pyc │ │ │ │ │ └── spinner.cpython-38.pyc │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── __version__.cpython-38.pyc │ │ │ │ │ ├── _internal_utils.cpython-38.pyc │ │ │ │ │ ├── adapters.cpython-38.pyc │ │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ │ ├── certs.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── cookies.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ │ ├── hooks.cpython-38.pyc │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ ├── packages.cpython-38.pyc │ │ │ │ │ ├── sessions.cpython-38.pyc │ │ │ │ │ ├── status_codes.cpython-38.pyc │ │ │ │ │ ├── structures.cpython-38.pyc │ │ │ │ │ └── utils.cpython-38.pyc │ │ │ │ ├── __version__.py │ │ │ │ ├── _internal_utils.py │ │ │ │ ├── adapters.py │ │ │ │ ├── api.py │ │ │ │ ├── auth.py │ │ │ │ ├── certs.py │ │ │ │ ├── compat.py │ │ │ │ ├── cookies.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── help.py │ │ │ │ ├── hooks.py │ │ │ │ ├── models.py │ │ │ │ ├── packages.py │ │ │ │ ├── sessions.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── structures.py │ │ │ │ └── utils.py │ │ │ │ ├── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── providers.cpython-38.pyc │ │ │ │ │ ├── reporters.cpython-38.pyc │ │ │ │ │ ├── resolvers.cpython-38.pyc │ │ │ │ │ └── structs.cpython-38.pyc │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── collections_abc.cpython-38.pyc │ │ │ │ │ └── collections_abc.py │ │ │ │ ├── providers.py │ │ │ │ ├── reporters.py │ │ │ │ ├── resolvers.py │ │ │ │ └── structs.py │ │ │ │ ├── retrying.py │ │ │ │ ├── six.py │ │ │ │ ├── toml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── common.cpython-38.pyc │ │ │ │ │ ├── decoder.cpython-38.pyc │ │ │ │ │ ├── encoder.cpython-38.pyc │ │ │ │ │ ├── ordered.cpython-38.pyc │ │ │ │ │ └── tz.cpython-38.pyc │ │ │ │ ├── common.py │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── ordered.py │ │ │ │ └── tz.py │ │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _collections.cpython-38.pyc │ │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ │ ├── connectionpool.cpython-38.pyc │ │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ │ ├── filepost.cpython-38.pyc │ │ │ │ │ ├── poolmanager.cpython-38.pyc │ │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ │ └── response.cpython-38.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _appengine_environ.cpython-38.pyc │ │ │ │ │ │ ├── appengine.cpython-38.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-38.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-38.pyc │ │ │ │ │ │ ├── securetransport.cpython-38.pyc │ │ │ │ │ │ └── socks.cpython-38.pyc │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ ├── bindings.cpython-38.pyc │ │ │ │ │ │ │ └── low_level.cpython-38.pyc │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── six.cpython-38.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ │ └── makefile.cpython-38.pyc │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── _implementation.cpython-38.pyc │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ │ ├── queue.cpython-38.pyc │ │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ │ ├── response.cpython-38.pyc │ │ │ │ │ ├── retry.cpython-38.pyc │ │ │ │ │ ├── ssl_.cpython-38.pyc │ │ │ │ │ ├── timeout.cpython-38.pyc │ │ │ │ │ ├── url.cpython-38.pyc │ │ │ │ │ └── wait.cpython-38.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ ├── vendor.txt │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── labels.cpython-38.pyc │ │ │ │ ├── mklabels.cpython-38.pyc │ │ │ │ ├── tests.cpython-38.pyc │ │ │ │ └── x_user_defined.cpython-38.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ │ └── six.cpython-38.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── _typing.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pyparsing.py │ │ │ │ └── six.py │ │ │ └── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── setuptools-49.6.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ │ └── setuptools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _deprecation_warning.cpython-38.pyc │ │ │ ├── _imp.cpython-38.pyc │ │ │ ├── archive_util.cpython-38.pyc │ │ │ ├── build_meta.cpython-38.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── dep_util.cpython-38.pyc │ │ │ ├── depends.cpython-38.pyc │ │ │ ├── dist.cpython-38.pyc │ │ │ ├── errors.cpython-38.pyc │ │ │ ├── extension.cpython-38.pyc │ │ │ ├── glob.cpython-38.pyc │ │ │ ├── installer.cpython-38.pyc │ │ │ ├── launch.cpython-38.pyc │ │ │ ├── lib2to3_ex.cpython-38.pyc │ │ │ ├── monkey.cpython-38.pyc │ │ │ ├── msvc.cpython-38.pyc │ │ │ ├── namespaces.cpython-38.pyc │ │ │ ├── package_index.cpython-38.pyc │ │ │ ├── py27compat.cpython-38.pyc │ │ │ ├── py31compat.cpython-38.pyc │ │ │ ├── py33compat.cpython-38.pyc │ │ │ ├── py34compat.cpython-38.pyc │ │ │ ├── sandbox.cpython-38.pyc │ │ │ ├── ssl_support.cpython-38.pyc │ │ │ ├── unicode_utils.cpython-38.pyc │ │ │ ├── version.cpython-38.pyc │ │ │ ├── wheel.cpython-38.pyc │ │ │ └── windows_support.cpython-38.pyc │ │ │ ├── _deprecation_warning.py │ │ │ ├── _distutils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _msvccompiler.cpython-38.pyc │ │ │ │ ├── archive_util.cpython-38.pyc │ │ │ │ ├── bcppcompiler.cpython-38.pyc │ │ │ │ ├── ccompiler.cpython-38.pyc │ │ │ │ ├── cmd.cpython-38.pyc │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ ├── cygwinccompiler.cpython-38.pyc │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ ├── dep_util.cpython-38.pyc │ │ │ │ ├── dir_util.cpython-38.pyc │ │ │ │ ├── dist.cpython-38.pyc │ │ │ │ ├── errors.cpython-38.pyc │ │ │ │ ├── extension.cpython-38.pyc │ │ │ │ ├── fancy_getopt.cpython-38.pyc │ │ │ │ ├── file_util.cpython-38.pyc │ │ │ │ ├── filelist.cpython-38.pyc │ │ │ │ ├── log.cpython-38.pyc │ │ │ │ ├── msvc9compiler.cpython-38.pyc │ │ │ │ ├── msvccompiler.cpython-38.pyc │ │ │ │ ├── spawn.cpython-38.pyc │ │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ │ ├── text_file.cpython-38.pyc │ │ │ │ ├── unixccompiler.cpython-38.pyc │ │ │ │ ├── util.cpython-38.pyc │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ └── versionpredicate.cpython-38.pyc │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── bcppcompiler.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bdist.cpython-38.pyc │ │ │ │ │ ├── bdist_dumb.cpython-38.pyc │ │ │ │ │ ├── bdist_msi.cpython-38.pyc │ │ │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ │ ├── build_clib.cpython-38.pyc │ │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ │ ├── build_py.cpython-38.pyc │ │ │ │ │ ├── build_scripts.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── clean.cpython-38.pyc │ │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ │ ├── install_data.cpython-38.pyc │ │ │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ │ │ ├── install_headers.cpython-38.pyc │ │ │ │ │ ├── install_lib.cpython-38.pyc │ │ │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ │ │ ├── register.cpython-38.pyc │ │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ │ └── upload.cpython-38.pyc │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_msi.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── check.py │ │ │ │ ├── clean.py │ │ │ │ ├── config.py │ │ │ │ ├── install.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_headers.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── register.py │ │ │ │ ├── sdist.py │ │ │ │ └── upload.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── cygwinccompiler.py │ │ │ ├── debug.py │ │ │ ├── dep_util.py │ │ │ ├── dir_util.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── fancy_getopt.py │ │ │ ├── file_util.py │ │ │ ├── filelist.py │ │ │ ├── log.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── spawn.py │ │ │ ├── sysconfig.py │ │ │ ├── text_file.py │ │ │ ├── unixccompiler.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ └── versionpredicate.py │ │ │ ├── _imp.py │ │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── ordered_set.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ ├── ordered_set.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _typing.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ │ ├── archive_util.py │ │ │ ├── build_meta.py │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── cli.exe │ │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── alias.cpython-38.pyc │ │ │ │ ├── bdist_egg.cpython-38.pyc │ │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ │ ├── build_clib.cpython-38.pyc │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ ├── build_py.cpython-38.pyc │ │ │ │ ├── develop.cpython-38.pyc │ │ │ │ ├── dist_info.cpython-38.pyc │ │ │ │ ├── easy_install.cpython-38.pyc │ │ │ │ ├── egg_info.cpython-38.pyc │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ │ ├── install_lib.cpython-38.pyc │ │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ │ ├── py36compat.cpython-38.pyc │ │ │ │ ├── register.cpython-38.pyc │ │ │ │ ├── rotate.cpython-38.pyc │ │ │ │ ├── saveopts.cpython-38.pyc │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ ├── setopt.cpython-38.pyc │ │ │ │ ├── test.cpython-38.pyc │ │ │ │ ├── upload.cpython-38.pyc │ │ │ │ └── upload_docs.cpython-38.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 │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── glob.py │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui.exe │ │ │ ├── installer.py │ │ │ ├── launch.py │ │ │ ├── lib2to3_ex.py │ │ │ ├── monkey.py │ │ │ ├── msvc.py │ │ │ ├── namespaces.py │ │ │ ├── package_index.py │ │ │ ├── py27compat.py │ │ │ ├── py31compat.py │ │ │ ├── py33compat.py │ │ │ ├── py34compat.py │ │ │ ├── sandbox.py │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── ssl_support.py │ │ │ ├── unicode_utils.py │ │ │ ├── version.py │ │ │ ├── wheel.py │ │ │ └── windows_support.py │ │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── activate │ │ ├── activate.bat │ │ ├── deactivate.bat │ │ ├── easy_install-3.8.exe │ │ ├── easy_install.exe │ │ ├── pip.exe │ │ ├── pip3.8.exe │ │ ├── pip3.exe │ │ ├── python.exe │ │ └── pythonw.exe │ │ └── pyvenv.cfg ├── SpamClassifier │ ├── .idea │ │ ├── SpamClassifier.iml │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── ClassificationUsingSVM │ │ ├── EmailProcessing.py │ │ ├── GaussianKernel.py │ │ ├── Prediction.py │ │ ├── SMO.py │ │ ├── VocabArray.py │ │ ├── __pycache__ │ │ │ ├── EmailProcessing.cpython-38.pyc │ │ │ ├── GaussianKernel.cpython-38.pyc │ │ │ ├── Prediction.cpython-38.pyc │ │ │ ├── SMO.cpython-38.pyc │ │ │ └── VocabArray.cpython-38.pyc │ │ └── main.py │ └── Data │ │ ├── emailSample1.txt │ │ ├── spamSample1.txt │ │ ├── spamSample2.txt │ │ ├── spamTest.mat │ │ ├── spamTrain.mat │ │ └── vocab.txt ├── SpamClassifierUsingDNN │ ├── .idea │ │ ├── .gitignore │ │ ├── SpamClassifierUsingDNN.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── Data │ │ ├── emailSample1.txt │ │ ├── spamSample1.txt │ │ ├── spamSample2.txt │ │ ├── spamTest.mat │ │ ├── spamTrain.mat │ │ └── vocab.txt │ ├── DebuggingTools │ │ ├── DebugOptimizationFun.py │ │ ├── TestNumericalGradient.py │ │ └── WeightsDebug.py │ ├── DeepNetsOptimization │ │ ├── ActivationDeriavtive.py │ │ ├── BackPropagation.py │ │ ├── ForwardPropagation.py │ │ ├── HypothesisFunc.py │ │ ├── LossFunction.py │ │ ├── NNLearn.py │ │ ├── Prediction.py │ │ ├── Reshape.py │ │ └── WeightInit.py │ ├── MathsTools │ │ ├── FeatureNormalization.py │ │ └── StandardDeviation.py │ ├── ProjectMain │ │ ├── EmailProcessing.py │ │ ├── VocabArray.py │ │ └── main.py │ ├── README.Md │ └── venv │ │ ├── bin │ │ ├── Activate.ps1 │ │ ├── activate │ │ ├── activate.csh │ │ ├── activate.fish │ │ ├── python │ │ ├── python3 │ │ └── python3.8 │ │ └── pyvenv.cfg ├── Tips&Tricks │ ├── .idea │ │ ├── .gitignore │ │ ├── Tips&Tricks.iml │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── Data │ │ └── ex5data1.mat │ ├── MLTricks │ │ ├── PlotFit.py │ │ ├── Poly_mapping.py │ │ ├── Regularised_Linear_Cost_Grad.py │ │ ├── __pycache__ │ │ │ ├── PlotFit.cpython-38.pyc │ │ │ ├── Poly_mapping.cpython-38.pyc │ │ │ ├── Regularised_Linear_Cost_Grad.cpython-38.pyc │ │ │ └── learning_curve.cpython-38.pyc │ │ ├── learning_curve.py │ │ └── main.py │ └── MathsTools │ │ ├── FeatureNormalization.py │ │ ├── StandardDeviation.py │ │ └── __pycache__ │ │ ├── FeatureNormalization.cpython-38.pyc │ │ └── StandardDeviation.cpython-38.pyc └── Unsupervised-ML │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── Unsupervised ML.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml │ ├── Application │ ├── Application_main.py │ └── bird_small.mat │ ├── Data │ ├── bird_small.mat │ ├── ex7data1.mat │ ├── ex7data2.mat │ └── ex7faces.mat │ ├── K_mean │ ├── InitCentroids.py │ ├── __pycache__ │ │ ├── InitCentroids.cpython-38.pyc │ │ ├── executeK_means.cpython-38.pyc │ │ └── plotdata.cpython-38.pyc │ ├── executeK_means.py │ ├── mainK_mean.py │ └── plotdata.py │ ├── MathsTools │ ├── FeatureNormalization.py │ ├── StandardDeviation.py │ └── __pycache__ │ │ ├── FeatureNormalization.cpython-38.pyc │ │ └── StandardDeviation.cpython-38.pyc │ └── PCA │ ├── Decode.py │ ├── FindComponents.py │ ├── Projection.py │ ├── __pycache__ │ ├── Decode.cpython-38.pyc │ ├── FindComponents.cpython-38.pyc │ └── Projection.cpython-38.pyc │ └── main_PCA.py └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/ML Code.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/.idea/ML Code.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/.vs/EigenBasics/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/.vs/EigenBasics/v16/.suo -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/.vs/EigenBasics/v16/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/.vs/EigenBasics/v16/Browse.VC.db -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/Debug/EigenBasics.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/Debug/EigenBasics.exe -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/Debug/EigenBasics.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/Debug/EigenBasics.ilk -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/Debug/EigenBasics.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/Debug/EigenBasics.pdb -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/EigenBasics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/EigenBasics.sln -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/EigenBasics/Code/Basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/EigenBasics/Code/Basics.cpp -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/EigenBasics/Debug/Basics.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/EigenBasics/Debug/Basics.obj -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/EigenBasics/Debug/EigenBasics.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/EigenBasics/Debug/EigenBasics.log -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/EigenBasics/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/EigenBasics/Debug/vc142.idb -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/EigenBasics/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/EigenBasics/Debug/vc142.pdb -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/EigenBasics/EigenBasics.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/EigenBasics/EigenBasics.vcxproj -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/EigenBasics/EigenBasics.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/EigenBasics/EigenBasics.vcxproj.user -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/EigenBasics/x64/Debug/EigenBasics.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/C++/EigenTutorial1/EigenBasics/EigenBasics/x64/Debug/EigenBasics.log -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/EigenBasics/x64/Debug/EigenBasics.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C++/EigenTutorial1/EigenBasics/EigenBasics/x64/Debug/EigenBasics.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JAVA/KMeans/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.classpath -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/.name: -------------------------------------------------------------------------------- 1 | MLKMean -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/compiler.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__commons_io_commons_io_2_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__commons_io_commons_io_2_5.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__commons_net_commons_net_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__commons_net_commons_net_3_1.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__junit_junit_4_12.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__net_ericaro_neoitertools_1_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__net_ericaro_neoitertools_1_0_0.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__net_java_dev_jna_jna_4_3_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__net_java_dev_jna_jna_4_3_0.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__org_bytedeco_javacpp_1_5_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__org_bytedeco_javacpp_1_5_3.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__org_jfree_jfreechart_1_5_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__org_jfree_jfreechart_1_5_0.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__org_nd4j_guava_1_0_0_beta7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__org_nd4j_guava_1_0_0_beta7.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__org_nd4j_jackson_1_0_0_beta7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__org_nd4j_jackson_1_0_0_beta7.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__org_nd4j_nd4j_api_1_0_0_beta7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__org_nd4j_nd4j_api_1_0_0_beta7.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__org_nd4j_protobuf_1_0_0_beta7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__org_nd4j_protobuf_1_0_0_beta7.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_20.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/libraries/Maven__org_threeten_threetenbp_1_3_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/libraries/Maven__org_threeten_threetenbp_1_3_3.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/misc.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/modules.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/vcs.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.idea/workspace.xml -------------------------------------------------------------------------------- /JAVA/KMeans/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.project -------------------------------------------------------------------------------- /JAVA/KMeans/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /JAVA/KMeans/Data/bird_small.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/Data/bird_small.mat -------------------------------------------------------------------------------- /JAVA/KMeans/Data/ex7data1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/Data/ex7data1.csv -------------------------------------------------------------------------------- /JAVA/KMeans/Data/ex7data2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/Data/ex7data2.csv -------------------------------------------------------------------------------- /JAVA/KMeans/Data/ex7faces.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/Data/ex7faces.csv -------------------------------------------------------------------------------- /JAVA/KMeans/Data/rubiks_cube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/Data/rubiks_cube.jpg -------------------------------------------------------------------------------- /JAVA/KMeans/MLKMean.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/MLKMean.iml -------------------------------------------------------------------------------- /JAVA/KMeans/Test Results - KMeansTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/Test Results - KMeansTests.html -------------------------------------------------------------------------------- /JAVA/KMeans/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/pom.xml -------------------------------------------------------------------------------- /JAVA/KMeans/src/main/java/com/JML/KMean/algo/Centroids.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/src/main/java/com/JML/KMean/algo/Centroids.java -------------------------------------------------------------------------------- /JAVA/KMeans/src/main/java/com/JML/KMean/algo/KMeans.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/src/main/java/com/JML/KMean/algo/KMeans.java -------------------------------------------------------------------------------- /JAVA/KMeans/src/main/java/com/JML/KMean/algo/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/src/main/java/com/JML/KMean/algo/Main.java -------------------------------------------------------------------------------- /JAVA/KMeans/src/test/java/KMeansTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/src/test/java/KMeansTests.java -------------------------------------------------------------------------------- /JAVA/KMeans/target/classes/com/JML/KMean/algo/Centroids.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/target/classes/com/JML/KMean/algo/Centroids.class -------------------------------------------------------------------------------- /JAVA/KMeans/target/classes/com/JML/KMean/algo/KMeans.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/target/classes/com/JML/KMean/algo/KMeans.class -------------------------------------------------------------------------------- /JAVA/KMeans/target/classes/com/JML/KMean/algo/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/target/classes/com/JML/KMean/algo/Main.class -------------------------------------------------------------------------------- /JAVA/KMeans/target/test-classes/KMeansTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/KMeans/target/test-classes/KMeansTests.class -------------------------------------------------------------------------------- /JAVA/README.Md: -------------------------------------------------------------------------------- 1 | This Directory is Under Construction Not ready to use... 2 | -------------------------------------------------------------------------------- /JAVA/Regression/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/compiler.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/libraries/Maven__commons_io_commons_io_2_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/libraries/Maven__commons_io_commons_io_2_5.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/libraries/Maven__junit_junit_4_13_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/libraries/Maven__junit_junit_4_13_1.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/libraries/Maven__net_java_dev_jna_jna_4_3_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/libraries/Maven__net_java_dev_jna_jna_4_3_0.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/libraries/Maven__org_bytedeco_javacpp_1_5_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/libraries/Maven__org_bytedeco_javacpp_1_5_3.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/libraries/Maven__org_jfree_jfreechart_1_5_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/libraries/Maven__org_jfree_jfreechart_1_5_0.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/libraries/Maven__org_nd4j_guava_1_0_0_beta7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/libraries/Maven__org_nd4j_guava_1_0_0_beta7.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_20.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/misc.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/modules.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/vcs.xml -------------------------------------------------------------------------------- /JAVA/Regression/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/.idea/workspace.xml -------------------------------------------------------------------------------- /JAVA/Regression/Data/Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/Data/Chart.png -------------------------------------------------------------------------------- /JAVA/Regression/Data/ex1data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/Data/ex1data1.txt -------------------------------------------------------------------------------- /JAVA/Regression/Data/ex1data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/Data/ex1data2.txt -------------------------------------------------------------------------------- /JAVA/Regression/Data/multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/Data/multi.png -------------------------------------------------------------------------------- /JAVA/Regression/Data/scatt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/Data/scatt.png -------------------------------------------------------------------------------- /JAVA/Regression/MLModelsJava.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/MLModelsJava.iml -------------------------------------------------------------------------------- /JAVA/Regression/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/pom.xml -------------------------------------------------------------------------------- /JAVA/Regression/src/Regression/Normalization/Scale.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/src/Regression/Normalization/Scale.java -------------------------------------------------------------------------------- /JAVA/Regression/src/Regression/Optimizers/Optimizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/src/Regression/Optimizers/Optimizer.java -------------------------------------------------------------------------------- /JAVA/Regression/src/Regression/main/multivariable/MultiVariable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/src/Regression/main/multivariable/MultiVariable.java -------------------------------------------------------------------------------- /JAVA/Regression/src/test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/src/test.java -------------------------------------------------------------------------------- /JAVA/Regression/target/classes/Regression/Normalization/Scale.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/target/classes/Regression/Normalization/Scale.class -------------------------------------------------------------------------------- /JAVA/Regression/target/classes/Regression/Optimizers/Optimizer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/target/classes/Regression/Optimizers/Optimizer.class -------------------------------------------------------------------------------- /JAVA/Regression/target/classes/test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/JAVA/Regression/target/classes/test.class -------------------------------------------------------------------------------- /Python/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Python/.idea/Python.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/.idea/Python.iml -------------------------------------------------------------------------------- /Python/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Python/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/.idea/misc.xml -------------------------------------------------------------------------------- /Python/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/.idea/modules.xml -------------------------------------------------------------------------------- /Python/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/.idea/vcs.xml -------------------------------------------------------------------------------- /Python/AnomlyDetection/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Python/AnomlyDetection/.idea/AnomlyDetection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/.idea/AnomlyDetection.iml -------------------------------------------------------------------------------- /Python/AnomlyDetection/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Python/AnomlyDetection/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Python/AnomlyDetection/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/.idea/misc.xml -------------------------------------------------------------------------------- /Python/AnomlyDetection/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/.idea/modules.xml -------------------------------------------------------------------------------- /Python/AnomlyDetection/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/.idea/vcs.xml -------------------------------------------------------------------------------- /Python/AnomlyDetection/AD/AD_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/AD/AD_main.py -------------------------------------------------------------------------------- /Python/AnomlyDetection/AD/ComputThreshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/AD/ComputThreshold.py -------------------------------------------------------------------------------- /Python/AnomlyDetection/AD/GaussianModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/AD/GaussianModel.py -------------------------------------------------------------------------------- /Python/AnomlyDetection/AD/__pycache__/ComputThreshold.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/AD/__pycache__/ComputThreshold.cpython-38.pyc -------------------------------------------------------------------------------- /Python/AnomlyDetection/AD/__pycache__/GaussianModel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/AD/__pycache__/GaussianModel.cpython-38.pyc -------------------------------------------------------------------------------- /Python/AnomlyDetection/AD/__pycache__/stand_dev.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/AD/__pycache__/stand_dev.cpython-38.pyc -------------------------------------------------------------------------------- /Python/AnomlyDetection/AD/stand_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/AD/stand_dev.py -------------------------------------------------------------------------------- /Python/AnomlyDetection/Data/ex8data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/Data/ex8data1.mat -------------------------------------------------------------------------------- /Python/AnomlyDetection/Data/ex8data2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/AnomlyDetection/Data/ex8data2.mat -------------------------------------------------------------------------------- /Python/Classification/.idea/Classification.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/.idea/Classification.iml -------------------------------------------------------------------------------- /Python/Classification/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Python/Classification/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/.idea/misc.xml -------------------------------------------------------------------------------- /Python/Classification/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/.idea/modules.xml -------------------------------------------------------------------------------- /Python/Classification/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/.idea/vcs.xml -------------------------------------------------------------------------------- /Python/Classification/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/.idea/workspace.xml -------------------------------------------------------------------------------- /Python/Classification/Data/ex2data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/Data/ex2data1.txt -------------------------------------------------------------------------------- /Python/Classification/Data/ex2data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/Data/ex2data2.txt -------------------------------------------------------------------------------- /Python/Classification/Data/ex3data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/Data/ex3data1.mat -------------------------------------------------------------------------------- /Python/Classification/Images/Classi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/Images/Classi1.png -------------------------------------------------------------------------------- /Python/Classification/Images/MultiClass1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/Images/MultiClass1.png -------------------------------------------------------------------------------- /Python/Classification/LogisticRegression/BinaryClassification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/LogisticRegression/BinaryClassification.py -------------------------------------------------------------------------------- /Python/Classification/LogisticRegression/LossandGradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/LogisticRegression/LossandGradient.py -------------------------------------------------------------------------------- /Python/Classification/LogisticRegression/MultiClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/LogisticRegression/MultiClass.py -------------------------------------------------------------------------------- /Python/Classification/LogisticRegression/plot_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/LogisticRegression/plot_data.py -------------------------------------------------------------------------------- /Python/Classification/LogisticRegression/prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/LogisticRegression/prediction.py -------------------------------------------------------------------------------- /Python/Classification/LogisticRegression/prediction1VSall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/LogisticRegression/prediction1VSall.py -------------------------------------------------------------------------------- /Python/Classification/LogisticRegression/regularizationExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/LogisticRegression/regularizationExample.py -------------------------------------------------------------------------------- /Python/Classification/LogisticRegression/sigmoidFuntion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/LogisticRegression/sigmoidFuntion.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/easy_install.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip-20.2.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip-20.2.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.06.20" 4 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.8.2' 5 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_vendor/toml/tz.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools-49.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools-49.3.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools-49.3.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/py27compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/py27compat.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/py31compat.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/py33compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/py33compat.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /Python/Classification/venv/Lib/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Lib/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /Python/Classification/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Python/Classification/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Scripts/activate -------------------------------------------------------------------------------- /Python/Classification/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Python/Classification/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Python/Classification/venv/Scripts/easy_install-3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Scripts/easy_install-3.8.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Scripts/pip3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Scripts/pip3.8.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Python/Classification/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Python/Classification/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Classification/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Python/LinearRegression/.idea/LinearRegression.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/.idea/LinearRegression.iml -------------------------------------------------------------------------------- /Python/LinearRegression/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/.idea/misc.xml -------------------------------------------------------------------------------- /Python/LinearRegression/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/.idea/modules.xml -------------------------------------------------------------------------------- /Python/LinearRegression/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/.idea/vcs.xml -------------------------------------------------------------------------------- /Python/LinearRegression/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/.idea/workspace.xml -------------------------------------------------------------------------------- /Python/LinearRegression/Data/ex1data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/Data/ex1data1.txt -------------------------------------------------------------------------------- /Python/LinearRegression/Data/ex1data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/Data/ex1data2.txt -------------------------------------------------------------------------------- /Python/LinearRegression/Images/Regression1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/Images/Regression1.png -------------------------------------------------------------------------------- /Python/LinearRegression/Images/Regression2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/Images/Regression2.png -------------------------------------------------------------------------------- /Python/LinearRegression/LinearRegressionMain/Optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/LinearRegressionMain/Optimization.py -------------------------------------------------------------------------------- /Python/LinearRegression/LinearRegressionMain/plot_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/LinearRegressionMain/plot_data.py -------------------------------------------------------------------------------- /Python/LinearRegression/MathTools/FeatureNormalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/MathTools/FeatureNormalization.py -------------------------------------------------------------------------------- /Python/LinearRegression/MathTools/StandardDeviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/MathTools/StandardDeviation.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/easy_install.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip-20.2.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip-20.2.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.06.20" 4 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.8.2' 5 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/toml/tz.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools-49.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools-49.3.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools-49.3.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Lib/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Lib/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Scripts/activate -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Scripts/easy_install-3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Scripts/easy_install-3.8.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Scripts/pip3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Scripts/pip3.8.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Python/LinearRegression/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/LinearRegression/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Python/RecommenderSystem/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Python/RecommenderSystem/.idea/RecommenderSystem.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/.idea/RecommenderSystem.iml -------------------------------------------------------------------------------- /Python/RecommenderSystem/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/.idea/encodings.xml -------------------------------------------------------------------------------- /Python/RecommenderSystem/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Python/RecommenderSystem/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/.idea/misc.xml -------------------------------------------------------------------------------- /Python/RecommenderSystem/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/.idea/modules.xml -------------------------------------------------------------------------------- /Python/RecommenderSystem/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/.idea/vcs.xml -------------------------------------------------------------------------------- /Python/RecommenderSystem/Collaborativefiltering/CostGrad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/Collaborativefiltering/CostGrad.py -------------------------------------------------------------------------------- /Python/RecommenderSystem/Collaborativefiltering/Normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/Collaborativefiltering/Normalize.py -------------------------------------------------------------------------------- /Python/RecommenderSystem/Collaborativefiltering/getMovieList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/Collaborativefiltering/getMovieList.py -------------------------------------------------------------------------------- /Python/RecommenderSystem/Collaborativefiltering/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/Collaborativefiltering/main.py -------------------------------------------------------------------------------- /Python/RecommenderSystem/Data/ex8_movieParams.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/Data/ex8_movieParams.mat -------------------------------------------------------------------------------- /Python/RecommenderSystem/Data/ex8_movies.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/Data/ex8_movies.mat -------------------------------------------------------------------------------- /Python/RecommenderSystem/Data/movie_ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/Data/movie_ids.txt -------------------------------------------------------------------------------- /Python/RecommenderSystem/DebuggingTool/TestFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/DebuggingTool/TestFunction.py -------------------------------------------------------------------------------- /Python/RecommenderSystem/DebuggingTool/TestNumericalGradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/RecommenderSystem/DebuggingTool/TestNumericalGradient.py -------------------------------------------------------------------------------- /Python/SVM/.idea/SVM.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/.idea/SVM.iml -------------------------------------------------------------------------------- /Python/SVM/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Python/SVM/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Python/SVM/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/.idea/misc.xml -------------------------------------------------------------------------------- /Python/SVM/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/.idea/modules.xml -------------------------------------------------------------------------------- /Python/SVM/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/.idea/vcs.xml -------------------------------------------------------------------------------- /Python/SVM/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/.idea/workspace.xml -------------------------------------------------------------------------------- /Python/SVM/Data/ex6data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/Data/ex6data1.mat -------------------------------------------------------------------------------- /Python/SVM/Data/ex6data2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/Data/ex6data2.mat -------------------------------------------------------------------------------- /Python/SVM/Data/ex6data3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/Data/ex6data3.mat -------------------------------------------------------------------------------- /Python/SVM/SupportVectorMachine/Experimenting_C_sigma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/SupportVectorMachine/Experimenting_C_sigma.py -------------------------------------------------------------------------------- /Python/SVM/SupportVectorMachine/GBO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/SupportVectorMachine/GBO.py -------------------------------------------------------------------------------- /Python/SVM/SupportVectorMachine/GaussianKernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/SupportVectorMachine/GaussianKernel.py -------------------------------------------------------------------------------- /Python/SVM/SupportVectorMachine/OriginalSMO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/SupportVectorMachine/OriginalSMO.py -------------------------------------------------------------------------------- /Python/SVM/SupportVectorMachine/Prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/SupportVectorMachine/Prediction.py -------------------------------------------------------------------------------- /Python/SVM/SupportVectorMachine/SVM_Linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/SupportVectorMachine/SVM_Linear.py -------------------------------------------------------------------------------- /Python/SVM/SupportVectorMachine/SVM_NonLinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/SupportVectorMachine/SVM_NonLinear.py -------------------------------------------------------------------------------- /Python/SVM/SupportVectorMachine/SimplifiedSMO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/SupportVectorMachine/SimplifiedSMO.py -------------------------------------------------------------------------------- /Python/SVM/SupportVectorMachine/Visualizeboundary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/SupportVectorMachine/Visualizeboundary.py -------------------------------------------------------------------------------- /Python/SVM/SupportVectorMachine/__pycache__/GBO.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/SupportVectorMachine/__pycache__/GBO.cpython-38.pyc -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/easy_install.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip-20.2.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip-20.2.2.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip-20.2.2.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip-20.2.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip-20.2.2.dist-info/METADATA -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip-20.2.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip-20.2.2.dist-info/RECORD -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip-20.2.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip-20.2.2.dist-info/WHEEL -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip-20.2.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/cli/req_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/cli/req_command.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/index/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/index/collector.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/locations.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/network/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/network/download.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/network/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/network/session.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/req/req_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/req/req_tracker.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/resolution/base.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/filetypes.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/parallel.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/subprocess.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/typing.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/unpacking.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/virtualenv.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.06.20" 4 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/big5prober.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/escprober.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/sjisprober.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/utf8prober.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/colorama/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/contextlib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/contextlib2.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/html5lib/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/html5lib/_ihatexml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/html5lib/_ihatexml.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/py.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/html5lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/html5lib/constants.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/_typing.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.8.2' 5 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/_in_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/_in_process.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/meta.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/progress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/progress/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/adapters.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/packages.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/sessions.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/common.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/decoder.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/encoder.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/ordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/ordered.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/toml/tz.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/connection.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pip/_vendor/webencodings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pip/_vendor/webencodings/tests.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pkg_resources/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pkg_resources/_vendor/appdirs.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pkg_resources/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pkg_resources/_vendor/six.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/pkg_resources/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/pkg_resources/extern/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools-49.6.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools-49.6.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools-49.6.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/cmd.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/config.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/core.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/debug.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/dep_util.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/dir_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/dir_util.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/dist.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/errors.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/filelist.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/log.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/spawn.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/util.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_distutils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_distutils/version.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_vendor/ordered_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_vendor/ordered_set.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_vendor/pyparsing.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/_vendor/six.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/build_clib.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/install_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/install_lib.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/py36compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/py36compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/command/upload_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/command/upload_docs.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/py27compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/py27compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/py31compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/py33compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/py33compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/ssl_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/ssl_support.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /Python/SVM/venv/Lib/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Lib/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /Python/SVM/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Python/SVM/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Scripts/activate -------------------------------------------------------------------------------- /Python/SVM/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Python/SVM/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Python/SVM/venv/Scripts/easy_install-3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Scripts/easy_install-3.8.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Scripts/pip3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Scripts/pip3.8.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Python/SVM/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Python/SVM/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SVM/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Python/SpamClassifier/.idea/SpamClassifier.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/.idea/SpamClassifier.iml -------------------------------------------------------------------------------- /Python/SpamClassifier/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Python/SpamClassifier/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/.idea/misc.xml -------------------------------------------------------------------------------- /Python/SpamClassifier/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/.idea/modules.xml -------------------------------------------------------------------------------- /Python/SpamClassifier/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/.idea/vcs.xml -------------------------------------------------------------------------------- /Python/SpamClassifier/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/.idea/workspace.xml -------------------------------------------------------------------------------- /Python/SpamClassifier/ClassificationUsingSVM/EmailProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/ClassificationUsingSVM/EmailProcessing.py -------------------------------------------------------------------------------- /Python/SpamClassifier/ClassificationUsingSVM/GaussianKernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/ClassificationUsingSVM/GaussianKernel.py -------------------------------------------------------------------------------- /Python/SpamClassifier/ClassificationUsingSVM/Prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/ClassificationUsingSVM/Prediction.py -------------------------------------------------------------------------------- /Python/SpamClassifier/ClassificationUsingSVM/SMO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/ClassificationUsingSVM/SMO.py -------------------------------------------------------------------------------- /Python/SpamClassifier/ClassificationUsingSVM/VocabArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/ClassificationUsingSVM/VocabArray.py -------------------------------------------------------------------------------- /Python/SpamClassifier/ClassificationUsingSVM/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/ClassificationUsingSVM/main.py -------------------------------------------------------------------------------- /Python/SpamClassifier/Data/emailSample1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/Data/emailSample1.txt -------------------------------------------------------------------------------- /Python/SpamClassifier/Data/spamSample1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/Data/spamSample1.txt -------------------------------------------------------------------------------- /Python/SpamClassifier/Data/spamSample2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/Data/spamSample2.txt -------------------------------------------------------------------------------- /Python/SpamClassifier/Data/spamTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/Data/spamTest.mat -------------------------------------------------------------------------------- /Python/SpamClassifier/Data/spamTrain.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/Data/spamTrain.mat -------------------------------------------------------------------------------- /Python/SpamClassifier/Data/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifier/Data/vocab.txt -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/.idea/SpamClassifierUsingDNN.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/.idea/SpamClassifierUsingDNN.iml -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/.idea/misc.xml -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/.idea/modules.xml -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/.idea/vcs.xml -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/Data/emailSample1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/Data/emailSample1.txt -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/Data/spamSample1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/Data/spamSample1.txt -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/Data/spamSample2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/Data/spamSample2.txt -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/Data/spamTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/Data/spamTest.mat -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/Data/spamTrain.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/Data/spamTrain.mat -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/Data/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/Data/vocab.txt -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/DebuggingTools/WeightsDebug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/DebuggingTools/WeightsDebug.py -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/DeepNetsOptimization/LossFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/DeepNetsOptimization/LossFunction.py -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/DeepNetsOptimization/NNLearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/DeepNetsOptimization/NNLearn.py -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/DeepNetsOptimization/Prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/DeepNetsOptimization/Prediction.py -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/DeepNetsOptimization/Reshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/DeepNetsOptimization/Reshape.py -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/DeepNetsOptimization/WeightInit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/DeepNetsOptimization/WeightInit.py -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/MathsTools/FeatureNormalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/MathsTools/FeatureNormalization.py -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/MathsTools/StandardDeviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/MathsTools/StandardDeviation.py -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/ProjectMain/EmailProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/ProjectMain/EmailProcessing.py -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/ProjectMain/VocabArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/ProjectMain/VocabArray.py -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/ProjectMain/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/ProjectMain/main.py -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/README.Md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/README.Md -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/venv/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/venv/bin/Activate.ps1 -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/venv/bin/activate -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/venv/bin/activate.csh -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/venv/bin/activate.fish -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/venv/bin/python: -------------------------------------------------------------------------------- 1 | python3.8 -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/venv/bin/python3: -------------------------------------------------------------------------------- 1 | python3.8 -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/venv/bin/python3.8: -------------------------------------------------------------------------------- 1 | /usr/bin/python3.8 -------------------------------------------------------------------------------- /Python/SpamClassifierUsingDNN/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/SpamClassifierUsingDNN/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Python/Tips&Tricks/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Python/Tips&Tricks/.idea/Tips&Tricks.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/.idea/Tips&Tricks.iml -------------------------------------------------------------------------------- /Python/Tips&Tricks/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Python/Tips&Tricks/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Python/Tips&Tricks/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/.idea/misc.xml -------------------------------------------------------------------------------- /Python/Tips&Tricks/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/.idea/modules.xml -------------------------------------------------------------------------------- /Python/Tips&Tricks/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/.idea/vcs.xml -------------------------------------------------------------------------------- /Python/Tips&Tricks/Data/ex5data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/Data/ex5data1.mat -------------------------------------------------------------------------------- /Python/Tips&Tricks/MLTricks/PlotFit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/MLTricks/PlotFit.py -------------------------------------------------------------------------------- /Python/Tips&Tricks/MLTricks/Poly_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/MLTricks/Poly_mapping.py -------------------------------------------------------------------------------- /Python/Tips&Tricks/MLTricks/Regularised_Linear_Cost_Grad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/MLTricks/Regularised_Linear_Cost_Grad.py -------------------------------------------------------------------------------- /Python/Tips&Tricks/MLTricks/__pycache__/PlotFit.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/MLTricks/__pycache__/PlotFit.cpython-38.pyc -------------------------------------------------------------------------------- /Python/Tips&Tricks/MLTricks/__pycache__/Poly_mapping.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/MLTricks/__pycache__/Poly_mapping.cpython-38.pyc -------------------------------------------------------------------------------- /Python/Tips&Tricks/MLTricks/learning_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/MLTricks/learning_curve.py -------------------------------------------------------------------------------- /Python/Tips&Tricks/MLTricks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/MLTricks/main.py -------------------------------------------------------------------------------- /Python/Tips&Tricks/MathsTools/FeatureNormalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/MathsTools/FeatureNormalization.py -------------------------------------------------------------------------------- /Python/Tips&Tricks/MathsTools/StandardDeviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Tips&Tricks/MathsTools/StandardDeviation.py -------------------------------------------------------------------------------- /Python/Unsupervised-ML/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Python/Unsupervised-ML/.idea/.name: -------------------------------------------------------------------------------- 1 | Unsuppervised ML -------------------------------------------------------------------------------- /Python/Unsupervised-ML/.idea/Unsupervised ML.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/.idea/Unsupervised ML.iml -------------------------------------------------------------------------------- /Python/Unsupervised-ML/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Python/Unsupervised-ML/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/.idea/misc.xml -------------------------------------------------------------------------------- /Python/Unsupervised-ML/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/.idea/modules.xml -------------------------------------------------------------------------------- /Python/Unsupervised-ML/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/.idea/vcs.xml -------------------------------------------------------------------------------- /Python/Unsupervised-ML/Application/Application_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/Application/Application_main.py -------------------------------------------------------------------------------- /Python/Unsupervised-ML/Application/bird_small.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/Application/bird_small.mat -------------------------------------------------------------------------------- /Python/Unsupervised-ML/Data/bird_small.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/Data/bird_small.mat -------------------------------------------------------------------------------- /Python/Unsupervised-ML/Data/ex7data1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/Data/ex7data1.mat -------------------------------------------------------------------------------- /Python/Unsupervised-ML/Data/ex7data2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/Data/ex7data2.mat -------------------------------------------------------------------------------- /Python/Unsupervised-ML/Data/ex7faces.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/Data/ex7faces.mat -------------------------------------------------------------------------------- /Python/Unsupervised-ML/K_mean/InitCentroids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/K_mean/InitCentroids.py -------------------------------------------------------------------------------- /Python/Unsupervised-ML/K_mean/__pycache__/plotdata.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/K_mean/__pycache__/plotdata.cpython-38.pyc -------------------------------------------------------------------------------- /Python/Unsupervised-ML/K_mean/executeK_means.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/K_mean/executeK_means.py -------------------------------------------------------------------------------- /Python/Unsupervised-ML/K_mean/mainK_mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/K_mean/mainK_mean.py -------------------------------------------------------------------------------- /Python/Unsupervised-ML/K_mean/plotdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/K_mean/plotdata.py -------------------------------------------------------------------------------- /Python/Unsupervised-ML/MathsTools/FeatureNormalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/MathsTools/FeatureNormalization.py -------------------------------------------------------------------------------- /Python/Unsupervised-ML/MathsTools/StandardDeviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/MathsTools/StandardDeviation.py -------------------------------------------------------------------------------- /Python/Unsupervised-ML/PCA/Decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/PCA/Decode.py -------------------------------------------------------------------------------- /Python/Unsupervised-ML/PCA/FindComponents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/PCA/FindComponents.py -------------------------------------------------------------------------------- /Python/Unsupervised-ML/PCA/Projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/PCA/Projection.py -------------------------------------------------------------------------------- /Python/Unsupervised-ML/PCA/__pycache__/Decode.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/PCA/__pycache__/Decode.cpython-38.pyc -------------------------------------------------------------------------------- /Python/Unsupervised-ML/PCA/__pycache__/Projection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/PCA/__pycache__/Projection.cpython-38.pyc -------------------------------------------------------------------------------- /Python/Unsupervised-ML/PCA/main_PCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/Python/Unsupervised-ML/PCA/main_PCA.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshay-591/ML-Code/HEAD/README.md --------------------------------------------------------------------------------