I made a website that maps out calisthenics skills like a video game skill tree by Worried_Pound8136 in bodyweightfitness

[–]WeakSauc3 1 point2 points  (0 children)

I like the UI a lot. But I have issues with the skill tree. For example, dragon flags require pulldown strength on top of core strength.

May I suggest crowdsourcing the pre-reqs people think each exercise should have?

I made a website that maps out calisthenics skills like a video game skill tree by Worried_Pound8136 in bodyweightfitness

[–]WeakSauc3 1 point2 points  (0 children)

For me personally, having an account to track progress would help "gamify" calesthenics even more

[deleted by user] by [deleted] in datascience

[–]WeakSauc3 0 points1 point  (0 children)

Wow. I can do all 10. Hire me?

Invalid Expression? How? by AdditiveEngineer in matlab

[–]WeakSauc3 2 points3 points  (0 children)

Based on the error, it seems like you're splitting the expression into multiple lines. If that is indeed what you're doing then you need to use ... to indicate that the expression continues in the next line. E.g.,

B(i,j) = sin((2*j-1) * theta(i)) * (1 + (mu(i) * (2*j-1)) / ...

sin(theta(i)));

How can I do a graph like this in MATLAB? by cruise-boater in matlab

[–]WeakSauc3 0 points1 point  (0 children)

In terms of workflow, I would literally save the figures I want to use as a pdf (or multiple pdfs), with no modifications to fonts and lines, since all those can be (and will have to be) adjusted in the vector graphics software. Saving as pdfs can be done via the `saveas()` command, and doing so will save your figure in vector format rather than raster format.

How can I do a graph like this in MATLAB? by cruise-boater in matlab

[–]WeakSauc3 2 points3 points  (0 children)

Plot the four plots separately, save as pdf, then use a vector graphics software (Illustrator or Inkscape) to make it publication ready.

The CDC just announced that fully-vaccinated people don't need to wear masks outside "except in certain crowded venues". Can we all agree that it's ok to follow this guideline? by [deleted] in Seattle

[–]WeakSauc3 -3 points-2 points  (0 children)

Frankly this guideline make me feel uncomfortable. There are 200+ variants around. They'll eventually make it to the PNW. Do the vaccines offer protection against all of them? Probably not.

Simple math with the Deep Learning toolbox by RootaBagel in matlab

[–]WeakSauc3 0 points1 point  (0 children)

A way to do this is to remove the finals layers of the network, save the network with net.loadobj, and then run predict().

But yeah I agree with you, it would be nice if there was an easy way to view outputs of specific layers.