Giter Site home page Giter Site logo

devamoghs / machine-learning-with-python Goto Github PK

View Code? Open in Web Editor NEW
1.2K 46.0 187.0 847 KB

Small scale machine learning projects to understand the core concepts . Give a Star 🌟If it helps you. BONUS: Interview Bank coming up..!

License: MIT License

Python 99.97% Shell 0.03%
machine-learning python exercises practice-project beginner-friendly scikit-learn deep-learning python-3 data-science

machine-learning-with-python's People

Contributors

dependabot[bot] avatar devamoghs avatar neolithera avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

machine-learning-with-python's Issues

Revise urllib3’s version constraint to remove the potential dependency conflicts

Hi, as shown in the following full dependency graph of Machine-Learning-with-Python, Machine-Learning-with-Python requires urllib3 (the latest version), while the installed version of requests(2.22.0) requires urllib3>=1.21.1,<1.26.

According to pip's “first found wins” installation strategy, urllib3 1.25.3 is the actually installed version.

Although the first found package version urllib3 1.25.3 just satisfies the later dependency constraint (urllib3>=1.21.1,<1.26), it will lead to a build failure once developers release a newer version of urllib3.

Dependency tree--------

Machine-Learning-with-Python(version range:)
| +-asn1crypto(version range:==0.24.0)
| +-backcall(version range:==0.1.0)
| +-beautifulsoup4(version range:==4.6.3)
| +-certifi(version range:==2018.8.24)
| +-cffi(version range:==1.11.5)
| +-chardet(version range:==3.0.4)
| +-cryptography(version range:==2.3.1)
| +-cycler(version range:==0.10.0)
| +-h5py(version range:==2.9.0)
| | +-numpy(version range:>=1.7)
| | +-six(version range:)
| +-idna(version range:==2.7)
| +-inflection(version range:==0.3.1)
| +-ipython(version range:==7.2.0)
| +-jedi(version range:==0.13.2)
| +-keras(version range:==2.2.4)
| | +-numpy(version range:>=1.9.1)
| | +-scipy(version range:>=0.14)
| | +-six(version range:>=1.9.0)
| | +-pyyaml(version range:)
| | +-h5py(version range:)
| | | +-numpy(version range:>=1.7)
| | | +-six(version range:)
| | +-keras_applications(version range:>=1.0.6)
| | +-keras_preprocessing(version range:>=1.0.5)
| +-keras-preprocessing(version range:==1.0.5)
| +-kiwisolver(version range:==1.0.1)
| +-matplotlib(version range:==3.0.0)
| +-more-itertools(version range:==5.0.0)
| +-numpy(version range:==1.15.2)
| +-pandas(version range:==0.23.4)
| +-patsy(version range:==0.5.0)
| +-pexpect(version range:==4.6.0)
| +-pickleshare(version range:==0.7.5)
| +-pip(version range:==10.0.1)
| +-ptyprocess(version range:==0.6.0)
| +-pycparser(version range:==2.19)
| +-pygments(version range:==2.3.1)
| +-pyopenssl(version range:==18.0.0)
| +-pyparsing(version range:==2.2.1)
| +-pysocks(version range:==1.6.8)
| +-python-dateutil(version range:==2.7.3)
| +-pytz(version range:==2018.5)
| +-quandl(version range:==3.4.5)
| +-requests(version range:>=2.20.0)
| | +-chardet(version range:>=3.0.2,<3.1.0)
| | +-idna(version range:>=2.5,<2.9)
| | +-urllib3(version range:>=1.21.1,<1.26)
| | +-certifi(version range:>=2017.4.17)
| +-scikit-learn(version range:==0.20.0)
| +-scipy(version range:==1.1.0)
| +-seaborn(version range:==0.9.0)
| +-setuptools(version range:==40.2.0)
| +-six(version range:==1.11.0)
| +-statsmodels(version range:==0.9.0)
| +-tornado(version range:==5.1.1)
| +-traitlets(version range:==4.3.2)
| +-urllib3(version range:>=1.24.2)
| +-wcwidth(version range:==0.1.7)
| +-wheel(version range:==0.31.1)

Thanks for your attention.
Best,
Neolith

Unable to install requirements

When installing the requirements I am met with a host of "Could not find a version..." errors. I have confirmed that I am indeed using Python 3.5 and followed your instructions on creating and activating a conda environment. See error below:

Collecting anaconda-navigator==1.8.7 (from -r requirements.txt (line 7))
  Could not find a version that satisfies the requirement anaconda-navigator==1.8.7 (from -r requirements.txt (line 7)) (from versions: )
No matching distribution found for anaconda-navigator==1.8.7 (from -r requirements.txt (line 7))
You are using pip version 10.0.1, however version 19.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

Restructure the code for some examples according to PEP8 guidelines?

Hey there! A really neat repository!

I was browsing through the code and noticed in some examples that you've written entire blocks of code within if __name__ == __main__ block. I am willing to restructure it, it's possible to import the functions you've put within the if __main__ == __name__: blocks if they were outside it.

Let me know what you think 😁

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.