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
3
votes
1 answer

How are the bias neurons created in NEAT?

I am trying to implement simple NEAT. I read from various sources that there are 4 types of "nodes": input neurons, hidden neurons, output neurons and so-called bias neurons. I don't see which process may create bias neurons, that are depicted in…
3
votes
0 answers

Evolving Neural Network using NEAT python on Forex data

I am trying to implement an evolving neural network on time series Forex data where the model will receive as inputs 3 different exchange rates on a particular timeframe and the base currency will be the same in all 3 inputs (e.g. USD/CHF, USD/JPY…
Kusi
  • 785
  • 1
  • 10
  • 21
3
votes
2 answers

Gulp Browsersync task not reloading on file changes with new file structure

After changing my project to be organized into src/ and dist/ folders, my changes aren't being compiled and my browsersync task is no longer reloading the page. If I change the color of a div for instance, the color is not updated even if I stop and…
Oskar
  • 181
  • 2
  • 9
3
votes
1 answer

Bourbon Neat breakpoints not working on phone

I am trying to make a responsive website based on the Bourbon Neat grid. My media queries work perfectly when I am resizing the browser on my own computer to the size of a phone, yet when I load the site on my phone, none of the mobile changes…
David Mckee
  • 1,100
  • 3
  • 19
  • 35
3
votes
1 answer

Ember-cli Node.js - Using Neat and Bourbon

I'm not sure the correct way to include 'Neat' in an ember-cli application. I installed Bourbon using the ember-cli-bourbon addon, and then just @import "bourbon" in my scss file. Any suggestions?
Joel
  • 665
  • 2
  • 9
  • 23
3
votes
1 answer

adding >> after li, except for last li

I'm developing a breadcrumb like this:
Toontje
  • 1,415
  • 4
  • 25
  • 43
3
votes
2 answers

Bourbon - Sass::SyntaxError: File to import not found or unreadable: bourbon/bourbon

I recently installed Bourbon Neat but when I compile my Scss in Sublime Text 2 using Sass Build I get the following error: Sass::SyntaxError: File to import not found or unreadable: bourbon/bourbon. This is my scss file: @import…
user3358173
3
votes
1 answer

Difference between Disjoint and Excess genes in NEAT?

I was reading Stanley's paper but I couldn't figure out what exactly are Disjoint and Excess genes in NEAT. I understand they appear to be related in some particular way with the fact that all of them contain innovation numbers not pertaining to…
devoured elysium
  • 101,373
  • 131
  • 340
  • 557
2
votes
1 answer

NEAT Error - AttributeError: 'tuple' object has no attribute 'connections'

I'm currently trying to create a NEAT algorithm to solve FlappyBird but am coming across an error while running my code (see title). Currently I have set up my run function and my eval_genomes functions. I've simplified them to remove the pygame…
2
votes
1 answer

In NEAT, how are new nodes numbered if the same connection has been split before?

I'm working with NEAT right now and I have a few questions regarding the numbering of newly created nodes. My first assumption was that whenever a certain connection (identified by innovation number for example) is split, it should be split into the…
jhl
  • 31
  • 1
2
votes
0 answers

Java library unable to import from itself (netbeans, neuroph)

I have a project in which I use the neuroph library to create neural networks (http://neuroph.sourceforge.net/, version 2.96). I also wanted to use the neat preview library (https://sourceforge.net/projects/neuroph/files/NEAT-preview/, version 0.9),…
JKRP
  • 21
  • 3
2
votes
0 answers

What happens if you missconfigure a feedforwardnetwork as "feedforward = false"

In Python NEAT you can create Feedforward-Networks or Recurrent-Networks, but you can also configure the binary setting for Feedforward in the config-file. Now i'm uncertain what a Feedforward network with disabled feedforward would process. If…
JavaJawa
  • 45
  • 5
2
votes
2 answers

Feedforward Algorithm in NEAT (Neural Evolution of Augmenting Topologies)

I don’t understand how the NEAT algorithm takes inputs and then outputs numbers based on the connection genes, I am familiar with using matrixes in fixed topology neural networks to feedforward inputs, however as each node in NEAT has its own number…
2
votes
1 answer

Implementing NEAT python to retraining after each prediction

I would like to understand how to implement neat python such that it retrains after each prediction made, therefore the training set increases in size after each prediction. I'm trying to set up neat python through the configuration file to retrain…
Kusi
  • 785
  • 1
  • 10
  • 21
2
votes
1 answer

Directory Forbidden Neat Bourbon in Wordpress Editor

We are creating a theme on Wordpress that makes use of Neat Bourbon. On the frontend everything works great. On the backend we are trying to display the content the way it will look so we also call Neat Bourbon. Our issue is Neat bourbon throws an…
Kalman
  • 31
  • 3
1 2
3
20 21