All Projects → liyu95 → Deep_learning_examples

liyu95 / Deep_learning_examples

Licence: mit
Examples of using deep learning in Bioinformatics

Projects that are alternatives of or similar to Deep learning examples

Uncurl python
UNCURL is a tool for single cell RNA-seq data analysis.
Stars: ✭ 13 (-94.44%)
Mutual labels:  jupyter-notebook, bioinformatics
Tdc
Therapeutics Data Commons: Machine Learning Datasets and Tasks for Therapeutics
Stars: ✭ 291 (+24.36%)
Mutual labels:  jupyter-notebook, bioinformatics
Deeppurpose
A Deep Learning Toolkit for DTI, Drug Property, PPI, DDI, Protein Function Prediction (Bioinformatics)
Stars: ✭ 342 (+46.15%)
Mutual labels:  jupyter-notebook, bioinformatics
Coursera Specializations
Solutions to assignments of Coursera Specializations - Deep learning, Machine learning, Algorithms & Data Structures, Image Processing and Python For Everybody
Stars: ✭ 72 (-69.23%)
Mutual labels:  jupyter-notebook, bioinformatics
Gcp For Bioinformatics
GCP Essentials for Bioinformatics Researchers
Stars: ✭ 95 (-59.4%)
Mutual labels:  jupyter-notebook, bioinformatics
Graphein
Protein Graph Library
Stars: ✭ 184 (-21.37%)
Mutual labels:  jupyter-notebook, bioinformatics
Janggu
Deep learning infrastructure for bioinformatics
Stars: ✭ 174 (-25.64%)
Mutual labels:  jupyter-notebook, bioinformatics
Allensdk
code for reading and processing Allen Institute for Brain Science data
Stars: ✭ 200 (-14.53%)
Mutual labels:  jupyter-notebook, bioinformatics
Smt
Surrogate Modeling Toolbox
Stars: ✭ 233 (-0.43%)
Mutual labels:  jupyter-notebook
Datavisualization
Tutorials on visualizing data using python packages like bokeh, plotly, seaborn and igraph
Stars: ✭ 234 (+0%)
Mutual labels:  jupyter-notebook
Nn
🧑‍🏫 50! Implementations/tutorials of deep learning papers with side-by-side notes 📝; including transformers (original, xl, switch, feedback, vit, ...), optimizers (adam, adabelief, ...), gans(cyclegan, stylegan2, ...), 🎮 reinforcement learning (ppo, dqn), capsnet, distillation, ... 🧠
Stars: ✭ 5,720 (+2344.44%)
Mutual labels:  jupyter-notebook
Pandas Highcharts
Beautiful charting of pandas.DataFrame with Highcharts
Stars: ✭ 233 (-0.43%)
Mutual labels:  jupyter-notebook
Pydqc
python automatic data quality check toolkit
Stars: ✭ 233 (-0.43%)
Mutual labels:  jupyter-notebook
Datasets
source{d} datasets ("big code") for source code analysis and machine learning on source code
Stars: ✭ 231 (-1.28%)
Mutual labels:  jupyter-notebook
Pyschedule
pyschedule - resource scheduling in python
Stars: ✭ 232 (-0.85%)
Mutual labels:  jupyter-notebook
Tensorflow 101
TensorFlow Tutorials
Stars: ✭ 2,565 (+996.15%)
Mutual labels:  jupyter-notebook
Mxnet The Straight Dope
An interactive book on deep learning. Much easy, so MXNet. Wow. [Straight Dope is growing up] ---> Much of this content has been incorporated into the new Dive into Deep Learning Book available at https://d2l.ai/.
Stars: ✭ 2,551 (+990.17%)
Mutual labels:  jupyter-notebook
Drkg
A knowledge graph and a set of tools for drug repurposing
Stars: ✭ 231 (-1.28%)
Mutual labels:  jupyter-notebook
Python Script Examples
This repository contains my python (3) script examples that focus on use cases for Network Engineers.
Stars: ✭ 233 (-0.43%)
Mutual labels:  jupyter-notebook
Jupyterwith
declarative and reproducible Jupyter environments - powered by Nix
Stars: ✭ 235 (+0.43%)
Mutual labels:  jupyter-notebook

Examples of using deep learning in Bioinformatics

This work has been officially published, but we will keep updating this repository to keep up with the most advanced researches. If you have any suggestions, feel free to open an issue. You are also very welcomed to contribute.

cover image

This article has been selected for the cover image of the corresponding Methods issue

The related tutorial and review manuscript can be referred here: Deep learning in bioinformatics: introduction, application, and perspective in the big data era [PDF]

If you find the tutorial and this repository useful, please cite our manuscript with the following information:

@article{LI2019,
title = "Deep learning in bioinformatics: Introduction, application, and perspective in the big data era",
journal = "Methods",
year = "2019",
issn = "1046-2023",
doi = "https://doi.org/10.1016/j.ymeth.2019.04.008",
url = "http://www.sciencedirect.com/science/article/pii/S1046202318303256",
author = "Yu Li and Chao Huang and Lizhong Ding and Zhongxiao Li and Yijie Pan and Xin Gao",}

Deep learning, which is especially formidable in handling big data, has achieved great success in various fields, including bioinformatics. With the advances of the big data era in biology, it is foreseeable that deep learning will become increasingly important in the field and will be incorporated in vast majorities of analysis pipelines.

To facilitate the process, in this repository, we provide eight examples, which cover five research directions, four data types, and a number of deep learning models that people will encounter in Bioinformatics. The five research directions are: sequence analysis, structure prediction and reconstruction, biomolecular property and function prediction, biomedical image processing and diagnosis, biomolecule interaction prediction and systems biology. The four data types are: structured data, 1D sequence data, 2D image or profiling data, graph data. The covered deep learning models are: deep fully connected neural networks, ConvNet, RNN, graph convolutional neural network, ResNet, GAN, VAE.

Here is the overview of the eight examples:

1.Fully_connected_psepssm_predict_enzyme

This example shows how to use a neural network to identify enzymes.

  • Model: deep fully connected neural network
  • Data type: structured data
  • Research direction: biomolecular property and function prediction

2.CNN_RNN_sequence_analysis

This example shows how to use the combination of CNN and RNN to predict the non-coding DNA sequence function.

  • Model: CNN, RNN
  • Data type: 1D sequence data
  • Research direction: sequence analysis

3.Regression_gene_expression

This example shows how to use deep learning to predict target gene expression with the landmark gene expression data.

  • Model: deep fully connected neural network
  • Data type: structured data
  • Research direction: biomolecule interaction prediction and systems biology

4.ResNet_X-ray_classification

This example shows how to perform diagnosis with ResNet on the X-ray images.

  • Model: ResNet
  • Data type: 2D image or profiling data
  • Research direction: biomedical image processing and diagnosis

5.GNN_PPI_network

This example shows how to using graph neural network to perform graph embedding and predict protein protein interactions in PPI network.

  • Model: graph convolutional neural network
  • Data type: graph data
  • Research direction: biomolecule interaction prediction and systems biology

6.GAN_image_SR

This example shows how to perform biological image super resolution with GAN.

  • Model: GAN
  • Data type: 2D image or profiling data
  • Research direction: biomedical image processing and diagnosis

7.VAE_high_dim_biological_data_embedding_generation

This example shows how to use VAE to reduce the dimensionality of gene expression profile.

  • Model: VAE
  • Data type: 2D image or profiling data
  • Research direction: biomolecule interaction prediction and systems biology

8.RBP_prediction_CNN

This example shows how to perform RNA-protein binding sites prediction with CNN.

  • Model: CNN
  • Data type: 1D sequence data
  • Research direction: sequence analysis
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].