Tom Minka
Tom Minka
test_tutorials.py has the line: ``` sys.path.append(os.path.join(os.path.dirname(__file__), r'../Tests/bin/DebugFull/net461/')) ``` In that folder, you should find System.Collections.Immutable.dll and all other required libraries. If you see it there and it still doesn't work,...
You must build with the DebugFull configuration to generate the DebugFull folder. It will not work otherwise. I will add this note to test_tutorials.py.
If you don't get the DebugFull folder then you haven't set the configuration to DebugFull. The configurations are defined in [Infer.sln](https://github.com/dotnet/infer/blob/50afbcd442106a539cdb3244c148b7f0e7118d16/Infer.sln#L134).
Perhaps the underlying problem is that you are not building Infer.NET from source. If you are trying to create a brand new solution out of a subset of the Infer.NET...
There are no examples of this yet. ML.NET has featurizers that convert strings into Vectors. I agree that it would be useful to have an example of combining an ML.NET...
The issue here is that GammaFromMeanAndVariance does not handle stochastic arguments. Factors that handle stochastic arguments are listed on the [List of factors and constraints](https://dotnet.github.io/infer/userguide/list%20of%20factors%20and%20constraints.html). For example, you can make...
Thanks, you found a bug in Infer.NET. You can work around it by initializing `nodes`. Here is one possible initialisation (it doesn't matter which): ``` nodes[n].InitialiseTo(Variable.Factor(Gamma.PointMass, NoisyNodes[n])); ```
Yes, see [Online learning](https://dotnet.github.io/infer/userguide/Online%20learning.html).
There are no published examples, but it is pretty straightforward to write a Bayesian neural network in the Infer.NET modelling language. A few people have tried this, but the inference...
There isn't any roadmap for Infer.NET. Microsoft folks make changes based on what they need at the time. Folks outside Microsoft can make pull requests anytime for any part of...