Igor Morgado

Results 8 comments of Igor Morgado

Found out about `exclude` and `\link` parameters. But still not able to do the example with "dotted" elements in a layer (as the link). Here below there are two examples...

I was able to "customize" the dotted layer with a custom `\link`, here is an example: ``` \begin{neuralnetwork}[height=5] \newcommand{\nodetextclear}[2]{} \setdefaultnodetext{\nodetextclear} \inputlayer[count=4, bias=false, title=Input] \hiddenlayer[count=5, bias=false, title=Hidden, exclude={3,4}] \linklayers[title={not to={3,4}] \outputlayer[count=3,...

Found a better way for "dots" ``` \node[below=.25cm of L0-2] {$\vdots$}; ``` where `L0-2` is the layer id and node id. CAVEAT: Excluded layers are not created, hence it needs...

Use `title` in `\linklayers`. As the example blow: ``` \begin{neuralnetwork}[height=5] \newcommand{\nodetextclear}[2]{} \setdefaultnodetext{\nodetextclear} \inputlayer[count=4, bias=false, title=Input] \hiddenlayer[count=5, bias=false, title=Hidden, exclude={3,4}] \linklayers[title={$w_{ij}$},not to={3,4}] \outputlayer[count=3, title=Output] \linklayers[title={$w_{jk}$},not from={3,4}] \link[style={-, line width=2mm,line cap=round, dash...

Ok. After messing around with package source code. Found a way with `style` ``` begin{neuralnetwork}[height=9, style={square/.style={fill=black!25,minimum size=6mm}}] \newcommand{\nodetextclear}[2]{} \setdefaultnodetext{\nodetextclear} \inputlayer[count=4, title=In] \layer[count=9, bias=false, nodeclass={square}, title=$\scriptstyle C_{3\times3}$] \linklayers \outputlayer[count=3, title=Out] \linklayers...

no answer, probably project was abandoned.

> hmmm yeah I think I can see that. Thanks

Fixed in this pull request https://github.com/explosion/spacy-vscode/pull/32