Skip to content
View siddydutta's full-sized avatar
Block or Report

Block or report siddydutta

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Daily-LeetCoding-Challenges Daily-LeetCoding-Challenges Public

    Daily LeetCoding Challenges

    Python 3

  2. Java-Programming-Software-Engineering-Fundamentals Java-Programming-Software-Engineering-Fundamentals Public archive

    5 Course Software Development Specialization by Duke University on Coursera

    Java 2 1

  3. English-Quiz-Bot English-Quiz-Bot Public

    Telegram Bot using Python to Send English Quizzes

    Python

  4. amadeus4dev/amadeus-python amadeus4dev/amadeus-python Public

    Python library for the Amadeus Self-Service travel APIs

    Python 188 72

  5. Machine-Learning-Projects Machine-Learning-Projects Public

    Notebooks from various ML projects

    Jupyter Notebook 3

  6. XOR - Backpropagation NN XOR - Backpropagation NN
    1
    import numpy as np 
    2
    #np.random.seed(0)
    3
    
                  
    4
    def sigmoid (x):
    5
        return 1/(1 + np.exp(-x))