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

Block or report akashjaswal

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. bpe.py bpe.py
    1
    import re
    2
    from collections import Counter, defaultdict
    3
    
                  
    4
    
                  
    5
    def build_vocab(corpus: str) -> dict:
  2. akashjaswal.github.io akashjaswal.github.io Public

    Website for hosting projects

    JavaScript 2

  3. Vectorized Implementation of Linear ... Vectorized Implementation of Linear Regression using Numpy
    1
    '''
    2
    Linear Regression - Vectorized Implementation w/ Numpy
    3
    4
    Setup: 
    5
  4. Vectorized Implementation of Logisti... Vectorized Implementation of Logistic Regression using Numpy
    1
    '''
    2
    Logistic Regression - Vectorized Implementation w/ Numpy
    3
    4
    Setup:
    5
      - features X = Feature Vector of shape (m, n) [Could append bias term to feature matrix with ones(m, 1)]