Tiago Albineli Motta
Tiago Albineli Motta
For now, I'm working with this local solution to have equivalence: ```java import me.xdrop.diffutils.DiffUtils; import me.xdrop.fuzzywuzzy.ratios.SimpleRatio; public class SimplePythonRatio extends SimpleRatio { @Override public int apply(String s1, String s2) {...
@leafah warned about HALF_EVEN python round behaviour ( https://en.wikipedia.org/wiki/Rounding#Round_half_to_even ), so the `round(22.5)` give us 22, and `round(21.5)` also returns 22. Java have this round implemented in BigDecimal: ```java import...
Same problem here ``` $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04.2 LTS Release: 18.04 Codename: bionic ```
Looks like there is a "ï" starting the head.js file, that is invisible in most editors.
Yes looks like different from the paper. We can see that U[i] is been multiplicated many times inside the for loop (last term): ``` for k in f: dV +=...
Changing the code to reflect exactly the paper like this: ``` dV = g(-f[j]) for k in f: dV += dg(f[j]-f[k])*(1/(1-g(f[k]-f[j]))-1/(1-g(f[j]-f[k]))) dV = dV*U[i]-lbda*V[j] ``` Makes the result be slower...
hi, any news on that?
Hi, Im going to see what is happening until monday. []'s Tiago Albineli Motta Desenvolvedor de Software - Globo.com ICQ: 32107100 http://programandosemcafeina.blogspot.com On Sat, Feb 22, 2014 at 1:21 PM,...
The problem happens when a redis-server is not configured to have password and you try to connect using password. In this redis-server returns an error, and we try to reconnect....
@debasishg i anexed to this pull request the other commit. It's ok for you? Without password on redis-server: ``` scala> val p = new RedisClientPool("localhost", 6379, secret=Some("foobared"), maxIdle=1) scala> p.withClient...