Rinne
Rinne
I use pytorch1.2.0 to construct a simple network for MNIST to test this visualization tool. There is no error the first time I run it as: `hl_graph=hl.build_graph(MyConvNet,torch.zeros([1,1,28,28])) hl_graph.theme=hl.graph.THEMES["blue"].copy() hl_graph.save("data/MyConvNet_h1.png",format="png")` However,...
In this tutorial, when explaining the weight file, it mentioned that if a convolutional layer has batch norm, then it will get 4 parameters from the weight file. The 4...
In this tutorial, there is a function preparing the image as below: `def prep_image(img, inp_dim): """ Prepare image for inputting to the neural network. Returns a Variable """ img =...
Add automatic parallel test helper. The design needs further discussion.
Support batch enforce and add corresponding test. #166 It used async stream to implement ```BatchEnforceAsync``` except ```NET452```. It added ```BatchEnforceParallel``` in ```Enforcer``` without a corresponding interface in ```IEnforcer```. I'm not...
Fix: #258, #263 ### What does it solve It add support for writing comments in model config files. ### What does it change It add a new const variable to...
### The environment In branch preview, windows 11, .NET 6 ### The description In the preview branch, the loaded policy effect includes white space, while the ```PermConstants.PolicyEffect``` does not. For...
### The environment In branch ```preview```, windows 11, .NET 6 ### The description In the preview branch, when adding comments to config files with "#", the tokens will be misread...
Change lazyLoadPolicy to AutoLoadPolicy to avoid ignore the filter when using filtered adapter. (partially solve #288 ). Besides, it integrates the options into ```Enforcer.Options```.
Add ```GetPolicyTypes``` Api of ```IReadOnlyPolicyStore```.