Skip to content
View RodrigoSdeCarvalho's full-sized avatar
🏠
Working from home
🏠
Working from home

Highlights

  • Pro
Block or Report

Block or report RodrigoSdeCarvalho

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
RodrigoSdeCarvalho/README.md

Hi there 👋

I love Computer Science and AI.

about About Me

struct Rodrigo {
    name: String,
    background: ComputerScience,
    primary_skillset: Vec<Box<dyn Skill>>,
    main_languages: Vec<Box<dyn ProgrammingLanguage>>,
}

impl Rodrigo {
    pub fn new() -> Rodrigo {
        Rodrigo {
            name: "Rodrigo Santos de Carvalho".to_string(),
            background: ComputerScience {
                university: "UFSC".to_string(),
            },
            primary_skillset: vec![
                Box::new(SoftwareEngineering {}),
                Box::new(AI {}),
                Box::new(ML {}),
                Box::new(ComputerVision {}),
                Box::new(BackEnd {}),
            ],
            main_languages: vec![
                Box::new(Python {}),
                Box::new(CPlusPlus {}),
                Box::new(Rust {}),
                Box::new(CSharp {}),
                Box::new(Java {}),
            ],
        }
    }
}

Langs and Tools:

GitHub Stats

**SEU NOME** github stats

Highlighted Projects

  • DocTour.AI - A Rust project to use LLMs to interpret and gain insights from documents;
  • pyEasyML - Python Machine Learning framework that makes developing ML applications easy;
  • Lane Detection - Machine Learning model to segment lanes and find the center of lane in a road;
  • BrickShootersII - A classic spaceship shooter game implemented in C++ with the Concurrency lib I developed with two friends;
  • ExtendClass - Python lib for class extension, useful for modifying a class without inheritance;

Readme Card Readme Card


Get to know me further!

🏡 website | 👔 linkedin

Pinned Loading

  1. DocTour.AI DocTour.AI Public

    Repository to store POC and MVP of DocTour.AI's AI core

    Rust

  2. pyEasyML pyEasyML Public

    Python version of my machine learning framework that provides data preprocessing, feature selection, classification, regression and even more complex deep learning models, model persistence, autoen…

    Python 3

  3. LaneDetection LaneDetection Public

    Python

  4. BrickShootersII BrickShootersII Public

    A classic space ship shooter game implemented in C++ with the Concurrency lib I developed with two friends at uni.

  5. GraphModuleCpp GraphModuleCpp Public

    A graph module to implement Graphs in C++ made by me and two friends.

    C++ 1

  6. Misfire-Detection Misfire-Detection Public

    Forked from canalrafael/Misfire-Detection

    This git contains the files used for the paper "Machine learning for real-time Misfire Detection based on ECU data", by Rafael Canal, Felipe Kaminsky Riffel, João Paulo Bonomo, Rodrigo Santos de Ca…

    Python