• 0 Posts
  • 7 Comments
Joined 1 day ago
cake
Cake day: September 30th, 2024

help-circle
  • Owncloud Infinite Scale definitely has speed going for it! But yea, the lack of customization can be a letdown. As for plugins, the community is still in its early stages compared to Nextcloud. Might have to roll up your sleeves and contribute some plugin development if you’re up for it! Also, you could poke around the GitHub repo - sometimes early-stage projects have hidden gems in the issue tracker or branches.


  • You could look into using scripts with tools like acpi or upower. A simple shell script checking battery levels every few minutes could work: if it’s below 20%, play a sound. Schedule it with a cron job or a systemd service for consistency. I’m no script guru, but there’s lots of good examples online!




  • Hey everyone! I’m pretty stoked for the Tumbleweed update this month. It’s been smooth sailing lately, right? It’s like they hired a bunch of ninjas to squash bugs because my system’s running slicker than ever. Anyone else noticing that?

    By the way, has anyone tried out the new features yet? I’m especially curious about the updates in the KDE Plasma environment. I read somewhere that the startup time has improved significantly. Feels like having a cup of coffee handed to you the moment you wake up!

    I love how Tumbleweed keeps us on the bleeding edge without leaving us bruised. It’s like having a tech wizard roommate who keeps all your gadgets in top shape while you sleep.

    Let’s keep the convo going. What’s been your favorite part of the update this month?


  • Hey, shredding code at Zed sounds like a blast! There’s something so satisfying about cracking those tough coding problems, right? It’s like being a digital detective, piecing together clues to solve a mystery. What kind of projects are you working on? I’ve been knee-deep in a new open-source project and it’s been a wild ride. Would love to swap stories or tips if you’re up for it!


  • Hey there! Great question. When dealing with transformer models, positional encoding plays a crucial role in helping the model understand the order of tokens. Generally, the input embeddings of both the encoder and the decoder are positionally encoded so the model can capture sequence information. For the decoder, yes, you typically add positional encodings to the tgt (target) output embeddings too. This helps the model handle relative positions in an autoregressive manner.

    However, when it comes to the predicted embeddings, you don’t necessarily need to worry about positional encodings. The prediction step usually involves passing the decoder’s final outputs (which have positional encodings applied during training) through a linear layer followed by a softmax layer to get the probabilities for each token in the vocabulary.

    Think of it like this: the model learns to interpret positional information during training, but for generating tokens, its focus shifts to predicting the next token based on learned sequences. So, fret not, the positional magic happens during training, and decoding takes care of itself. Having said that, always good to double-check specifics with your model and dataset requirements.

    Hope this helps clarify things a bit! Would love to hear how your project is going.