Help with my training dataSKNN regression problemWhat ML/DL approach better suits this problem?Categorical Variable Reduction using NNTensorflow regression predicting 1 for all inputsNeural network accuracy for simple classificationSimple prediction with KerasTraining Accuracy stuck in KerasSteps taking too long to completeSolving an ODE using neural networks (via Tensorflow)Something is disastrously wrong with my neural network and what it's produced

std::unique_ptr of base class holding reference of derived class does not show warning in gcc compiler while naked pointer shows it. Why?

Why do real positive eigenvalues result in an unstable system? What about eigenvalues between 0 and 1? or 1?

What *exactly* is electrical current, voltage, and resistance?

Older movie/show about humans on derelict alien warship which refuels by passing through a star

Is there metaphorical meaning of "aus der Haft entlassen"?

Co-worker works way more than he should

Why must Chinese maps be obfuscated?

Is there really no use for MD5 anymore?

Does the damage from the Absorb Elements spell apply to your next attack, or to your first attack on your next turn?

Air bladders in bat-like skin wings for better lift?

Was Dennis Ritchie being too modest in this quote about C and Pascal?

A ​Note ​on ​N!

Can a stored procedure reference the database in which it is stored?

How can I wire a 9-position switch so that each position turns on one more LED than the one before?

Why is the underscore command _ useful?

Can a level 2 Warlock take one level in rogue, then continue advancing as a warlock?

Where was the County of Thurn und Taxis located?

Is Electric Central Heating worth it if using Solar Panels?

What does a straight horizontal line above a few notes, after a changed tempo mean?

Bayes factor vs P value

"My boss was furious with me and I have been fired" vs. "My boss was furious with me and I was fired"

What is purpose of DB Browser(dbbrowser.aspx) under admin tool?

"Whatever a Russian does, they end up making the Kalashnikov gun"? Are there any similar proverbs in English?

What is this word supposed to be?



Help with my training data


SKNN regression problemWhat ML/DL approach better suits this problem?Categorical Variable Reduction using NNTensorflow regression predicting 1 for all inputsNeural network accuracy for simple classificationSimple prediction with KerasTraining Accuracy stuck in KerasSteps taking too long to completeSolving an ODE using neural networks (via Tensorflow)Something is disastrously wrong with my neural network and what it's produced













1












$begingroup$


I'm working on my first NN following a tensorflow tut and trying to use my own data.
After about 80 attempts of formatting my data and trying to load it into a dataset to train I'm throwing the towel.



Here is how my data currently looks



syslog_data = [
[302014,0,0,63878,30,3,1], [302014,0,0,3891,0,0,0], [302014,0,0,15928,0,0,2], [305013,5,0,123,99999,0,3],
[302014,0,0,5185,0,0,0], [305013,5,0,123,99999,0,3], [302014,0,0,56085,0,0,0], [110002,4,2,50074,99999,0,4],


In this the last item in each list is the label.
If you can tell me if I need to reformat my data and how or just how to get it loaded into a dataset properly.



Thanks for any help or advice you can give



Here is the full code:



import tensorflow as tf
import numpy as np
from tensorflow.keras import layers
from . import syslog

print(tf.VERSION)
print(tf.keras.__version__)

model = tf.keras.Sequential()
# Adds a densely-connected layer with 64 units to the model:
model.add(layers.Dense(64, activation='relu'))
# Add another:
model.add(layers.Dense(64, activation='relu'))
# Add a softmax layer with 10 output units:
model.add(layers.Dense(10, activation='softmax'))

model.compile(optimizer=tf.train.AdamOptimizer(0.001),
loss='categorical_crossentropy',
metrics=['accuracy'])

dataset = tf.data.dataset.from_tensor_slices(syslog)

model.fit(dataset, epochs=10, steps_per_epoch=30)









share|improve this question









New contributor




Alex F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$











  • $begingroup$
    WElcome to Data Science SE! Which tutorial did you follow? What error are you actually getting? Have you read the Keras documentation? Or the relevant Tensorflow docs for from_tensor_slices?
    $endgroup$
    – n1k31t4
    1 hour ago










  • $begingroup$
    Ive followed about 15 :/ but this one is the most relevant tensorflow.org/guide/keras I have received a number of errors from different attempts. the most recent is this - got shape [8972], but wanted [8972, 1]. from this code dataset = tf.data.Dataset.from_tensor_slices((data, labels)). Im pretty lost on what my training data should look like and how i should import it.
    $endgroup$
    – Alex F
    1 hour ago










  • $begingroup$
    I can reformat as needed, I just dont know what to do
    $endgroup$
    – Alex F
    1 hour ago















1












$begingroup$


I'm working on my first NN following a tensorflow tut and trying to use my own data.
After about 80 attempts of formatting my data and trying to load it into a dataset to train I'm throwing the towel.



Here is how my data currently looks



syslog_data = [
[302014,0,0,63878,30,3,1], [302014,0,0,3891,0,0,0], [302014,0,0,15928,0,0,2], [305013,5,0,123,99999,0,3],
[302014,0,0,5185,0,0,0], [305013,5,0,123,99999,0,3], [302014,0,0,56085,0,0,0], [110002,4,2,50074,99999,0,4],


In this the last item in each list is the label.
If you can tell me if I need to reformat my data and how or just how to get it loaded into a dataset properly.



Thanks for any help or advice you can give



Here is the full code:



import tensorflow as tf
import numpy as np
from tensorflow.keras import layers
from . import syslog

print(tf.VERSION)
print(tf.keras.__version__)

model = tf.keras.Sequential()
# Adds a densely-connected layer with 64 units to the model:
model.add(layers.Dense(64, activation='relu'))
# Add another:
model.add(layers.Dense(64, activation='relu'))
# Add a softmax layer with 10 output units:
model.add(layers.Dense(10, activation='softmax'))

model.compile(optimizer=tf.train.AdamOptimizer(0.001),
loss='categorical_crossentropy',
metrics=['accuracy'])

dataset = tf.data.dataset.from_tensor_slices(syslog)

model.fit(dataset, epochs=10, steps_per_epoch=30)









share|improve this question









New contributor




Alex F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$











  • $begingroup$
    WElcome to Data Science SE! Which tutorial did you follow? What error are you actually getting? Have you read the Keras documentation? Or the relevant Tensorflow docs for from_tensor_slices?
    $endgroup$
    – n1k31t4
    1 hour ago










  • $begingroup$
    Ive followed about 15 :/ but this one is the most relevant tensorflow.org/guide/keras I have received a number of errors from different attempts. the most recent is this - got shape [8972], but wanted [8972, 1]. from this code dataset = tf.data.Dataset.from_tensor_slices((data, labels)). Im pretty lost on what my training data should look like and how i should import it.
    $endgroup$
    – Alex F
    1 hour ago










  • $begingroup$
    I can reformat as needed, I just dont know what to do
    $endgroup$
    – Alex F
    1 hour ago













1












1








1





$begingroup$


I'm working on my first NN following a tensorflow tut and trying to use my own data.
After about 80 attempts of formatting my data and trying to load it into a dataset to train I'm throwing the towel.



Here is how my data currently looks



syslog_data = [
[302014,0,0,63878,30,3,1], [302014,0,0,3891,0,0,0], [302014,0,0,15928,0,0,2], [305013,5,0,123,99999,0,3],
[302014,0,0,5185,0,0,0], [305013,5,0,123,99999,0,3], [302014,0,0,56085,0,0,0], [110002,4,2,50074,99999,0,4],


In this the last item in each list is the label.
If you can tell me if I need to reformat my data and how or just how to get it loaded into a dataset properly.



Thanks for any help or advice you can give



Here is the full code:



import tensorflow as tf
import numpy as np
from tensorflow.keras import layers
from . import syslog

print(tf.VERSION)
print(tf.keras.__version__)

model = tf.keras.Sequential()
# Adds a densely-connected layer with 64 units to the model:
model.add(layers.Dense(64, activation='relu'))
# Add another:
model.add(layers.Dense(64, activation='relu'))
# Add a softmax layer with 10 output units:
model.add(layers.Dense(10, activation='softmax'))

model.compile(optimizer=tf.train.AdamOptimizer(0.001),
loss='categorical_crossentropy',
metrics=['accuracy'])

dataset = tf.data.dataset.from_tensor_slices(syslog)

model.fit(dataset, epochs=10, steps_per_epoch=30)









share|improve this question









New contributor




Alex F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$




I'm working on my first NN following a tensorflow tut and trying to use my own data.
After about 80 attempts of formatting my data and trying to load it into a dataset to train I'm throwing the towel.



Here is how my data currently looks



syslog_data = [
[302014,0,0,63878,30,3,1], [302014,0,0,3891,0,0,0], [302014,0,0,15928,0,0,2], [305013,5,0,123,99999,0,3],
[302014,0,0,5185,0,0,0], [305013,5,0,123,99999,0,3], [302014,0,0,56085,0,0,0], [110002,4,2,50074,99999,0,4],


In this the last item in each list is the label.
If you can tell me if I need to reformat my data and how or just how to get it loaded into a dataset properly.



Thanks for any help or advice you can give



Here is the full code:



import tensorflow as tf
import numpy as np
from tensorflow.keras import layers
from . import syslog

print(tf.VERSION)
print(tf.keras.__version__)

model = tf.keras.Sequential()
# Adds a densely-connected layer with 64 units to the model:
model.add(layers.Dense(64, activation='relu'))
# Add another:
model.add(layers.Dense(64, activation='relu'))
# Add a softmax layer with 10 output units:
model.add(layers.Dense(10, activation='softmax'))

model.compile(optimizer=tf.train.AdamOptimizer(0.001),
loss='categorical_crossentropy',
metrics=['accuracy'])

dataset = tf.data.dataset.from_tensor_slices(syslog)

model.fit(dataset, epochs=10, steps_per_epoch=30)






python tensorflow






share|improve this question









New contributor




Alex F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Alex F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 1 hour ago









Juan Esteban de la Calle

69122




69122






New contributor




Alex F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 2 hours ago









Alex FAlex F

83




83




New contributor




Alex F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Alex F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Alex F is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











  • $begingroup$
    WElcome to Data Science SE! Which tutorial did you follow? What error are you actually getting? Have you read the Keras documentation? Or the relevant Tensorflow docs for from_tensor_slices?
    $endgroup$
    – n1k31t4
    1 hour ago










  • $begingroup$
    Ive followed about 15 :/ but this one is the most relevant tensorflow.org/guide/keras I have received a number of errors from different attempts. the most recent is this - got shape [8972], but wanted [8972, 1]. from this code dataset = tf.data.Dataset.from_tensor_slices((data, labels)). Im pretty lost on what my training data should look like and how i should import it.
    $endgroup$
    – Alex F
    1 hour ago










  • $begingroup$
    I can reformat as needed, I just dont know what to do
    $endgroup$
    – Alex F
    1 hour ago
















  • $begingroup$
    WElcome to Data Science SE! Which tutorial did you follow? What error are you actually getting? Have you read the Keras documentation? Or the relevant Tensorflow docs for from_tensor_slices?
    $endgroup$
    – n1k31t4
    1 hour ago










  • $begingroup$
    Ive followed about 15 :/ but this one is the most relevant tensorflow.org/guide/keras I have received a number of errors from different attempts. the most recent is this - got shape [8972], but wanted [8972, 1]. from this code dataset = tf.data.Dataset.from_tensor_slices((data, labels)). Im pretty lost on what my training data should look like and how i should import it.
    $endgroup$
    – Alex F
    1 hour ago










  • $begingroup$
    I can reformat as needed, I just dont know what to do
    $endgroup$
    – Alex F
    1 hour ago















$begingroup$
WElcome to Data Science SE! Which tutorial did you follow? What error are you actually getting? Have you read the Keras documentation? Or the relevant Tensorflow docs for from_tensor_slices?
$endgroup$
– n1k31t4
1 hour ago




$begingroup$
WElcome to Data Science SE! Which tutorial did you follow? What error are you actually getting? Have you read the Keras documentation? Or the relevant Tensorflow docs for from_tensor_slices?
$endgroup$
– n1k31t4
1 hour ago












$begingroup$
Ive followed about 15 :/ but this one is the most relevant tensorflow.org/guide/keras I have received a number of errors from different attempts. the most recent is this - got shape [8972], but wanted [8972, 1]. from this code dataset = tf.data.Dataset.from_tensor_slices((data, labels)). Im pretty lost on what my training data should look like and how i should import it.
$endgroup$
– Alex F
1 hour ago




$begingroup$
Ive followed about 15 :/ but this one is the most relevant tensorflow.org/guide/keras I have received a number of errors from different attempts. the most recent is this - got shape [8972], but wanted [8972, 1]. from this code dataset = tf.data.Dataset.from_tensor_slices((data, labels)). Im pretty lost on what my training data should look like and how i should import it.
$endgroup$
– Alex F
1 hour ago












$begingroup$
I can reformat as needed, I just dont know what to do
$endgroup$
– Alex F
1 hour ago




$begingroup$
I can reformat as needed, I just dont know what to do
$endgroup$
– Alex F
1 hour ago










2 Answers
2






active

oldest

votes


















2












$begingroup$

There are a couple of problems and things you might want to add to your existing script.



Below I separate your example data into two NumPy arrays:



  • input values x

  • labels y

It is also important to make sure they are of type float32, because Tensorflow will complain if you pass it integers (as they otherwise would be interpreted).



The following works for me, the model trains to completion:



import numpy as np
import tensorflow as tf
from tensorflow.keras import layers

syslog_data = [
[302014, 0, 0, 63878, 30, 3, 1],
[302014, 0, 0, 3891, 0, 0, 0],
[302014, 0, 0, 15928, 0, 0, 2],
[305013, 5, 0, 123, 99999, 0, 3],
[302014, 0, 0, 5185, 0, 0, 0],
[305013, 5, 0, 123, 99999, 0, 3],
[302014, 0, 0, 56085, 0, 0, 0],
[110002, 4, 2, 50074, 99999, 0, 4],
]

print(tf.VERSION)
print(tf.keras.__version__)

x = np.array([arr[:-1] for arr in syslog_data], dtype=np.float32)
y = np.array([arr[-1:] for arr in syslog_data], dtype=np.float32)

model = tf.keras.Sequential()
# Adds a densely-connected layer with 64 units to the model:
model.add(layers.Dense(64, activation="relu"))
# Add another:
model.add(layers.Dense(64, activation="relu"))
# Add a softmax layer with 10 output units:
model.add(layers.Dense(10, activation="softmax"))

model.compile(optimizer=tf.train.AdamOptimizer(0.001), loss="categorical_crossentropy", metrics=["accuracy"])

model.fit(x, y, epochs=10, steps_per_epoch=30)





share|improve this answer









$endgroup$












  • $begingroup$
    I know we just met but I love you
    $endgroup$
    – Alex F
    1 hour ago


















1












$begingroup$

import keras
import numpy as np
full_data = np.array(syslog_data)
X = full_data[:,:6]
Y = full_data[:,6]
# Convert labels to categorical one-hot encoding
one_hot_labels = keras.utils.to_categorical(Y, num_classes=10)

model.fit(X,Y, epochs=10, steps_per_epoch=30)


Does this work? I think I might be misunderstanding the problem.






share|improve this answer









$endgroup$












  • $begingroup$
    I didnt under stand that it needed to be an array, thank you for replying
    $endgroup$
    – Alex F
    1 hour ago











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "557"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);






Alex F is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f50934%2fhelp-with-my-training-data%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









2












$begingroup$

There are a couple of problems and things you might want to add to your existing script.



Below I separate your example data into two NumPy arrays:



  • input values x

  • labels y

It is also important to make sure they are of type float32, because Tensorflow will complain if you pass it integers (as they otherwise would be interpreted).



The following works for me, the model trains to completion:



import numpy as np
import tensorflow as tf
from tensorflow.keras import layers

syslog_data = [
[302014, 0, 0, 63878, 30, 3, 1],
[302014, 0, 0, 3891, 0, 0, 0],
[302014, 0, 0, 15928, 0, 0, 2],
[305013, 5, 0, 123, 99999, 0, 3],
[302014, 0, 0, 5185, 0, 0, 0],
[305013, 5, 0, 123, 99999, 0, 3],
[302014, 0, 0, 56085, 0, 0, 0],
[110002, 4, 2, 50074, 99999, 0, 4],
]

print(tf.VERSION)
print(tf.keras.__version__)

x = np.array([arr[:-1] for arr in syslog_data], dtype=np.float32)
y = np.array([arr[-1:] for arr in syslog_data], dtype=np.float32)

model = tf.keras.Sequential()
# Adds a densely-connected layer with 64 units to the model:
model.add(layers.Dense(64, activation="relu"))
# Add another:
model.add(layers.Dense(64, activation="relu"))
# Add a softmax layer with 10 output units:
model.add(layers.Dense(10, activation="softmax"))

model.compile(optimizer=tf.train.AdamOptimizer(0.001), loss="categorical_crossentropy", metrics=["accuracy"])

model.fit(x, y, epochs=10, steps_per_epoch=30)





share|improve this answer









$endgroup$












  • $begingroup$
    I know we just met but I love you
    $endgroup$
    – Alex F
    1 hour ago















2












$begingroup$

There are a couple of problems and things you might want to add to your existing script.



Below I separate your example data into two NumPy arrays:



  • input values x

  • labels y

It is also important to make sure they are of type float32, because Tensorflow will complain if you pass it integers (as they otherwise would be interpreted).



The following works for me, the model trains to completion:



import numpy as np
import tensorflow as tf
from tensorflow.keras import layers

syslog_data = [
[302014, 0, 0, 63878, 30, 3, 1],
[302014, 0, 0, 3891, 0, 0, 0],
[302014, 0, 0, 15928, 0, 0, 2],
[305013, 5, 0, 123, 99999, 0, 3],
[302014, 0, 0, 5185, 0, 0, 0],
[305013, 5, 0, 123, 99999, 0, 3],
[302014, 0, 0, 56085, 0, 0, 0],
[110002, 4, 2, 50074, 99999, 0, 4],
]

print(tf.VERSION)
print(tf.keras.__version__)

x = np.array([arr[:-1] for arr in syslog_data], dtype=np.float32)
y = np.array([arr[-1:] for arr in syslog_data], dtype=np.float32)

model = tf.keras.Sequential()
# Adds a densely-connected layer with 64 units to the model:
model.add(layers.Dense(64, activation="relu"))
# Add another:
model.add(layers.Dense(64, activation="relu"))
# Add a softmax layer with 10 output units:
model.add(layers.Dense(10, activation="softmax"))

model.compile(optimizer=tf.train.AdamOptimizer(0.001), loss="categorical_crossentropy", metrics=["accuracy"])

model.fit(x, y, epochs=10, steps_per_epoch=30)





share|improve this answer









$endgroup$












  • $begingroup$
    I know we just met but I love you
    $endgroup$
    – Alex F
    1 hour ago













2












2








2





$begingroup$

There are a couple of problems and things you might want to add to your existing script.



Below I separate your example data into two NumPy arrays:



  • input values x

  • labels y

It is also important to make sure they are of type float32, because Tensorflow will complain if you pass it integers (as they otherwise would be interpreted).



The following works for me, the model trains to completion:



import numpy as np
import tensorflow as tf
from tensorflow.keras import layers

syslog_data = [
[302014, 0, 0, 63878, 30, 3, 1],
[302014, 0, 0, 3891, 0, 0, 0],
[302014, 0, 0, 15928, 0, 0, 2],
[305013, 5, 0, 123, 99999, 0, 3],
[302014, 0, 0, 5185, 0, 0, 0],
[305013, 5, 0, 123, 99999, 0, 3],
[302014, 0, 0, 56085, 0, 0, 0],
[110002, 4, 2, 50074, 99999, 0, 4],
]

print(tf.VERSION)
print(tf.keras.__version__)

x = np.array([arr[:-1] for arr in syslog_data], dtype=np.float32)
y = np.array([arr[-1:] for arr in syslog_data], dtype=np.float32)

model = tf.keras.Sequential()
# Adds a densely-connected layer with 64 units to the model:
model.add(layers.Dense(64, activation="relu"))
# Add another:
model.add(layers.Dense(64, activation="relu"))
# Add a softmax layer with 10 output units:
model.add(layers.Dense(10, activation="softmax"))

model.compile(optimizer=tf.train.AdamOptimizer(0.001), loss="categorical_crossentropy", metrics=["accuracy"])

model.fit(x, y, epochs=10, steps_per_epoch=30)





share|improve this answer









$endgroup$



There are a couple of problems and things you might want to add to your existing script.



Below I separate your example data into two NumPy arrays:



  • input values x

  • labels y

It is also important to make sure they are of type float32, because Tensorflow will complain if you pass it integers (as they otherwise would be interpreted).



The following works for me, the model trains to completion:



import numpy as np
import tensorflow as tf
from tensorflow.keras import layers

syslog_data = [
[302014, 0, 0, 63878, 30, 3, 1],
[302014, 0, 0, 3891, 0, 0, 0],
[302014, 0, 0, 15928, 0, 0, 2],
[305013, 5, 0, 123, 99999, 0, 3],
[302014, 0, 0, 5185, 0, 0, 0],
[305013, 5, 0, 123, 99999, 0, 3],
[302014, 0, 0, 56085, 0, 0, 0],
[110002, 4, 2, 50074, 99999, 0, 4],
]

print(tf.VERSION)
print(tf.keras.__version__)

x = np.array([arr[:-1] for arr in syslog_data], dtype=np.float32)
y = np.array([arr[-1:] for arr in syslog_data], dtype=np.float32)

model = tf.keras.Sequential()
# Adds a densely-connected layer with 64 units to the model:
model.add(layers.Dense(64, activation="relu"))
# Add another:
model.add(layers.Dense(64, activation="relu"))
# Add a softmax layer with 10 output units:
model.add(layers.Dense(10, activation="softmax"))

model.compile(optimizer=tf.train.AdamOptimizer(0.001), loss="categorical_crossentropy", metrics=["accuracy"])

model.fit(x, y, epochs=10, steps_per_epoch=30)






share|improve this answer












share|improve this answer



share|improve this answer










answered 1 hour ago









n1k31t4n1k31t4

6,6912421




6,6912421











  • $begingroup$
    I know we just met but I love you
    $endgroup$
    – Alex F
    1 hour ago
















  • $begingroup$
    I know we just met but I love you
    $endgroup$
    – Alex F
    1 hour ago















$begingroup$
I know we just met but I love you
$endgroup$
– Alex F
1 hour ago




$begingroup$
I know we just met but I love you
$endgroup$
– Alex F
1 hour ago











1












$begingroup$

import keras
import numpy as np
full_data = np.array(syslog_data)
X = full_data[:,:6]
Y = full_data[:,6]
# Convert labels to categorical one-hot encoding
one_hot_labels = keras.utils.to_categorical(Y, num_classes=10)

model.fit(X,Y, epochs=10, steps_per_epoch=30)


Does this work? I think I might be misunderstanding the problem.






share|improve this answer









$endgroup$












  • $begingroup$
    I didnt under stand that it needed to be an array, thank you for replying
    $endgroup$
    – Alex F
    1 hour ago















1












$begingroup$

import keras
import numpy as np
full_data = np.array(syslog_data)
X = full_data[:,:6]
Y = full_data[:,6]
# Convert labels to categorical one-hot encoding
one_hot_labels = keras.utils.to_categorical(Y, num_classes=10)

model.fit(X,Y, epochs=10, steps_per_epoch=30)


Does this work? I think I might be misunderstanding the problem.






share|improve this answer









$endgroup$












  • $begingroup$
    I didnt under stand that it needed to be an array, thank you for replying
    $endgroup$
    – Alex F
    1 hour ago













1












1








1





$begingroup$

import keras
import numpy as np
full_data = np.array(syslog_data)
X = full_data[:,:6]
Y = full_data[:,6]
# Convert labels to categorical one-hot encoding
one_hot_labels = keras.utils.to_categorical(Y, num_classes=10)

model.fit(X,Y, epochs=10, steps_per_epoch=30)


Does this work? I think I might be misunderstanding the problem.






share|improve this answer









$endgroup$



import keras
import numpy as np
full_data = np.array(syslog_data)
X = full_data[:,:6]
Y = full_data[:,6]
# Convert labels to categorical one-hot encoding
one_hot_labels = keras.utils.to_categorical(Y, num_classes=10)

model.fit(X,Y, epochs=10, steps_per_epoch=30)


Does this work? I think I might be misunderstanding the problem.







share|improve this answer












share|improve this answer



share|improve this answer










answered 1 hour ago









Andy MAndy M

1013




1013











  • $begingroup$
    I didnt under stand that it needed to be an array, thank you for replying
    $endgroup$
    – Alex F
    1 hour ago
















  • $begingroup$
    I didnt under stand that it needed to be an array, thank you for replying
    $endgroup$
    – Alex F
    1 hour ago















$begingroup$
I didnt under stand that it needed to be an array, thank you for replying
$endgroup$
– Alex F
1 hour ago




$begingroup$
I didnt under stand that it needed to be an array, thank you for replying
$endgroup$
– Alex F
1 hour ago










Alex F is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















Alex F is a new contributor. Be nice, and check out our Code of Conduct.












Alex F is a new contributor. Be nice, and check out our Code of Conduct.











Alex F is a new contributor. Be nice, and check out our Code of Conduct.














Thanks for contributing an answer to Data Science Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f50934%2fhelp-with-my-training-data%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

François Viète Contents Biography Work and thought Bibliography See also Notes Further reading External links Navigation menup. 21Google Bookspp. 75–77Google BooksDe thou (from University of Saint Andrews)ArchivedGoogle BooksGoogle BooksGoogle BooksGoogle booksGoogle Bookscc-parthenay.frL'histoire universelle (fr)Universal History (en)ArchivedAdsabs.harvard.eduPagesperso-orange.frArchive.orgChikara Sasaki. Descartes' mathematical thought p.259Google BooksGoogle BooksGoogle Bookspp. 152 and onwardGoogle BooksGoogle BooksScribd.comGoogle Books1257-7979Google BooksGoogle BooksGoogle BooksGoogle BooksGoogle BooksGoogle BooksGallica.bnf.frGoogle BooksGoogle Books"François Viète"Francois Viète: Father of Modern Algebraic NotationThe Lawyer and the GamblerAbout TarporleySite de Jean-Paul GuichardL'algèbre nouvelle"About the Harmonicon"cb120511976(data)1188044800000 0001 0913 5903n82164680ola2013766880073431702w6vt1sb70287374827140948071409480