UNPKG

neataptic

Version:

Architecture-free neural network library with genetic algorithm implementations

178 lines (112 loc) 6.03 kB
<html> <head> <title>Neataptic.js - Articles</title> <!-- Meta data --> <meta charset="UTF-8"> <meta name="description" content="Articles featuring projects that were created with Neataptic"> <meta name="keywords" content="Neataptic, JavaScript, library"> <meta name="author" content="Thomas Wagenaar"> <!-- CSS --> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="../custom.css"> <!-- Favicon --> <link rel="shortcut icon" href="http://i.imgur.com/rPZtAOc.png"> <!-- Fonts --> <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet"> <!-- Google Analytics --> <script async> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-51480408-2', 'auto'); ga('send', 'pageview'); </script> <!-- Scripts --> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], processEscapes: true } }); </script> <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> </head> <body> <!-- Fixed navbar --> <nav class="navbar navbar-default navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href=".."><p class="brand">Neataptic</p></a> </div> <div id="navbar" class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li class="current active"><a href="..">Home</a></li> <li class="current"><a href="../docs/">Docs</a></li> <li class="current"><a href="./">Articles</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="https://github.com/wagenaartje/neataptic" target="blank"><i class="fa fa-github fa-1x"></i><b> GITHUB</b></a></li> </ul> </div> </div> </nav> <div class="container" style="margin-top: 60px"> <div class="row"> <!-- Sidebar --> <div class="col-sm-2 col-md-2 col-lg-2"> <ul id="sidebar" class="nav"> <li class=""> <a href="neuroevolution/">Neuroevolution</a> </li> <li class=""> <a href="targetseeking/">Target-seeking AI</a> </li> <li class=""> <a href="agario/">Agar.io AI</a> </li> <li class=""> <a href="classifycolors/">Classify colors</a> </li> <li class=""> <a href="playground/">Playground</a> </li> </ul> </div> <!-- Content --> <div class="col-sm-10 col-md-10 col-lg-10 content"> <h1 style="margin-bottom: 0px;">Articles</h1> <p><a style="text-decoration: none" href="https://github.com/wagenaartje/neataptic/edit/master/mkdocs/templates/articles\index.md"><i class="fa fa-github fa-1x"></i> Edit on Github</a></p> <hr> <p>Welcome to the articles page! Every now and then, articles will be posted here showing for what kind of projects Neataptic <em>could</em> be used. Neataptic is excellent for the development of AI for browser games for example.</p> <p>If you want to post your own article here, feel free to create a pull request or an isse on the <a href="https://github.com/wagenaartje/neataptic">repo page</a>!</p> </div> </div> </div> <!-- Javascript (only for blogs) --> <script> $("table").each(function(){ $(this).addClass('table table-striped'); }); $(".current").each(function(){ var text = $(this).text().toLowerCase(); if(window.location.pathname.indexOf(text) >= 0){ $('.active').removeClass('active'); $(this).addClass('active'); } }) </script> </body>