All Projects → geekquad → Algobook

geekquad / Algobook

Licence: mit
A beginner-friendly project to help you in open-source contributions. Data Structures & Algorithms in various programming languages Please leave a star ⭐ to support this project! ✨

Programming Languages

python
139335 projects - #7 most used programming language
golang
3204 projects
python3
1442 projects
cpp
1120 projects

Projects that are alternatives of or similar to Algobook

Hacktoberfest 2020
Welcome to Open-source! Simply add your details to contributors | Repo for Hacktoberfest 2020 ✅
Stars: ✭ 621 (+370.45%)
Mutual labels:  beginner-friendly, first-timers, beginner, easy-to-use
github welcome wall
This is the official repository for the Towards Data Science Article, "WTH am I doing here? The absolute beginner's guide to Git and GitHub"
Stars: ✭ 25 (-81.06%)
Mutual labels:  first-timers, beginner, beginner-friendly
Awesome Hacktoberfest 2020
A curated list of awesome Hacktoberfest 2020 repositories, guides and resources
Stars: ✭ 349 (+164.39%)
Mutual labels:  beginner-friendly, first-timers, beginner
Start Here
💡 A Quick-start Guide for People who want to dwyl ❤️ ✅
Stars: ✭ 1,392 (+954.55%)
Mutual labels:  beginner-friendly, beginner
Dataminingnotesandpractice
记录我学习数据挖掘过程的笔记和见到的奇技,持续更新~
Stars: ✭ 103 (-21.97%)
Mutual labels:  jupyter-notebook, machinelearning
Models
DLTK Model Zoo
Stars: ✭ 101 (-23.48%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Pytorch Learners Tutorial
PyTorch tutorial for learners
Stars: ✭ 97 (-26.52%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Faceaging By Cyclegan
Stars: ✭ 105 (-20.45%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Intro To Deep Learning
A collection of materials to help you learn about deep learning
Stars: ✭ 103 (-21.97%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Selfdrivingcar
A collection of all projects pertaining to different layers in the SDC software stack
Stars: ✭ 107 (-18.94%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Ml Fraud Detection
Credit card fraud detection through logistic regression, k-means, and deep learning.
Stars: ✭ 117 (-11.36%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Mxnet Finetuner
An all-in-one Deep Learning toolkit for image classification to fine-tuning pretrained models using MXNet.
Stars: ✭ 100 (-24.24%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Deep Image Analogy Pytorch
Visual Attribute Transfer through Deep Image Analogy in PyTorch!
Stars: ✭ 100 (-24.24%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Pytorchnlpbook
Code and data accompanying Natural Language Processing with PyTorch published by O'Reilly Media https://nlproc.info
Stars: ✭ 1,390 (+953.03%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Btctrading
Time Series Forecast with Bitcoin value, to detect upward/down trends with Machine Learning Algorithms
Stars: ✭ 99 (-25%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Tensorflow2.0 Examples
🙄 Difficult algorithm, Simple code.
Stars: ✭ 1,397 (+958.33%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Machine Learning Demystified
A weekly workshop series at ITP to teach machine learning with a focus on deep learning
Stars: ✭ 114 (-13.64%)
Mutual labels:  jupyter-notebook, deep-neural-networks
100 Days Of Nlp
Stars: ✭ 125 (-5.3%)
Mutual labels:  jupyter-notebook, deep-neural-networks
Leetcode Solutions
This repository consists of solutions to the problem from LeetCode platform. Subscribe to our Channel for more updates
Stars: ✭ 128 (-3.03%)
Mutual labels:  beginner-friendly, first-timers
Learn Ml Basics
A collection of resources that should help and guide your first steps as you learn ML and DL. I am a beginner as well, and these are the resources I found most useful.
Stars: ✭ 93 (-29.55%)
Mutual labels:  deep-neural-networks, machinelearning

Algo-Book-poster.png

License: MIT made-with-python Open Source Love svg1 PRs Welcome first-timers-only contributions welcome  GitHub contributors Maintenance GitHub forks GitHub Repo stars

A beginner friendly project to help you in open source contributions. An attempt to bring all the algorithms together.

Please see the Contributing Guidelines .

Overview

The goal of this project is to help the beginners with their contributions in Open Source and bring all the possible algorithms of Machine Learning and Python together. We aim to achieve this collaboratively, so feel free to contribute in any way you want, just make sure to follow the contribution guidelines.

What is Open - Source? Open Source Love svg3

The open source community provides a great opportunity for aspiring programmers to distinguish themselves; and by contributing to various projects, developers can improve their skills and get inspiration and support from like-minded people. When you contribute to something you already know and love, it can have so much more meaning, because you know how the tool is used and the good it does for you. Being part of an open source community opens you up to a broader range of people to interact with.

Read more about it here.

Let's Get Started:

Step 1. Create a Copy of this Repository

In order to work on an open-source project, you will first need to make your own copy of the repository. To do this, you should fork the repository and then clone it so that you have a local working copy.

Fork 🍴 this repo. Click on the Fork button at the top right corner.

With the repository forked, you’re ready to clone it so that you have a local working copy of the code base.

Clone the Repository

To make your own local copy of the repository you would like to contribute to, let’s first open up a terminal window.

We’ll use the git clone command along with the URL that points to your fork of the repository.

  • Open the Command Prompt
  • Type this command:
git clone https://github.com/your_username/AlgoBook

Step 2: Creating a New Branch

It is important to branch the repository so that you are able to manage the workflow, isolate your code, and control what features make it back to the main branch of the project repository.

When creating a branch, it is very important that you create your new branch off of the master branch. To create a new branch, from your terminal window, follow:

git branch new-branch
git checkout new-branch

Once you enter the git checkout command, you will receive the following output:

Switched to branch 'new-branch'

Step 3: Contribute

Make relevant changes. Add new algorithms. Add Readme files. Contribute in any way you feel like :)

Step 4: Commiting and Pushing:

Once you have modified an existing file or added a new file to the project, you can add it to your local repository, which we can do with the git add command.

git add filename or git add .

You can type the command git add -A or alternatively git add -all for all new files to be staged.

With our file staged, we’ll want to record the changes that we made to the repository with the git commit command.

The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the change you have made, why you made it, and how significant it is.

git commit -m "commit message"

At this point you can use the git push command to push the changes to the current branch of your forked repository:

git push --set-upstream origin new-branch

Step 6: Create Pull Request

At this point, you are ready to make a pull request to the original repository.

You should navigate to your forked repository, and press the “Compare & pull request” button on the page.

GitHub will alert you that you are able to merge the two branches because there is no competing code. You should add in a title, a comment, and then press the “Create pull request” button.

Step 7: CONGRATULATIONS 💥 👏 ☺️

You have made it till the end. Kudos to you!!


Contents

Our content is basically divided into 5 segments for now. Please create an issue if you wish to add code in a language that we don't currently have here.

Where to upload the files

  • Your files should be uploaded directly into the corresponding folder (For instance, if you wrote code for an Algorithm Implementation in Python, it goes inside the Python folder and same goes for the ML Algorithm)
  • Under no circumstances create new folders within the language folders to upload your code unless specifically told to do so.

For any more issues and queries, please join our Slack Channel.

Feel free to reach out to us. Rememeber, collaboration is the key to open-source.

Please see the Contributing Guidelines .


Please STAR 🌟 this repository if you liked it and had fun :)

Maintainers! 😊


Aditya Kumar Gupta

💻 🖋

Paurush Tiwari

💻 🖋

Community

Join our Slack community to get help in contributing, as well as stay up-to-date on issues and best practices.

As always, thanks to our amazing contributors!

Stargazers over time

Stargazers over time

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].