Results 47 comments of jbrea

Thanks a lot for the detailed response! Meanwhile I also stumbled over https://github.com/FluxML/ONNX.jl/issues/49. What makes more sense: adding OpTypes here or in ONNX.jl (which has the same issues)?

Wow, thanks for your answer! I don't have urgent need for the missing OpTypes. I wrote this [little tutorial on transfer learning](https://lcnwww.epfl.ch/bio322/transfer_learning.html) for my students (and I wasn't really sure...

Thanks for the support! 1. This is my dict.conf ```# This is the configuration file for dict. # Usually all you will ever need here is the server keywords. #...

Thanks. 1. ``` $ getent hosts 127.0.0.1 localhost ``` ``` $ ip link 1: lo: mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 ``` 2. This...

Not sure this can be done simply by forwarding a keyword argument to an internal Makie function. As you can see in the example, the axes names are plotted on...

> EDIT: you mean the ticks on the right and upper parts of the axes? Yes.

I don't think this needs to be done in `__init__()`. It should be sufficient to just write somewhere in the package ```julia const DEFAULT_VERBOSITY = Base.RefValue{Int64}(1) default_verbosity() = DEFAULT_VERBOSITY[] set_default_verbosity!(level)...