kanchi12P

kanchi12P

Geek Repo

Github PK Tool:Github PK Tool


Organizations
CodeFlowOrg

kanchi12P's starred repositories

mindsdb

The platform for building AI from enterprise data

Language:PythonLicense:NOASSERTIONStargazers:25939Issues:0Issues:0

MNIST_GAN

In this notebook, we'll be building a generative adversarial network (GAN) trained on the MNIST dataset. From this, we'll be able to generate new handwritten digits! GANs were first reported on in 2014 from Ian Goodfellow and others in Yoshua Bengio's lab. Since then, GANs have exploded in popularity. Here are a few examples to check out: Pix2Pix CycleGAN & Pix2Pix in PyTorch, Jun-Yan Zhu A list of generative models The idea behind GANs is that you have two networks, a generator 𝐺 and a discriminator 𝐷 , competing against each other. The generator makes "fake" data to pass to the discriminator. The discriminator also sees real training data and predicts if the data it's received is real or fake. The generator is trained to fool the discriminator, it wants to output data that looks as close as possible to real, training data. The discriminator is a classifier that is trained to figure out which data is real and which is fake. What ends up happening is that the generator learns to make data that is indistinguishable from real data to the discriminator. The general structure of a GAN is shown in the diagram above, using MNIST images as data. The latent sample is a random vector that the generator uses to construct its fake images. This is often called a latent vector and that vector space is called latent space. As the generator trains, it figures out how to map latent vectors to recognizable images that can fool the discriminator. If you're interested in generating only new images, you can throw out the discriminator after training. In this notebook, I'll show you how to define and train these adversarial networks in PyTorch and generate new images!

Language:Jupyter NotebookLicense:MITStargazers:25Issues:0Issues:0

GAN-in-keras-on-mnist

A GAN approach in keras on the mnist dataset using only MLP's

Language:Jupyter NotebookStargazers:16Issues:0Issues:0

Keras-GAN

Keras implementations of Generative Adversarial Networks.

Language:PythonLicense:MITStargazers:9167Issues:0Issues:0

DBMS_SQL-Notes

DBMS_SQL Notes

License:MITStargazers:652Issues:0Issues:0

Computer_science_fundamentals

Computer science fundamentals

License:MITStargazers:28Issues:0Issues:0

Andrew-NG-Notes

This is Andrew NG Coursera Handwritten Notes.

Language:Jupyter NotebookStargazers:2440Issues:0Issues:0

DSA-Bootcamp-Java

This repository consists of the code samples, assignments, and notes for the Java data structures & algorithms + interview preparation bootcamp of WeMakeDevs.

Language:JavaStargazers:16351Issues:0Issues:0

Competitive-Programming-Resources

Competitive Programming & System Design Resources.

License:MITStargazers:3154Issues:0Issues:0

competitive-programming

A one-stop Destination✏️ for all your Competitive Programming Resources.📗📕 Refer CONTRIBUTING.md for contributions

Language:C++Stargazers:645Issues:0Issues:0

Data-Structures-and-Algorithms

A repository that contains all the Data Structures and Algorithms concepts and their implementation in several ways, programming questions and Interview questions. The main aim of this repository is to help students who are learning Data Structures and Algorithms or preparing for an interview.

Language:JavaLicense:GPL-3.0Stargazers:981Issues:0Issues:0
Language:JavaScriptStargazers:6Issues:0Issues:0

github-readme-stats

:zap: Dynamically generated stats for your github readmes

Language:JavaScriptLicense:MITStargazers:67207Issues:0Issues:0

nerdamer

a symbolic math expression evaluator for javascript

Language:JavaScriptLicense:MITStargazers:512Issues:0Issues:0

diff.js

Javascript library with functions for differentiation, integration and for finding local minima and maxima

Language:JavaScriptLicense:MITStargazers:21Issues:0Issues:0

Graphing-Calculator

Graphing Calculator written in Python.

Language:PythonStargazers:5Issues:0Issues:0

graphing-calculator

Basic graphing calculator application in react

Language:TypeScriptLicense:GPL-3.0Stargazers:10Issues:0Issues:0