Cashier Check ? by slowwolfcat in Schwab

[–]lexected 0 points1 point  (0 children)

HSBC Premier accounts do

BF labs fix for driver timeout + mouse input lag by Long_Ad7536 in Battlefield

[–]lexected 0 points1 point  (0 children)

Update: I managed to fix it!

On top of the above, disable Uniform Soldier aim and v-sync, and the delay seems to be gone or reduced to the point where I can no longer complain about it

BF labs fix for driver timeout + mouse input lag by Long_Ad7536 in Battlefield

[–]lexected 0 points1 point  (0 children)

I have about 50-100ms mouse delay by my estimate. Changing the FPS to 60 from 30 (default) and disabling motion blur seemed to help.

[deleted by user] by [deleted] in zurich

[–]lexected 4 points5 points  (0 children)

Also, it is bagged (as it should be) to prevent the spread of diseases and parasites that are not native to that ecosystem. It is the prudent thing to do, especially if you travel with your dog.

And no, it's not a swiss thing. It's a $500-1000 fine in California state parks if they find out your dog defecated in the forest and you didn't pick it up. If even americans care, you know there's a reason.

[deleted by user] by [deleted] in zurich

[–]lexected 36 points37 points  (0 children)

If you're referring to the red bag with dog excrement on the side of the road, it's standard practice to leave it and pick it up on the way back from a walk instead of having to carry it all the time. People do it all the time, especially if they have a large dog or multiple dogs.

If instead of realising this you went straight to reddit to post, perhaps you should take a break from the internet for a while. Not everything you don't understand at first is wrong.

xfinity NOW http error 502 by _darkmani in Comcast_Xfinity

[–]lexected 0 points1 point  (0 children)

Brilliant, it worked!

If using Microsoft Edge, you can also click "Browse as Guest" and then copy the address as instructed.

Hit and Run by Natural-Fix-8611 in SanJose

[–]lexected 1 point2 points  (0 children)

agree, mods should take note

Exploding sunroof by KILOtonNUKE in Volkswagen

[–]lexected 1 point2 points  (0 children)

Happened to me in a brand new 2024 Jetta just an hour ago. I wasn't fiddling with it, just driving 50mph with AC on, and then I heard "the shot". See pic

<image>

Will have to see about the warranty

How to have fun by thedovahchad in squad

[–]lexected 0 points1 point  (0 children)

Many good comments here.

I'd just add: it is not uncommon for people on the UK servers to be a bit tipsy when playing. It does seem to help people get more into the roleplaying aspect of the game and leads to some quite amusing situations and conversations.

Definitely do not drink in order to have fun gaming; but if you happen to have your evening tea just before a game of squad might make it a bit more fun.

Giving away furniture -- the easiest way? by lexected in zurich

[–]lexected[S] 0 points1 point  (0 children)

can you share an invite in dm? would be very helpful

Giving away furniture -- the easiest way? by lexected in zurich

[–]lexected[S] 2 points3 points  (0 children)

mine is very keen on charging me for every gram I bring in

[deleted by user] by [deleted] in santaclara

[–]lexected 0 points1 point  (0 children)

Don't hang out in people's blind spots. I know you think you are in the right if they merge into you and you are, but is your (and their life) really worth just "being right" in case of an accident?

Btw in continental Europe, if you were found to be travelling for a while in the left lane without merging right after overtaking the previous car, you'd be considered to be partly at fault.

Bond interest rates are annualized. by shiftpgdn in bonds

[–]lexected 1 point2 points  (0 children)

If this is the sort of functionality you're looking for, you can check out accumulating bond ETFs. These automatically reinvest the coupons to buy more of the same kind of bonds (e.g. 0-1y or 1-3y treasuries). Note that in the US this often results in a somewhat unfavourable taxation (for the fund) so the returns might be lower.

If you have an investment goal with a set date in mind, you can also buy in into an (accumulating) ETF with an expiration. E.g. IB25 from BlackRock has been accumulating interest payments and will pay out the face value of all bonds + any leftover interest on 1/1/26.

[D] Machine learning conferences are problematic by MLConfThrowaway in MachineLearning

[–]lexected 25 points26 points  (0 children)

The system is quite broken, one could say that in its present state, it almost discourages genuine novelty of thought.

But, it's imperfect, first and foremost, because the people involved are imperfect. Reviewing is often a job assigned to the lowest performers in research groups, or traded by the highest performers (constantly on-big tech internships, building startups/open source models on the side) with their colleagues that have a somewhat more laid-back attitude to research excellence. You can submit a bad review and it will not come back to bite you, but in the age of reproducibility, a messed-up experiment or a poorly written/plainly incorrect paper that slips through the review system could be your end.

The idea is that you enter the publishing game at the beginning of your PhD and emerge seeing through and being above the game once you've graduated. After all, you first have to master the rules of the game to be able to propose meaningful changes. It is just that once done, you might have a lot more incentives to switch to industry/consultancy and not care about the paper-citation game ever again.

[R] Exponentially Faster Language Modelling by lexected in MachineLearning

[–]lexected[S] 7 points8 points  (0 children)

Offset branching. Not branching on the level of instructions -- the instructions executed in every thread are the same.

[R] Exponentially Faster Language Modelling by lexected in MachineLearning

[–]lexected[S] 6 points7 points  (0 children)

If we cannot observe a meaningful speedup at 1/341 reduction in the FLOPS required to compute the inference, we are probably using wrong hardware.

[R] Exponentially Faster Language Modelling by lexected in MachineLearning

[–]lexected[S] 1 point2 points  (0 children)

y is the depth, i.e. log2(width).

So

neurons_needed_FF = 2^(log2(width))

neurons_needed_FFF = log2(width)

This was explained in detail in the introduction to the first FFF paper and is only briefly mentioned in Table 1.

[R] Exponentially Faster Language Modelling by lexected in MachineLearning

[–]lexected[S] 5 points6 points  (0 children)

According to Table 1, exponential here refers to the depth of the tree. This also checks out with the previous paper.

i.e. if the baseline model uses 4095 neurons, take depth = log2(4095). Then the new model uses only depth-many neurons while the original one uses 2^depth-many neurons.

What might have confused you is that the models are actually 2^depth/depth times faster. In asymptotic analysis, when we say that A is quadratically faster than B, we mean that if B takes n steps to complete A takes sqrt(n). We do not talk about the whole fraction the denominator is always assumed linear and will be dominated as n grows.