All Projects → pycroscopy → Aicrystallographer

pycroscopy / Aicrystallographer

Here, we will upload our deep/machine learning models and 'workflows' (such as AtomNet, DefectNet, SymmetryNet, etc) that aid in automated analysis of atomically resolved images

Projects that are alternatives of or similar to Aicrystallographer

Xen Code Review Analysis
This repository contains the tools and method follow to produce code review dashboards for the Xen community
Stars: ✭ 6 (-62.5%)
Mutual labels:  jupyter-notebook
Awesome Ai Ml Dl
Awesome Artificial Intelligence, Machine Learning and Deep Learning as we learn it. Study notes and a curated list of awesome resources of such topics.
Stars: ✭ 831 (+5093.75%)
Mutual labels:  jupyter-notebook
Rubik research
Experiments with using neural nets to solve a Rubik's Cube - read README first
Stars: ✭ 7 (-56.25%)
Mutual labels:  jupyter-notebook
Nazarkav
Persian Sentiment Analysis
Stars: ✭ 6 (-62.5%)
Mutual labels:  jupyter-notebook
Seminario Doc 2014
Cointegración en series de tiempo
Stars: ✭ 6 (-62.5%)
Mutual labels:  jupyter-notebook
Radiometer Sdr Thesis
My Master's thesis in Computer Engineering. My thesis involves using Software Defined Radios in radiometer applications.
Stars: ✭ 6 (-62.5%)
Mutual labels:  jupyter-notebook
Stock Market Analysis Using Python Pandas Numpy
- Performed stock market analysis of technology company’s stocks. - Used pandas to get stock information and to visualize different aspects of stock and performed risk analysis of the stock based on its previous performance history.
Stars: ✭ 6 (-62.5%)
Mutual labels:  jupyter-notebook
Remars2019 Revegas Workshop
Stars: ✭ 16 (+0%)
Mutual labels:  jupyter-notebook
Pysal
PySAL: Python Spatial Analysis Library Meta-Package
Stars: ✭ 832 (+5100%)
Mutual labels:  jupyter-notebook
Ephys Analysis
Scripts and utilities for processing electrophysiology data
Stars: ✭ 7 (-56.25%)
Mutual labels:  jupyter-notebook
Alembic
A set of tools for elastic image registration in Julia
Stars: ✭ 6 (-62.5%)
Mutual labels:  jupyter-notebook
Wellmagic
IPython notebooks to do magic things with well log data
Stars: ✭ 6 (-62.5%)
Mutual labels:  jupyter-notebook
Neurosleeve
Stars: ✭ 7 (-56.25%)
Mutual labels:  jupyter-notebook
Jupyter Notes
Some notes, taken with jupyter noteboook, about my studies and my interests
Stars: ✭ 6 (-62.5%)
Mutual labels:  jupyter-notebook
Misc
misc
Stars: ✭ 7 (-56.25%)
Mutual labels:  jupyter-notebook
Emet summer workshop
Repository for the North American Summer Meeting of the Econometric Society 2016 workshop
Stars: ✭ 6 (-62.5%)
Mutual labels:  jupyter-notebook
Plotly Misc Nbs
Miscellaneous IPython notebooks showing off plotly's features
Stars: ✭ 6 (-62.5%)
Mutual labels:  jupyter-notebook
Hass Google Coral
RETIRED - instead use https://github.com/robmarkcole/HASS-Deepstack-object
Stars: ✭ 16 (+0%)
Mutual labels:  jupyter-notebook
Credit Card Fraud Detection Dataset
Classification Problem to detect credit card fraud
Stars: ✭ 16 (+0%)
Mutual labels:  jupyter-notebook
Gcdri ts cat ml
Stars: ✭ 7 (-56.25%)
Mutual labels:  jupyter-notebook

The active development of the deep/machine learning routines for the analysis of atom-resolved data will now be at https://github.com/ziatdinovmax/atomai

AICrystallographer

To aid in the automated analysis of atomically resolved images, we will upload here our deep/machine learning models and 'workflows' (such as AtomNet, DefectNet, SymmetryNet, etc.) with the Jupyter notebooks describing in details how to perform the analysis. Most of the notebooks can be opened and executed in Google Colaboratory, which is a Jupyter notebook environment for machine learning research that requires no setup to use (and also provides free GPU and TPU hardware acceleration).

AI Crystallographer is an active project and we expect to be adding more workflows and pre-trained models in the near future. Currently it includes the following sub-packages:

  • DefectNet: Complete workflow for locating atomic defects in electron microscopy movies with a convolutional neural network using only a single movie frame to generate a training set. It is based on our paper in npj Computational Materials 5, 12 (2019), but now with the updated augmentation procedure (includes adding noise, zoom-in and flip/rotations) and using PyTorch deep learning framework instead of the Keras one for model training/predictions.
  • AtomNet: Application of a fully convolutional neural network for locating atoms in noisy experimental scanning transmission electron microscopy data. Based on our paper in ACS Nano 11, 12742 (2017), but now with a better model (gives "cleaner" predictions) and using PyTorch instead of Keras. The current models work for graphene-like lattices (e.g. graphene, WSe2) and cubic lattices (e.g. perovskites) and we expect to upload more models for different systems in the near future.
  • FerroNet: Application of different machine learning and multivariate analysis tools (neural networks, dimensionality reduction, clustering/unmixing) for analysis of ferroic distortions in high-resolution scanning transmission electron microscopy data on perovskites. Based on our paper in Appl. Phys. Lett. 115, 052902 (2019) .
  • SymmetryNet: Application of a deep convolutional network used to determine 2D Bravais lattice symmetry from atomically resolved images. Based on our paper in npj Computational Materials 4, 30 (2018).
  • Tutorials: Tutorial-like notebooks on i) using Google Colab notebooks, ii) using class activation maps for locating defects in the images, iii) using a fully convolutional neural network for cleaning atom-resolved data and locating atoms in it (both simplified and "real-world" examples).

How to use

Google Colab

This is a Jupyter notebook-centric project and the easiest way to use the tools in this package is by opening and running the notebooks in Google Colab using one of the following options: i) clicking on "Open in Colab" in the GitHub-opened notebook file (caution: it seems that GitHub is having some issues with loading graphic-heavy notebooks), ii) installing a Colab browser extension, iii) opening notebooks in this repository from Google Colab startpage. See our tutorial notebook for the best practices to work with Jupyter notebooks in Google Colab.

Docker

You may also use this package via Docker container. First, clone the repository to your local machine. Then, from your terminal, cd into the cloned repository and run

docker build -t aicr .

(you may substitute 'aicr' with any name that you like). Once it finishes buiding a Docker image, run

docker run -it -p 8080:8080 -v <path_to_AICrystallographer>:/home aicr /bin/bash

to start a container. You will now be able to launch a Jupyter notebook from inside your container by running

jupyter lab --ip=0.0.0.0 --port=8080 --allow-root

and then opening http://localhost:8080 in your browser.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].