Skip to content
View Divyosmi's full-sized avatar
🛩️
Let's #code
🛩️
Let's #code

Organizations

@HAESolve
Block or Report

Block or report Divyosmi

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. URJA URJA Public template

    My small toy language named after my sister in python 3

    Python 2

  2. genetics.py genetics.py
    1
    import numpy
    2
    import random
    3
    import matplotlib.pyplot
    4
    import pickle
    5
    import time
  3. HAESolve/Code-of-conduct-and-Introduction HAESolve/Code-of-conduct-and-Introduction Public

    1

  4. Cart_Classifier.py Cart_Classifier.py
    1
    def unique_vals(rows,col):
    2
    
                  
    3
        return list([row[col] for row in rows])
    4
    
                  
    5
    def class_counts(rows):
  5. LogitFlow.py LogitFlow.py
    1
    import numpy as np
    2
    
                  
    3
    import matplotlib.pyplot as plt
    4
    
                  
    5
    class MultiClassLogisticRegression:
  6. vgg16 neural net vgg16 neural net
    1
    """VGG16 model for Keras.
    2
    3
    # Reference
    4
    5
    - [Very Deep Convolutional Networks for Large-Scale Image Recognition](