I was not aware of the fact that the color spectrum used in many charts are called the “Jet palette”, named after how MATLAB calls it. This palette also available in matplotlib so it is quite ubiquitous. According to a post, the spectrum is based on a linear blending between...
[more]
TF2 GloVe embedding layer
This is how to create an word2vec embedding layer in Tensorflow 2.x, using the GloVe vectors. Assume we downloaded the GloVe data from the web, for example glove.6B.zip of 6B tokens, 400K vocab from Wikipedia data, then we can build a matrix of floats and a word mapping dictionary from...
[more]
keras port to tensorflow 2
I am working on some keras code but seems it is better to use
tensorflow.keras for some reasons. So my problem is how to port keras.*
into tensorflow.keras.* quick and easy, assuming Tensorflow 2 of course.
[more]
Solving equations using Tensorflow 2 and PyTorch
Consider the following problem of 4 linear equations and 4 unknowns:
[more]
Prasad et al (2020) CascadeTabNet
Code: https://github.com/DevashishPrasad/CascadeTabNet
[more]