We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Antons,
When i run this notebook, i have this error at Cell 22:
Cell 22 :
vime_s = tf.keras.models.load_model('./vime_self') # Sequential model to produce embeddings encoding_model = Sequential( [ Input( num_features), vime_s.encoder ] ) dense_model = Sequential( [ Input(num_features), Dense(num_features, activation="relu"), ] ) # Create corrupted sample samples = X_val_unlabelled.sample(10) sample_corrupted = generate_k_corrupted( x=samples, k=5, p_m=0.4 ) val_encoding = encoding_model.predict(sample_corrupted, batch_size=batch_size) random_encoding = dense_model.predict(sample_corrupted, batch_size=batch_size)
The text was updated successfully, but these errors were encountered:
i have same issue with upper comment. how can i solve it?
Sorry, something went wrong.
Same here
No branches or pull requests
Hi Antons,
When i run this notebook, i have this error at Cell 22:
May I check with you how to resolve this error?
Cell 22 :
The text was updated successfully, but these errors were encountered: