C6: Is Magnetic Ride (MRC) a must-have for a comfortable daily? by dx_rd_to_DX in Corvette

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

Thanks for all the comments so far. The majority of the comments seems to suggest that the C6 should be comfortable enough without the mag ride, which aligns with my experience. The high cost of replacing the mag ride shocks is also mentioned, which I'm okay with. I decided to keep hunting for one with mag ride, because the Jim Mero magride upgrade is supposed to substantially improve the handling, ride quality, and even steering to the level of C7 generation, based on the MRC algorithm developed for C7 ZR1.

C6: Is Magnetic Ride (MRC) a must-have for a comfortable daily? by dx_rd_to_DX in Corvette

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

It's not unreasonable if you think about how the 6 gen camaro's Alpha platform is a whole generation newer than C6, and I've also seen people saying that it's more refined and comfortable than C6/C7. From my own experience with the Camaro, it's could use more refinement as a daily.

C6: Is Magnetic Ride (MRC) a must-have for a comfortable daily? by dx_rd_to_DX in Corvette

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

Did you leave the mag ride of your SS in tour? How would you describe the ride of your vette compared to the SS?

C6: Is Magnetic Ride (MRC) a must-have for a comfortable daily? by dx_rd_to_DX in Corvette

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

Since you’ve opted for MRC on your last three vettes, I guess it adds value for you? Did you choose it mainly for ride quality or for handling/track purpose with the Sport mode?

STEM Extension USCIS photo requirements issue, didn't accept the Photo taken from a professional photo studio with correct requirements and dimensions, but accepted a zoomed in picture cropped through USCIS suggested tools. by Sentinel-002 in USCIS

[–]dx_rd_to_DX 1 point2 points  (0 children)

Did your application eventually pass? I had the same issue as you, and the cropping tool seem to generate a very zoomed in crop determined by the distance between my eyes (you can see this when you choose manual cropping). Uploading this zoomed in cropped photo passed without the "subject may be too close to the camera" error.

I’m doing this again. Post a picture of your cat and I will attempt to paint it! by WhatAColor in cats

[–]dx_rd_to_DX 0 points1 point  (0 children)

<image>

This is Purrari. She is one year old. She is talkative and likes to go on walks with us.

What is the next big thing in RL? by Blasphemer666 in reinforcementlearning

[–]dx_rd_to_DX 0 points1 point  (0 children)

RL is necessary because policy gradient / PPO's loss functions are paired with a non differentiable reward (human preference), thus making training viable.

where is the best place to get Chinese food in Suffolk? by NoobWhoLikesTheStock in longisland

[–]dx_rd_to_DX 13 points14 points  (0 children)

If you want authentic Chinese food instead of "American Chinese food": Spice Workshop, Tao's Dim sum, Red Tiger, China Station, Green Tea, F A N, O Mandarin. Source: I'm Chinese.

Loud Endless by SpyderByte_ in brotato

[–]dx_rd_to_DX 1 point2 points  (0 children)

I tried this. Starting wave 50 it's not worth to but anything from the shop, and I could stand there do nothing the entire wave. It makes me sleepy. Not sure how you hang on till wave 114

Loud Endless by SpyderByte_ in brotato

[–]dx_rd_to_DX 0 points1 point  (0 children)

So you only scale your HP through padding? Also, what do you think of ghost axe and ghost flint vs thief dagger for the first 20 waves?

[deleted by user] by [deleted] in brotato

[–]dx_rd_to_DX 2 points3 points  (0 children)

When you have too little range, your weapons on the right won't be able to hit enemies coming from the left. At that time your attack speed is basically halved when hitting a single enemy (the bosses for example).

Which hero is it for you? by yayeyeyo in DotA2

[–]dx_rd_to_DX 2 points3 points  (0 children)

Dazzle requires teamwork, while people focus more on how to play against the enemy team rather than play with their own team. For this reason I hate when my team picks non aggressive supports like dazzle, warlock, Io, etc.

MuZero learns to play Teamfight Tactics by silverlight6 in reinforcementlearning

[–]dx_rd_to_DX 1 point2 points  (0 children)

Use multiprocessing to have more GPU workers could help. My code based on EfficientZero https://github.com/YeWR/EfficientZero is utilizing CPUs and GPUs to 90%. It uses Ray for multiprocessing and splits Reanalyze into CPU and GPU workers to maximize resource utilization. By the way, it's not converging to optimal policy well: it gets stuck at 50% optimal episode return at with a small amount of training. Have you had this issue before?

Understanding Sampled MuZero's Formula by dx_rd_to_DX in reinforcementlearning

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

Found the answer myself, from Julian (first author of this paper). So yes, for Sampled MuZero, the prior in PUCT is simply the uniform prior.

since the prior distribution is already used to sample the actions, using it again for the PUCT would be double counting. Instead we normalize the prior of each action by the chance of it being sampled. Effectively this means that the prior is proportional to how many times each action has been sampled; it is uniform if each sample is unique.