Questions tagged [neat]

Neat is an open source semantic grid framework built on top of Sass and Bourbon.

What is it about?

Neat is a semantic grid framework built on top of Sass and Bourbon. It is simple enough to get you up and running in minutes, and powerful enough to handle any responsive layout you can dream of.

Why another grid framework?

Because we are not happy with other frameworks. We built Neat with the aim of promoting clean and semantic markup; it relies entirely on Sass mixins and does not pollute your HTML with presentation classes and extra wrapping div's.

It also aims to stay as lightweight as possible; just enough to handle the most common grid uses in modern Web design.

Is it responsive?

Yes. You can even change the grid settings in a specific breakpoint.

Alright. How do I get started?

Install Neat and its dependencies, read the documentation and check the examples page if you get lost. If you want to use Neat on your Rails app, there is a gem for that. Feedback? If you think something is broken or can be improved, fork the repo. You can also tweet your questions or suggestions at https://twitter.com/kaishin and https://twitter.com/kylefiedler.

Bourbon and Neat are maintained and funded by thoughtbot, inc.

Links

Related tags

305 questions
0
votes
0 answers

NEAT - population number varies every generation

I'm trying to implement my own neat implementation and I can't get myself to understand how speciation works I tried my best to follow the pesudocode I found in this paper (start of page 13) but I'm think I'm doing it really wrong but I don't…
0
votes
0 answers

Flappy Bird (NEAT) AI outputs Going in the wrong direction

I made flappy using the NEAT AI and the I finally got the game to run with NEAT. The problem is that with the 100 birds I made their either going diagonally up or down and not going through the pipes at all. in the part of my code where I define the…
Alec Smith
  • 33
  • 4
0
votes
0 answers

get generation number in NEAT algorithm

I'm developing a game using PyGame and trying to show info on the screen while the AI is learning, one of the info I want to show is the generation number next to the genome number (i got the genome number already) but still I can't find a way to…
Mahfouz
  • 31
  • 6
0
votes
0 answers

NEAT Algorithm on Snake-Game only makes snakes go in circles

I'm trying to implement NEAT algorithm to a snake game i coded. However, it doesn't work, and the snakes just go around non-stop. The last thing i try, was to implement some sort of "danger or food check", to tell the snake if the food was near or…
dubidu
  • 1
  • 3
0
votes
1 answer

Neat-python FeedForwordNetwork.activate takes 2 positional arguments but 7 were given even though config file shows 6

When I ran my neat code I got this error in FeedForwardNetwork.activate() : output = nets[x - 2].activate(player_.red_x, player_.red_y, player_.blue_x, player_.blue_y, player_.catcher, TypeError: FeedForwardNetwork.activate() takes 2 positional…
Bryan
  • 25
  • 7
0
votes
0 answers

Neat implementation problem in python, robot not going straight

I have a problem with the results im getting in python with NEAT algorithm, using NEAT-python library. Im training robots to go in a straight line, but the problem is, at the end of a track image im using, my robot model seems to evolve to turn to…
0
votes
1 answer

Python: How to ensure you have imported the correct configuration file

I am currently debugging a script and i believe the issue is the configuration file not being read (jupyter notebook). I can confirm both the script and the .config file is located in the below…
0
votes
1 answer

Neat-Python: AttributeError: module 'neat' has no attribute 'Config'

I'm having problems with neat-python version 0.92 and python version 3.9.5 (64 bit) on visual studio code. I keep getting the error: AttributeError: module 'neat' has no attribute 'Config' The error comes from def run(config_file): # Load the…
Fantomet
  • 64
  • 6
0
votes
1 answer

NEAT: how does crossover occur for species with only one member

So, I'm trying to implement the NEAT(Neuroevolution of augmenting topologies) algorithm and have stumbled into a problem. How are networks in species with only one member crossed over? One solution I came up with is to perform inter-species…
RandomPigYT
  • 47
  • 1
  • 6
0
votes
1 answer

NEAT neural network - Input and Output activation functions

TLTR; Does NEAT algorithm allow it's input/output layers to also evolve activation functions, or only uses identity? I'm working on a custom NeuralNet, largely inspired by the implementation of NEAT (NeuroEvolution of Augmenting Topologies). As far…
lj h
  • 107
  • 1
  • 8
0
votes
1 answer

How to best write a long list of "or" "and" "not" operators?

I am using Python/Openpyxl to search through strings in an Excel spreadsheet and sum up the numerical values. How do I write/format my script to have multiple OR, NOT, AND operators? (Sorry I appreciate this is probably a very basic question, but I…
0
votes
1 answer

Complexity of individual in NEAT-Python

When I was programming with NEAT-Python and finishing my experiment I got this message about an individual from the NEAT reporter. What do the numbers after complexity mean?
Eden
  • 61
  • 5
0
votes
1 answer

NEAT Implementation - code preparation. problem with creating multiple objects

I have created simple game. Now I want to implement NEAT to learn and control my game. I followed this tutorial however I found problems. As part of the game preparation,the author on YT modified his game to create a population of birds. In my case…
dan3el
  • 1
  • 1
0
votes
1 answer

Bigcartel neat theme

I am currently working on customising the welcome page for my Bigcartel site. I am using the Neat theme and would like to remove the grid filter that appears over the slideshow to appear clean. I was wondering if it's possible in Big Cartel and what…
0
votes
2 answers

TypeError: not supported between instances of 'NoneType' and 'float'

I am doing flappyBird game with neat from Tech with Tim tutorial and I created self.type inside Bird Class which means that bird is controllable by keyboard input or neat class, but I am getting this error after finish last generation: …