This is really incorrect advice in the world of software engineering. At least in FAANG companies and big name startups, no one cares if you read How to Win Friends and Influence people and have "social skills". If you can't pass the engineering interviews, you're fucked.
HN user
mrcoder111
I really hate this article. Pretty much everything I've ever accomplished in my life is because I speak it into existence and hold myself accountable. But then again, if you're the type of person who makes things happen, you don't rely on crappy psychology studies to tell you how to live your life.
Why do people love to do this... at least read the article before
any single pane note taker with latex support?
Taking notes for my RL research..
Sounds good, the problem is in social settings (at work) if you take a break i.e. play a game during work hours people think you're lazy.
No different than restricting access to cocaine.
I wonder why internet commentators who haven't made billions always bring up this index fund stuff, when no one who actually has made billions did it by piling their money into the S&P 500.
And mainstream people still think the idea of high fructose corn syrup, gluten, etc. affecting mental capability is just people being OCD...
Why are people upvoting robotics a lot recently... getting tired of web dev?
Sounds good - can you send me an email? I put mine in my about
The topology in planning usually deals with higher dimensional geometry. Does the same answer still apply?
I took a linear algebra course. Maybe I need to restudy but I would rather have links to exact chapters than reading the whole thing, as I don't see a direct path from the linear algebra I studied to the topology concepts and geometry here. Specifically there weren't any curves in linear algebra. Ex 4.10 and 4.11 here: http://planning.cs.uiuc.edu/node143.html
Are examples of things that are hard for me to understand. Especially that 2d picture in 4.11
The topology part of these textbooks is the hardest for me. Understanding the 2d representations of the shapes. Where can one get a more bottom up explanation of the crucial topology concepts? Also bad at geometry in general
In order to get a variable length context, you need to add some machinery to some forms of attention. For example, in jointly learning to align and translate, the attention is certainly not invariant to number of context vectors. You train the attention to take in a fixed number of context vectors and produce a distribution over the fixed number of context vectors. You cannot train on images with 5 annotations/context vectors and expect anything to transfer to a setting with 10 annotations. That's why I would be interested in a specific paper to solidify what you're saying.
Can you share some paper names or links to architectures that demonstrate the length invariant convolution and attention?
Samcodes said it above. How do transformers build a shared representation of two input sentences with different lengths? If you convolve them with the same filter, you get two different sized convolution outputs - the embedding dimensions don't align.
How do you handle variable length input without something like an RNN? Even transformers use RNN structures right.
I suppose convolutions could technically handle variable length inputs (just slide the window of weights over different length inputs) but I don't think tensorflow or pytorch supports this
Are any of these more closely tied to Python than the others?
A symbol is just a frozen weight in a neural network.
This article would have been way more interesting if you filled it with actual business lessons and examples. Instead, it's filled with vague self help messages...
I'm a recent college grad from a good CS program. How do I get better at bugfixing and diagnosing code? To give a specific example: I was recently working with a Tensorflow code base for image recognition, and Tensorflow kept hanging (no error, just hanging) or giving me shape errors. I felt stuck. First, the lack of error made it hard to diagnose, and when I did get the shape error, I didn't understand why quickly. I find myself too dependent on stackoverflow for bugfixing and if someone hasn't solved it, I feel helpless. I've tried reading through the Tensorflow source but it's pretty verbose and hard to understand. Are there any books that give you concrete methods to really understand other people's code well and fix bugs?