V
V
Voprosium2020-10-10 23:16:03
Python
Voprosium, 2020-10-10 23:16:03

How to do unsupervised learning in tensorflow python?

Good evening, how to do unsupervised learning in tensorflow? If I do not betray the y parameter, then I get an error that there is not enough output, what should I do?

Here is the training code
model.fit(x_train,
         epochs=20,
         batch_size=128,
         validation_split=0.1,
         verbose=1)

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
dmshar, 2020-10-11
@Voprosium

What model do you have? Are we supposed to guess?
Well, let's say that if you are learning without a teacher and Tensorflow, then you are working with Autoencoder.
Here are some good tutorials:
https://www.tensorflow.org/tutorials/generative/au...
https://www.pyimagesearch.com/2020/02/17/autoencod...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question