Skip to content
View TimilsinaBimal's full-sized avatar
🐢
1.01³⁶⁵
🐢
1.01³⁶⁵

Block or report TimilsinaBimal

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
TimilsinaBimal/README.md
#!/usr/bin/python3
# -*- coding: utf-8 -*-


class MLEngineer:
    def __init__(self):
        self.name = "Bimal Timilsina"
        self.pronouns = "he/him"
        self.language_spoken = ["ne_NP", "en_US", "hi_IN"]
        self.current_focus = "Reinforcement learning",
    
    def get_current_workplace(self):
        return {
            "company": "Insyde AI"
            "position": "Machine Learning Engineer"
        }
     
    def get_skills(self):
        return {
            "languages" : ["Python", "JavaScript"],
            "libraries and frameworks" : ["Transformers", "Pytorch",
                                        "TensorFlow", "Scikit-Learn", "Keras",
                                        "NumPy", "Pandas", "Matplotlib", 
                                        "NLTK", "SpaCy", "Django", "FastAPI"
                                        ],
            "databases" : ["MySQL", "MongoDB"]
        }
        

    def say_hi(self):
        print("Thanks for dropping by, hope you find some of my work interesting.")
        

me = MLEngineer()
me.say_hi()

Let's connect and chat!

Pinned Loading

  1. bpe bpe Public

    Replicating BPE used in GPT-4

    Python 1

  2. gpt2 gpt2 Public

    Minimal implementation of GPT paper

    Python

  3. Blurring-Image-Background-Using-Image-Segmentation Blurring-Image-Background-Using-Image-Segmentation Public

    Blurring the background of an Image using Image Segmentation Algorithms.

    Jupyter Notebook 5 2

  4. News-Article-Classifier News-Article-Classifier Public

    Classify News Articles in different Categories Using NLP Techniques!

    Jupyter Notebook 1 1

  5. Neural-Style-Transfer Neural-Style-Transfer Public

    Implementation of Neural Style Transfer Using Tensorflow and Keras

    Python

  6. Neural-Networks-from-Scratch Neural-Networks-from-Scratch Public

    A simple implementation to Create and Train a Neural Network in python. This implementation does not use any Machine Learning Framework.

    Python