Jason Goldberger
Jason Goldberger
## Questions about a common low-level data structure In Keras, and many of Python's number crunching libs there exists a common datastructure for manipulating collections of numbers. This common data...
Is the idea here to take a Rust struct and serialize it into [erlang term format](http://erlang.org/doc/apps/erts/erl_ext_dist.html). Then use `:erlang.binary_to_term/1` to decode the Erlang runtime struct? or to define a struct...
After studying this for a little bit. I _think_ I've found the crux of the problem. Inside the decode function of `Args` there is: ```rust if let Ok(Args::One(arg)) = term.decode()...
The question now is: How do we keep others from having this issue?
@benwilson512 They are most definitely not passing locally. This PR needs a little more love before it's ready.
Correction: Appending my previous issue above, this speeding up only seems to occur after one zooms in ('ctrl' + '+') then zooms out ('ctrl' + '-'). Upon zooming out after...
Here is the output of `Land.land_example/0` from the modules in the examples folder: ```elixir iex> Land.land_example %DgraphEx.Examples.Land{_uid_: nil, address: "123 Maple Rd Phoenix, AZ 88888", city: "Phoenix", construction_year: "1982", floors:...
@WolfDan I hope this explanation helps.
The keys to loading nested models are the `select(%Land{owner: %Person{}})` to ask dgraph for nested object data and the `DgraphEx.into(%Land{owner: %Person{}}, :land)` for populating the nested query into the models.