Marco
Marco
This is not an issue that needs fixing, posting it here for others in case they search for it. If this is inappropriate, please let me know so I can...
Thanks for the great resource!
Add `EmbeddingBag`, a slight generalization of `Embedding` which allows for embedding multiple items at once and performing a reduction on them. See: [PyTorch's implementation](https://pytorch.org/docs/stable/generated/torch.nn.EmbeddingBag.html). This PR implements PyTorch's `input`/`offset` embedding...
The current implementation of `Dropout` constructs an intermediate vector before doing a matrix multiply, but these operations could be fused. This PR explicitly fuses the dropout masking, which results in...
This relaxes every function which takes a `String` parameter to accept `::AbstractString` instead. Importantly, all constructors with string fields are left alone, which is fine because constructors convert types to...
Carried over from Slack: > I've been playing with Nutshell after learning about it today: https://ncase.me/nutshell/ it works pretty well with Franklin, but there are a few rough edges that...
This is a fix for https://github.com/JuliaLang/julia/issues/46355, where `SymTridiagonal` matrices backed by sparse arrays couldn't be summed/subtracted/etc. The root cause is that adding `@view`s of SparseArrays produces a dense array. https://github.com/JuliaLang/julia/blob/ec98087cbf19bac26f6be05df9282746b0cffe78/stdlib/LinearAlgebra/src/tridiag.jl#L207...
`nonzeros` is not defined for several structured matrix types (`Symmetric`, `Tridiagonal`, etc. as shown below). It also has behavior that is accurately described by the docs, but counter to what...
[이 페이지에 ](https://github.com/aheui) "aheui.github.com"링크가 있지만 그런 "*.github.com"링크들이 끊어졌어요: https://github.blog/changelog/2021-01-29-github-pages-will-stop-redirecting-pages-sites-from-github-com-after-april-15-2021/. aheui.github.io으로 바꾸시면 될 것 같아요.
This adds the `Mycielski` operator ([wiki](https://en.wikipedia.org/wiki/Mycielskian)), a unary graph operator that increases the chromatic number of a graph by 1. This can be found in other graph libraries: [NetworkX](https://networkx.org/documentation/stable/reference/generated/networkx.generators.mycielski.mycielskian.html#networkx.generators.mycielski.mycielskian), [SageMath](https://doc.sagemath.org/html/en/reference/graphs/sage/graphs/graph_generators.html#sage.graphs.graph_generators.GraphGenerators.MycielskiGraph)....