PiercarloSlavazza
PiercarloSlavazza
Could you please add the example or at least give some hint about how to build the model? I - naively - tried with: ```python model = Sequential() model.add(tf.keras.layers.Embedding(vocab_size, embedding_dim,...
I have now understood that I have NOT to mix tf.keras and keras. So, I currently have: ```python params = { 'first_neuron': [100, 200, 300], 'optimizer': ['Nadam', 'Adam'] } model...
Sorry, totally on the wrong track :-( I now also understand that I have to pass a function to scan - and not a model (makes sense, of course). So,...
Fixed another couple of glitches, and now I have: ```python p = { 'first_neuron': [100, 200, 300], 'optimizer': ['nadam', 'adam'], 'epochs': [10,20] } def nlp_model(x_train, y_train, x_val, y_val, params): model...
Finally got it working: For the records: * conda installation (don't know if I missed it, but you should add it somewhere given that currently there are some dependencies issues,...
> Of course w/o GPU it is dead slow. I will try again - and report here if I will succeed. With this installation command, everything went well and execution...
Additional note: executing the same command with `--mode static` does not give the error.
Tried to follow @drkeoni instructions: everything was ok, managed to install successfully the package, but, when I run the python program, I get this error: ``` Traceback (most recent call...
Tried Milvus 2.4.0 as well - still getting the error.
Just in case someone will experience this very same issue, I managed to solve it by: - creating a brand new instance of Milvus v 2.3.3 - connecting via milvus...