Code Monkey home page Code Monkey logo

Hi 👋

#!/usr/bin/python
# -*- coding: utf-8 -*-


class DataScientist: # More like my goal than my current title :)
    def __init__(self):
        self.name = "Tung Tran" # My first name actually is Tung (not Khanh or Tran)
        self.role = "Teaching Assistant | AI Resident | Freelancer | Student"
        self.location = "Ho Chi Minh City"
        self.github = "https://github.com/KhanhTungTran"
        self.knowledge_base = [
            "Machine Learning",
            "Deep Learning",
            "Software Engineering",
        ]
        self.knowledge_base.insert(0, "Computer Vision")

    def say_hi(self):
        print(
            """Hello there, thanks for dropping by <3!

This is {name}, I live in {location}. I work as a {role} and recently I am focusing on {focus} for my personal growth.

It is true that I'm a little brag about all the roles that I showed, but yeah, I do be on multiple jobs these days, I would love to learn new things everyday :D.

I have wide interests, but most of them are {knowledge_base}.

You can find most of my work here, in my github: {github}""".format(
                name=self.name,
                location=self.location,
                role=self.role,
                focus=self.knowledge_base[0],
                knowledge_base=", ".join(self.knowledge_base[1:]),
                github=self.github,
            )
        )


me = DataScientist()
me.say_hi()

🔧 Technologies & Tools

📈 GitHub Stats

Tung's GitHub Stats Tung's GitHub Stats

🙇 Special Thanks

Trần Khánh Tùng's Projects

assextraoop icon assextraoop

Implementation of The Assignment for Object-Oriented Programming (Honor Program) (CO200C)

covid-19 icon covid-19

Novel Coronavirus (COVID-19) Cases, provided by JHU CSSE

ddp icon ddp

DDP (Distributed data parallel)

gatedconvolution_pytorch icon gatedconvolution_pytorch

A modified reimplemented in pytorch of inpainting model in Free-Form Image Inpainting with Gated Convolution [http://jiahuiyu.com/deepfill2/]

metric_learning icon metric_learning

Implementation of Metric Learning model on CIFAR-10 dataset, for atWare Minathon 2021.

mgl4mep icon mgl4mep

MGL4MEP: Multimodal Graph Learning for Modeling Emerging Pandemics with Big Data

opencv-course icon opencv-course

Learn OpenCV in 4 Hours - Code used in my Python and OpenCV course on freeCodeCamp.

parserator icon parserator

:bookmark: A toolkit for making domain-specific probabilistic parsers

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.