Skip to content
View Bezik1's full-sized avatar
🤍
Ready to work
🤍
Ready to work
Block or Report

Block or report Bezik1

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

👋 Hi, I'm Mateusz and also

💻 Machine Learning

Technologies

  • numpy
  • python

Alghoritms

  • stochiastic gradient descent
  • BPTT
  • R2 regulation
  • backpropagation

Skills

  • Implementing deep neural network structure
  • Implementing recurent neural network structure
  • OOP

👨‍💻 Frontend developer

Technologies

  • JavaScript
  • TypeScript
  • React
  • gsap
  • react-three/fiber (react + THREE.js)

💻 Backend developer

Technologies

  • Nest.js
  • MongoDB
  • MySQL
  • REST API

⚛️ WEB3 developer

Technologies

  • ethers.js
  • @usedapp

:electron: Electron developer

😎 React Native Developer

  interface NewDeveloper {
    devName: string
    experience: number
    active: boolean
  }
  
  interface Developer extends NewDeveloper {
    githubUrl: string
    salary: number
  }
  
  const devs: Developer[] = []
  const hireNewDev = ({ devName, experience, active } : NewDeveloper) =>{
    devs.push({
      devName,
      experience,
      status,
      active,
      salary: 3000,
      githubUrl: 'https://github.com/Bezik1'
    })
  }
  
  hireNewDev({
    devName: 'Mateusz',
    expierience: 0,
    active: true
})

Pinned

  1. NN-reusable-version NN-reusable-version Public

    Fully Connected Multi Dimensional Neural Network model from scratch

    Python

  2. RNN-reusable-version RNN-reusable-version Public

    One to one rnn to predict stock market prices from scratch

    Python

  3. Random-Forest Random-Forest Public

    Random Forest model to classify light based on it's wave length from scratch

    Python

  4. LSTM-words LSTM-words Public

    LSTM many to many models to answer the questions from scratch

    Python

  5. Transformer Transformer Public

    Transformer model using pytorch

    Python

  6. Convulation-Neural-Network Convulation-Neural-Network Public

    Convulation Neural Network to digit recognition from scrtach

    Python