I have seen similar questions, but most involve preprocessing. Do the order in which the input are ordered have any importance. For example, say I have three features with three examples each such as:
[0, 0, 0, .5, .5, .5, 1, 1, 1]
Would it make any difference if they were ordered like this:
[0, .5, 1, 0, .5, 1, 0, .5, 1]
i.e does the order of the inputs have any effect at all?
Thanks