oonisim
oonisim
# Cause ```keras.layers.experimental.preprocessing.CategoryEncoding``` generates the shape ```(N,)```, which cannot be concatenated with ```keras.layers.Embedding``` which has shape ```(None, M)```. Need to use ```tf.keras.layers.CategoryEncoding``` which generates ```(None, N)``` shape. # Fix [keras...
Hi @Vinayaks117 , As per AWS documentation (https://docs.aws.amazon.com/sagemaker/latest/dg/multi-model-endpoints.html] "Multi-model endpoints are not supported on GPU instance types", not sure if you can run multi model server (please see the AWS...
Hi @areed1192, unfortunately the issue still persists with the latest version. Git pull done and the version is at 0.1.6 in /home/oonisim/home/repository/git/oonisim/finance/alexreed/python-sec/. ``` commit e082df20246e6a4be2972aaaaee588521021fe32 (HEAD -> master, tag: 0.1.6,...
Hi @achoum, please refer to the result below. This time I switched to Python venv (not virtualenv, etc) and pip only to make sure anaconda is not the cause. Basically...
Thank you for the update.
This can be expected as https://github.com/dsoprea/PyInotify#notes. The sample code is creating the directory in the same single thread/CPU, then InotifyTree can miss the timing. ``` IMPORTANT: Recursively monitoring paths is...