eisthf

Results 4 issues of eisthf

## description One example in the document [](http://weavejl.mpastell.com/dev/usage/) needs update: Currently it is: `! display("text/html", "Header from julia");` The correct use is: `! display("text/html", html"Header from julia");` or `! display("text/html",...

enhancement

The following code snippet illustrates preprocessing and encoding of texts and use the result to train GRU models for sentimental analysis in chapter 16. ```python embed_size = 128 model =...

Figure 5.10 shows that at M=4, the sum of square errors is least, which accords with Figure 5.9. M=3 maybe better because there is no great improvement from 3 to...

I tried the following code and the result is not what I expect. ``` using Traits IsGoodTrait(x) = IsGoodTrait(typeof(x)) IsGoodTrait(::Type) = false IsGoodTrait(::Type{ foo(1) # I think this should return...