-
I've loaded the bot, and all of the dependencies, with Quicklisp. But there's no clear guide on what to do next. I know I need to set the API keys, and some parameters, but there's no indication on ho…
-
Hi, I am new here, I have not yet installed DGGRID, but maybe I don't need to install it, if there are some more information...
I am looking for a statistical study on the error in the area equival…
-
I'm trying to run the demo script on some own testfiles in which the polygon is represented by geographical coordinates (float values with 7 decimal places). Do geographical coordinates in this format…
-
Now that we have staged functions (or whatever name that will converge out of the discussion in #7474), can we be more greedy and request something similar to define types, i.e. where the type definit…
Jutho updated
2 months ago
-
### What happened?
The calculations for SIN and COS are not consistent depending on sample rate or even which blocks are used. See the attached flowgraph. Using a signal source set to sine or cosine …
-
In generall, `(a+b+c)+(d+e+f)` is faster to compute than `a+b+c+d+e+f`, because the former reduces data dependencies, allowing the CPU to run additions in parallel. For float arithmetic, the tree-like…
-
Hi everyone,
I started using autograd, and it's pretty fantastic. The one draw-back, is that I've not really found a way to jit the functions (in nopython mode) using numba when calculating the deri…
-
Julia has a [`div`](https://docs.julialang.org/en/v1/base/math/#Base.div) function that is used to implement [floor division](https://docs.julialang.org/en/v1/base/math/#Base.fld) (`fld`) and [ceil …
-
I'm using the Duals implementation in ForwardDiff and have a question about taking higher derivatives.
Consider this simple example:
``` jl
using ForwardDiff
f(x) = sin(x) / x
@show y0 = f(10.0) # …
-
I tried to extract a LoRA from `Xwin-LM/Xwin-Math-70B-V1.1` and got this:
```
delta_weight = new_weight - base_weight
~~~~~~~~~~~^~~~~~~~~~~~~
RuntimeError: The size of tensor…