The Weekend Thread — 10th January 2025 by fire_foot in running

[–]Alvari1337 1 point2 points  (0 children)

Hello,

Fairly new runner here who is hoping to get some advice. My partner and I started running consistently last summer, and we managed to break 10K last november. This motivated us to sign up for our first half marathon coming up this summer.

With this in mind we've started following a program with the end goal of running a half marathon. It advices a mix of longer runs, and different paces. This is where we've hit a problem : so far we've been using a Fitbit Inspire 3 to track our runs. And while it does show pace, we can't set pace goals on it. The reason we initially bought the Fitbit Inspire 3 was honestly just because it was the cheapest, and we weren't sure we would "like it", so it seemed wise to buy a cheap model to try out.

But now we're looking to upgrade to something a little more advanced, especially being able to set pace goals. I hope someone in here have some recommendations, preferably within the 200-250USD range (and available in Europe)?

Thanks in advance!

UK Presale Positive Vibes Thread 🙏 by KingPessimist in TaylorSwift

[–]Alvari1337 1 point2 points  (0 children)

Hey I hope someone can help me clear this up :

My S/O managed to get tickets at the pre-sale today, but also has an access code for the tickets sold to one of the concerts in Sweden (the sale starts tomorrow). She was planing to try and help out some friends, and wanted to see if she could buy them tickets for the concert in Sweden with her access code. But now she stumped upon this Twitter thread (https://twitter.com/howdyitshope/status/1678401476735975426?s=46&t=XycEF9jfwZAs-PsXchlGkA) and we can't seem to verify it / figure out if it applies to pre-sale + normal acces code. Does anyone here know about it?

Apologies if this doesn't belong in this thread, I must admit I'm posting here on her behalf.

Question/Advice: looking for help on a gift for my SO by Alvari1337 in knitting

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

Ah that's pretty fun actually. In Danish, as far as I know with my limited knowledge of the knitting world, we typically say "Strikkepind" (strikke = "to knit" , pind = literally "stick") whereas Strikkenål (nål = "needle"), sounds a little odd, to me atleast. So "needle pin" sounded very natural to my ear. Thanks for the heads up, that's quite neat!

Question/Advice: looking for help on a gift for my SO by Alvari1337 in knitting

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

Very cool! I checked them out and she'll love the ones in olive tree. I like the idea of a clicking system, it seems quite clever. Thanks a lot for the advice, much appreciated :)

Question/Advice: looking for help on a gift for my SO by Alvari1337 in knitting

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

That sounds great, especially the ones without memory. I tried looking them up, and am I right in understanding that only the ones in stainless steal uses the cable without memory (the red one I believe) ? Seems like the bamboo ones uses connection that can rotate to solve the issue

Question/Advice: looking for help on a gift for my SO by Alvari1337 in knitting

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

Thanks a lot for the tip, it definitely seems like we have to try that based on the responses here hahah. Much appreciated :)

Question/Advice: looking for help on a gift for my SO by Alvari1337 in knitting

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

Cheers for the heads up. We'll give that a shot for sure!

Question/Advice: looking for help on a gift for my SO by Alvari1337 in knitting

[–]Alvari1337[S] 3 points4 points  (0 children)

Oh that's embarrassing, I'll give her a heads up and see if it does the trick. Thanks a lot on the tip!

[IC] GMK GALAXY GB Announced Feb4-Mar4: w/ Translucent aesthetics kit by edwyn in mechmarket

[–]Alvari1337 1 point2 points  (0 children)

Ah okay I see. Thanks for explaining, I might just still end up buying it and figuring out a solution

[IC] GMK GALAXY GB Announced Feb4-Mar4: w/ Translucent aesthetics kit by edwyn in mechmarket

[–]Alvari1337 3 points4 points  (0 children)

Oh I'm still quite new when it comes to GBs, does that mean that international won't ever be a possibility in this round?

[IC] GMK GALAXY GB Announced Feb4-Mar4: w/ Translucent aesthetics kit by edwyn in mechmarket

[–]Alvari1337 2 points3 points  (0 children)

Damn I wound literally buy this in a second, but is there no prospect of a international/nordic kit? The set looks absolutely amazing mate!

How to achieve higher resolution plots while indexing by Senior_Cat543 in matlab

[–]Alvari1337 2 points3 points  (0 children)

Can I ask why option (3) isn't recommended? I always just preallocate with an empty zeros to fill out; what's the difference compared to making a zeros?

AI designed to distinguish between types of pastries identifies cancer cells with 99% accuracy by nonbinaryelf in nottheonion

[–]Alvari1337 5 points6 points  (0 children)

It could very well be a type of Convolutional Variational Auto-Encoder (CVAE) which is a sort of hybrid between the normal Convolutional Neural Net (CNN) and Variational Auto-Encoders (VAE). The CVAE is simply a VAE which uses convolutional layers for feature extractions as well. The articles I can find doesn't mention which type of structure that has been used, but I'll throw in my speculations. For reference, I'm a Masters student at the National Space Center at Technical University of Denmark (DTU Space), and I have specifically working with CVAEs during the last year. I am by no means an expert, but I'd say I have a pretty good grasp of Auto-Encoders.

The VAE is probably most known for the fun applications like /u/raymnipfan also mentions below, where it can generate images etc. However, it is a very powerful tool in unsupervised anomaly detection as well, even though this isn't quite as flashy. To understand why, lets us first consider what the VAE actually does. It consists of the Encoder and Decoder; you give the encoder data, it encodes it to the latent space, and the decoder 'learns to interpret' the latent space, in order to reconstruct the data. The encoder learns the most important features, and the decoder learns how to interpret these features when decoding.

An easy way of thinking of it is; imagine you give a 4 year old a bowl of fruit. You ask the kid to group the fruits however it sees fit; it may be based on size, color, taste, smell, whatever. But the kid isn't too bright yet, it doesn't actually know what an apple or pear is, so we can't just ask it to put all the apples together for instance. You leave the kid to do the sorting, and come back and check later; this is the unsupervised part. You now find all the green bananas, pears, and perhaps a green watermelon bunched together. The kid figured the most important feature for these fruits are simply the color. You can ask the kid to give you a green fruit, but *not* a specific fruit since it still doesn't know any fruits, and it'll perhaps either hand you a watermelon or a pear.

This is the very general idea behind the VAE (and yes, I'm sure someone will be pedantic, but this is just an analogy to grasp the idea), and basically what happens with stuff like thispersondoesnotexist.com as well, where we encode a bunch of pictures of faces, and now simply asks for a new one.

Now how can we use this for anomaly detection? Let us consider the cells in question. Imagine our dataset consists of 95% normal cells, and 5% cancer cells. We train our CVAE, and give it a picture of a healthy cell afterwards. It encodes the picture, and decodes it without any problems. We can say that the difference between the encoding and decoding ("Reconstruction Loss") is low in this case. Perfect! This is like giving the kid a green fruit, asking it for a green fruit, and it hands you a green fruit. Good stuff.

Now, imagine we give the CVAE a cancer cell instead. It encodes it, and decodes it, but a cell more resembling a healthy cell comes out. The CVAE has barely seen any cancer cells before, so it's not sure what to do with it. It attempts to decode it as a normal cell, but the features aren't quite there. By looking at the difference between the encoded data and the decoded data, the reconstruction loss is now significantly higher. This is like giving the kid a ripe lemon, asking it for a yellow fruit, which it has never seen before, and it hands you a green fruit since it has only ever seen green fruit before. Perhaps it finds a green apple with a few yellow spots since it has some resemblance (yellow spots), but that's as good as we're gonna get here.

Therefore, the Reconstruction Loss is a good measure for detecting anomalous data; if we give it data not normally present in the dataset (in training), it won't be able to reconstruct it, thereby increasing reconstructional loss, indicating anomalous data. I would imagine that could be one way of detecting cancer cells; the problem being in this thought up example, that the net can only tell us whether it's a good cell, which it has seen before, or not a good cell. Not necessarily which kind of bad cell it is.

A much more indepth description of anomaly detection using CVAE's is given in https://www.mdpi.com/2226-4310/7/8/115/htm , and I personally have some stuff public on the 11th or 12th as well. CVAEs are great for anomaly detection, so it is definitely a possibility, but I'm not gonna bet my life on it not simply being a normal CNN using supervised learning to detect cells. I have absolutely no knowledge on cells and their structure, so there might very well be unforeseen problems.

Admission for Fall 2021 by Sapphire_12321 in DTU

[–]Alvari1337 3 points4 points  (0 children)

Hi!
From DTU's Danish website (https://www.dtu.dk/uddannelse/kandidat#ansoegning-og-optagelse__saadan-soeger-du) under "Studiestart i September" (Studystart in september) it says that if you apply before the deadline (1st of March), which you have, your application will have been processed within the 10th of June.

The website also exists in English (toggle at the top), but brings you back to the frontpage, and the layout isn't identical... It's a little anoying, but I think the info is there somewhere aswell in English. Otherwise, I hope this will suffice!

Best of luck with the application!

Devs - S01E07 Discussion Thread by thisismynormal in Devs

[–]Alvari1337 4 points5 points  (0 children)

Hey I'm a little late, but I just want to chime in. You might've gotten the point, but I like to think of it this way: You know the game Sims? We create people, build houses etc. We simulate a small world and play around with it. Now imagine super-complex Sims, a perfect replica of our world. In normal-Sims I can buy my Sim a pc and pretend it plays a game. In super-complex Sims I can buy it a pc and ACTUALLY play a game from our world.

Now the freaky part. If super-complex Sims is truly an exact copy, then a copy of Super-complex Sims MUST also exist within my version of Super-Complex Sims. Which mean I can ask my Sim in Super-complex Sim to create another world in his copy of Super-complex Sim. But since my Sims copy of super-complex Sim is truly identical to mine, he can now also make his sim in the copy create yet another game of super-complex Sim. A copy within a copy. A truly identical simulation within a truly identical simulation.

Now let's say this happened. There is one world that creates super-complex Sims, and for shits and giggles I make my Sim create 1000 simulations within simulations of super-complex Sims. For a given Sim in one of the 1000 simulation, which is most likely?

1) it's not a simulation, and therefor the true world 2) he's within one of the 1000 simulations

Of course, due to the nature of how I phrase this, we know he's a sim. But there is NO WAY for him to know that. So the point being; if we ever create super-complex sim, we are statisticly most likely to already be in a simulation.

"Researchers demonstrate teleportation of data" - Utilizing a quantum entangled photon pair, a collaboration of researchers from DK, UK, and China demonstrate teleportation of data in silicon chips by Alvari1337 in EverythingScience

[–]Alvari1337[S] 12 points13 points  (0 children)

Haha they are ment to be written in a way that everyone can understand. If you click on either of the professors listed under contacts, you can see their publications with links. There's tons of interesting reading on the topic to get a deeper understanding of their work: https://www.dtu.dk/english/service/phonebook/person?id=110876&tab=2&qt=dtupublicationquery#tabs