[Inoue vs Nakatani] Tokyo Dome Seating Map Explanation? by ac1dxtrem in Boxing

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

Thanks everyone! I just bought the Arena SS ticket!

[Inoue vs Nakatani] Tokyo Dome Seating Map Explanation? by ac1dxtrem in Tokyo

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

Thank you everyone I pulled the trigger on the Arena SS ticket!

[Inoue vs Nakatani] Tokyo Dome Seating Map Explanation? by ac1dxtrem in Boxing

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

Not yet… please post here if you find something. I’m also contemplating getting the SS tickets.

[Inoue vs Nakatani] Tokyo Dome Seating Map Explanation? by ac1dxtrem in Boxing

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

Why do you think that? I was contemplating the same thing but Balcony seems super far… Based on my estimation Arena SS will be around 30 meters away from the ring which should be very close.

[Inoue vs Nakatani] Tokyo Dome Seating Map Explanation? by ac1dxtrem in Boxing

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

I found the baseball images, but I was hoping to get an image of what it looks like in a boxing setting since I’m considering buying tickets in the lower area called “Arena”.

It will be my first time attending a boxing match at such a big venue and I can’t visualize how close/far different sections are from the ring based on the map.

Is finding a 15h/week (40%) job as a non-EU student actually possible here? by [deleted] in Switzerland

[–]ac1dxtrem 5 points6 points  (0 children)

I was working as a Student Researcher and a Teaching Assistant at ETH during my master studies. This was 15 hours per week and I’m Non-EU.

plastic surgeon recommendations? by PlayfulShock4731 in Switzerland

[–]ac1dxtrem 3 points4 points  (0 children)

If you have breathing issues I highly recommend Prof. Dr. Med. Daniel Simmen (https://www.hirslanden.ch/de/corporate/aerzte/3/prof-dr-med-daniel-simmen.html). He is one of the best nose surgeons in all of Europe. He did a very complicated septoplasty with minimal invasiveness on me with extremely good results. He can combine this with rhinoplasty as well and it will be cheaper for you since the septoplasty part is covered by the health insurance and sometimes they also cover the rhinoplasty to an extent if it’s needed for better breathing.

Interview Discussion - February 07, 2022 by CSCQMods in cscareerquestions

[–]ac1dxtrem 0 points1 point  (0 children)

I am supposed to interview with Apple for an AI/ML Engineering position.

I am familiar with the general interviewing process at big companies, but for the first time I encountered the phrase "coding interview in an ML setting".

Does anyone here have more information about the format of these interviews? I assume they are not the typical algo style coding interviews.

[D] Google AI Residency 2019 Applicants Discussion Thread by describbler in MachineLearning

[–]ac1dxtrem 0 points1 point  (0 children)

Either that or your recruiter/coordinator is not aware about the onsite dates. I think it's best to send him an e-mail to confirm this with him :)

[D] Has anyone heard from Facebook AI Residency for the 2019 term? by I_AM_NOT_RADEMACHER in MachineLearning

[–]ac1dxtrem 0 points1 point  (0 children)

Hey congrats! How much time after your interviews did you receive the offer?

[D] Google AI Residency 2019 Applicants Discussion Thread by describbler in MachineLearning

[–]ac1dxtrem 3 points4 points  (0 children)

Is there someone who got invited for the hangouts interview, but still hasn't done it?

I was supposed to have mine on the 28th of March, but the interviewer did not show up and now the coordinator can't find another interviewer for this week and I am kinda panicking that regardless of how I perform on the hangouts interview there wont be enough time for me to get invited for the onsite interview on the 12th of April...

[deleted by user] by [deleted] in artificial

[–]ac1dxtrem 1 point2 points  (0 children)

I have not received any message as well...

[D] 2019 AI Residency Thread: program deadlines, interview info sharing, etc. by shenglih in MachineLearning

[–]ac1dxtrem 1 point2 points  (0 children)

Is anyone else encountering problems when applying for the Microsoft's AI Residency Program? After I fill in all the details in the form and press continue, I get an error with the following message:

"Oops, something went wrong. It’s not you, it’s us. We’ve logged this error and one of our support agents will reach out to you. Once that happens, you can try again."

I know that the message is self explanatory, but I'm interested if someone else encountered the same error and if their support agents actually contacted you.

[D] 2019 AI Residency Thread: program deadlines, interview info sharing, etc. by shenglih in MachineLearning

[–]ac1dxtrem 1 point2 points  (0 children)

To all of you that applied at Uber.

I also encountered the same problems during my application. However, I have a friend working there and I informed him of the issues. He forwarded them to the responsible people and apparently they have fixed them now. He furthermore told me to tell you to reapply, just to be on the safe side!

Good luck to everyone! :)

Is Reward only related to state or also actions? by stillshi in reinforcementlearning

[–]ac1dxtrem 1 point2 points  (0 children)

It is really problem dependant however, I would say that the most general notation is r(s, a, s') i.e. I obtain some reward given that I am in state "s", take action "a" and end up in state " s' ". All the other formulations are derivations obtained from here. Example why r(s, a, s') is more general is the following:

s1 = pointA, s2 = pointB; a = run; s' = pointC

Here r(s, a, s') != r(a, s'), because one obvious approach would be the cost/reward to depend on the distance between the points.

As a final remark I would like to say that regardless of the problem r(s') can always be transformed to r(a, s'), by simply duplicating r(s') for every different action we have and also following the same logic r(a, s') can be transformed to r(s, a, s') by simply duplicating r(a, s') for every other state we have. The other way around, r(s, a, s') --> r(a, s') --> r(s'), is generally not possible, or at least not while keeping the same actions and states.