A Quick and Dirty Progressive Neural Network written in TensorFlow.

Overview

prog_nn

                 .▄▄ ·  ▄· ▄▌ ▐ ▄  ▄▄▄·       ▐ ▄  
                 ▐█ ▀. ▐█▪██▌•█▌▐█▐█ ▄█▪     •█▌▐█ 
                 ▄▀▀▀█▄▐█▌▐█▪▐█▐▐▌ ██▀· ▄█▀▄ ▐█▐▐▌ 
                 ▐█▄▪▐█ ▐█▀·.██▐█▌▐█▪·•▐█▌.▐▌██▐█▌ 
                  ▀▀▀▀   ▀ • ▀▀ █▪.▀    ▀█▄▀▪▀▀ █▪ 

 ██████╗ ███████╗███████╗███████╗ █████╗ ██████╗  ██████╗██╗  ██╗ 
 ██╔══██╗██╔════╝██╔════╝██╔════╝██╔══██╗██╔══██╗██╔════╝██║  ██║ 
 ██████╔╝█████╗  ███████╗█████╗  ███████║██████╔╝██║     ███████║ 
 ██╔══██╗██╔══╝  ╚════██║██╔══╝  ██╔══██║██╔══██╗██║     ██╔══██║ 
 ██║  ██║███████╗███████║███████╗██║  ██║██║  ██║╚██████╗██║  ██║ 
 ╚═╝  ╚═╝╚══════╝╚══════╝╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝ ╚═════╝╚═╝  ╚═╝ 

A Quick and Dirty Progressive Neural Network written in TensorFlow.

You might also like...
PyTorch inference for
PyTorch inference for "Progressive Growing of GANs" with CelebA snapshot

Progressive Growing of GANs inference in PyTorch with CelebA training snapshot Description This is an inference sample written in PyTorch of the origi

Official implementation of the paper Vision Transformer with Progressive Sampling, ICCV 2021.
Official implementation of the paper Vision Transformer with Progressive Sampling, ICCV 2021.

Vision Transformer with Progressive Sampling This is the official implementation of the paper Vision Transformer with Progressive Sampling, ICCV 2021.

Source code for "Progressive Transformers for End-to-End Sign Language Production" (ECCV 2020)

Progressive Transformers for End-to-End Sign Language Production Source code for "Progressive Transformers for End-to-End Sign Language Production" (B

Progressive Coordinate Transforms for Monocular 3D Object Detection
Progressive Coordinate Transforms for Monocular 3D Object Detection

Progressive Coordinate Transforms for Monocular 3D Object Detection This repository is the official implementation of PCT. Introduction In this paper,

Pytorch implementation of the paper Progressive Growing of Points with Tree-structured Generators (BMVC 2021)
Pytorch implementation of the paper Progressive Growing of Points with Tree-structured Generators (BMVC 2021)

PGpoints Pytorch implementation of the paper Progressive Growing of Points with Tree-structured Generators (BMVC 2021) Hyeontae Son, Young Min Kim Pre

 MPRNet-Cloud-removal: Progressive cloud removal
MPRNet-Cloud-removal: Progressive cloud removal

MPRNet-Cloud-removal Progressive cloud removal Requirements 1.Pytorch = 1.0 2.Python 3 3.NVIDIA GPU + CUDA 9.0 4.Tensorboard Installation 1.Clone the

Official pytorch code for
Official pytorch code for "APP: Anytime Progressive Pruning"

APP: Anytime Progressive Pruning Diganta Misra1,2,3, Bharat Runwal2,4, Tianlong Chen5, Zhangyang Wang5, Irina Rish1,3 1 Mila - Quebec AI Institute,2 L

This is a model made out of Neural Network specifically a Convolutional Neural Network model
This is a model made out of Neural Network specifically a Convolutional Neural Network model

This is a model made out of Neural Network specifically a Convolutional Neural Network model. This was done with a pre-built dataset from the tensorflow and keras packages. There are other alternative libraries that can be used for this purpose, one of which is the PyTorch library.

This repository contains notebook implementations of the following Neural Process variants: Conditional Neural Processes (CNPs), Neural Processes (NPs), Attentive Neural Processes (ANPs).

The Neural Process Family This repository contains notebook implementations of the following Neural Process variants: Conditional Neural Processes (CN

Comments
  • bug:TypeError: Fetch argument

    bug:TypeError: Fetch argument

    hi , I got the following issues, when I running the program. Please help fix it :) thanks. Traceback (most recent call last): File "/home/amo2/git/prog_nn/prog_nn.py", line 195, in test_ProgNN() File "/home/amo2/git/prog_nn/prog_nn.py", line 154, in test_ProgNN feed_dict={col_0.o_n:fake1}) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 340, in run run_metadata_ptr) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 523, in _run processed_fetches = self._process_fetches(fetches) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 493, in _process_fetches % (subfetch, fetch, type(subfetch), str(e))) TypeError: Fetch argument [<tf.Tensor 'Placeholder:0' shape=(?, 128) dtype=float64>, <tf.Tensor 'Relu:0' shape=(?, 100) dtype=float64>, <tf.Tensor 'Relu_1:0' shape=(?, 64) dtype=float64>, <tf.Tensor 'Relu_2:0' shape=(?, 25) dtype=float64>, <tf.Tensor 'Softmax:0' shape=(?, 9) dtype=float64>] of [<tf.Tensor 'Placeholder:0' shape=(?, 128) dtype=float64>, <tf.Tensor 'Relu:0' shape=(?, 100) dtype=float64>, <tf.Tensor 'Relu_1:0' shape=(?, 64) dtype=float64>, <tf.Tensor 'Relu_2:0' shape=(?, 25) dtype=float64>, <tf.Tensor 'Softmax:0' shape=(?, 9) dtype=float64>] has invalid type <type 'list'>, must be a string or Tensor. (Can not convert a list into a Tensor or Operation.)

    opened by amoliu 3
  • Adapters are not implemented in the code.

    Adapters are not implemented in the code.

    Hi, your code is easy to understand, however, it seems that adapters are not implemented in the code. In the Progressive Neural Network, adapters are needed to improve initial conditioning and perform dimensionality reduction.

    image

    opened by GoingMyWay 0
Owner
SynPon
SynPon
PyTorch implementation of Progressive Growing of GANs for Improved Quality, Stability, and Variation.

PyTorch implementation of Progressive Growing of GANs for Improved Quality, Stability, and Variation. Warning: the master branch might collapse. To ob

null 559 Dec 14, 2022
Efficient Conformer: Progressive Downsampling and Grouped Attention for Automatic Speech Recognition

Efficient Conformer: Progressive Downsampling and Grouped Attention for Automatic Speech Recognition Official implementation of the Efficient Conforme

Maxime Burchi 145 Dec 30, 2022
Sparse Progressive Distillation: Resolving Overfitting under Pretrain-and-Finetune Paradigm

Sparse Progressive Distillation: Resolving Overfitting under Pretrain-and-Finetu

null 3 Dec 5, 2022
Compare outputs between layers written in Tensorflow and layers written in Pytorch

Compare outputs of Wasserstein GANs between TensorFlow vs Pytorch This is our testing module for the implementation of improved WGAN in Pytorch Prereq

Hung Nguyen 72 Dec 20, 2022
Multi-Stage Progressive Image Restoration

Multi-Stage Progressive Image Restoration Syed Waqas Zamir, Aditya Arora, Salman Khan, Munawar Hayat, Fahad Shahbaz Khan, Ming-Hsuan Yang, and Ling Sh

Syed Waqas Zamir 859 Dec 22, 2022
Progressive Domain Adaptation for Object Detection

Progressive Domain Adaptation for Object Detection Implementation of our paper Progressive Domain Adaptation for Object Detection, based on pytorch-fa

null 96 Nov 25, 2022
Code for Referring Image Segmentation via Cross-Modal Progressive Comprehension, CVPR2020.

CMPC-Refseg Code of our CVPR 2020 paper Referring Image Segmentation via Cross-Modal Progressive Comprehension. Shaofei Huang*, Tianrui Hui*, Si Liu,

spyflying 55 Dec 1, 2022
(AAAI 2021) Progressive One-shot Human Parsing

End-to-end One-shot Human Parsing This is the official repository for our two papers: Progressive One-shot Human Parsing (AAAI 2021) End-to-end One-sh

null 54 Dec 30, 2022
Official code of paper "PGT: A Progressive Method for Training Models on Long Videos" on CVPR2021

PGT Code for paper PGT: A Progressive Method for Training Models on Long Videos. Install Run pip install -r requirements.txt. Run python setup.py buil

Bo Pang 27 Mar 30, 2022