Skip to content
View mandalbiswadip's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report mandalbiswadip

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. hierarchical-attention-networks hierarchical-attention-networks Public

    Implementation of Hierarchical attention networks

    Python 1

  2. genderPrediction genderPrediction Public

    Gender prediction from Indian names

    Python 6 1

  3. MLLearn MLLearn Public

    Learning the basics of Machine Learning

    Python

  4. django_sql django_sql Public

    django app for sql database managment

    Python

  5. Simulated Annealing optimization usi... Simulated Annealing optimization using tensors
    1
    # Basic implementation of Simulated Annealing in Tensorflow
    2
    # Algorithms like gradient descent can get stuck in a local minima depending on the initial guess
    3
    # But simulated Annealing helps reaching the global meaning irrespective of the initial guess.
    4
    # The current implementation is for Himmelblau Function
    5
    # Just change the function if you want to optimize anything else