Emanuele Natale

Results 23 issues of Emanuele Natale

I'm trying to run the [transfer learning with Flux tutorial](https://github.com/FluxML/model-zoo/blob/master/tutorials/transfer_learning/transfer_learning.jl), but I get ```jl ┌ Warning: `haskey(::TargetIterator, name::String)` is deprecated, use `Target(; name = name) !== nothing` instead. │ caller...

## Feature request Any plan to add the possibility to include tags to the generated cards? It looks like it shouldn't be hard to extend the current code to handle...

I downloaded `resnet18` from [here](https://github.com/onnx/models/tree/master/vision/classification/resnet), and run, in the onnx file's folder ```julia ONNX.load_model("resnet18-v1-7.onnx") weights = ONNX.load_weights("weights.bson") ; model = include("model.jl") ``` which results in ```julia julia> model = include("model.jl")...

The README mentions some `TextSummarization.jl` for Julia but there is no such file in the repo.

Let's consider [the example for using Morris method in the tutorial](https://docs.sciml.ai/GlobalSensitivity/stable/tutorials/parallelized_gsa/#Parallelized-Morris-and-Sobol-Sensitivity-Analysis-of-an-ODE) : ```jl using GlobalSensitivity, Statistics, OrdinaryDiffEq, QuasiMonteCarlo function f(du,u,p,t) du[1] = p[1]*u[1] - p[2]*u[1]*u[2] #prey du[2] = -p[3]*u[2] +...

The branch `dev_varcon` [proposes a `variable_connections` function](https://github.com/natema/WorldDynamics.jl/blob/5dd337d1ab4146f8f98397440aaea6a1afd32247/src/solvesystems.jl#L4-L36) which automatically computes connection among components, **under the assumption that all variables have unique names across subsystems**. After polishing the function (i.e. adding...

good first issue
improvement

As noted in https://github.com/worlddynamics/WorldDynamics.jl/issues/114#issuecomment-1542412937, the functions running the different scenarios should be update to match the original solver employed in Vensim. We should also document such default solvers somewhere, probably...

Some functions, e.g. `interpolate`, are restricted to take only `Float64` inputs. We should remove such unnecessary restriction.

The [docstring of `interpolate`](https://github.com/worlddynamics/WorldDynamics.jl/blob/f9cfc8a6f510cf82f66ec0fd2a938adb494f44aa/src/functions.jl#L6-L9) currently cite a non-existent fourth argument ("an increment value"). This should be fixed, and the docstring should be expanded to include a clear explanation of what...

documentation
good first issue

In the tutorial [Implementing a new model](https://worlddynamics.github.io/WorldDynamics.jl/stable/tutorial/#Implementing-a-new-model) we have a lot of `using` statements, some of which I think are unnecessary. In fact, a first `using ModelingToolkit` is missing in...

documentation
good first issue