Code Monkey home page Code Monkey logo

Comments (3)

tkoolen avatar tkoolen commented on June 16, 2024

When you do

A = Parameter(model, val=A_val)

the model stores a reference to the Parameter A, and A in turn stores a reference to the Matrix A_val. If you subsequently do

A_val = randn(n, n)

you've now made it so that the variable A_val refers to different data than the reference that's stored in the Parameter A. Instead, you should be doing e.g.

A_val .= randn(n, n) # note the dot

or better yet:

randn!(A)

to modify the matrix A_val in place. The second A= Parameter(model, val=A_val) is then unnecessary.

See e.g. https://discourse.julialang.org/t/question-regarding-references/7610/7?u=tkoolen for more info on how references work in Julia.

from parametron.jl.

tkoolen avatar tkoolen commented on June 16, 2024

Feel free to ask more usage questions by the way, either here or (perhaps preferably) on discourse. Just closed the issue because there are no actionable items in the codebase.

from parametron.jl.

sasadat avatar sasadat commented on June 16, 2024

Thank you @tkoolen for your response.
I just noticed that in @expression and in @constraint sparse matrices are not accepted.
For example, A=spzeros(n,m). If I use
A_expr = @expression A or @constraint(model, A * X ==0)
It gives me this error:
ERROR: LoadError: MethodError: no method matching one(::Type{Any})
Closest candidates are:
one(::Type{Union{Missing, T}}) where T at missing.jl:87
one(::Missing) at missing.jl:83
one(::BitArray{2}) at bitarray.jl:400
...
Stacktrace:
[1] one(::Type{Any}) at ./missing.jl:87
[2] *(::SparseMatrixCSC{Float32,Int64}, ::Array{Variable,1})at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.1/SparseArrays/src/linalg.jl:53

from parametron.jl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.