Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 2.12 KB

README.md

File metadata and controls

38 lines (27 loc) · 2.12 KB

project AI

🚧 NOTE :This project is under development 🚧

This project includes a list of useful codes for ML tasks. Besides, it contains several notebooks used to exercise the basics of ML.

Download:

  • Cloning the project
git clone https://USERNAME:[email protected]/mpitt82/AI.git
  • Cloning a single folder (clone a subdirectory from git repository)
git clone --depth 1 https://USERNAME:[email protected]/mpitt82/AI.git [FOLDER]
cd [FOLDER]
git filter-branch --prune-empty --subdirectory-filter [FOLDER] HEAD

Outline:

AIcourse

This AIcourse folder includes few Jupyter notebooks with examples for linear and logistic regression, as well as image categorization using Keras.

GraphNeuralNetwork

The GraphNeuralNetwork folder contains GNN implementation used in TrackML challenge, whereas the WeizmannAI is the submitted code to the challenge.

ParticleImages

CalorimeterSegmentation

The CalorimeterSegmentation task contains CNN implementation of segmentation of calorimeter images. The task is to separate hits between charged and neutral particles.

SuperResolution

The SuperResolution task contains an implementation of Super-Resolution task on images obtained form particle detectors. In contrast to computer vision tasks, particle detectors are 3D cameras incorporates different sensitive layers designed to stop particles that usually undergo two types of interactions, electromagnetic and hadronic. Often, all layers have different granularity and include various types of the response function, which make the task of super-resolution to be different from the mainstream computer vision tasks.