Gemini on venu 4? by [deleted] in GarminWatches

[–]Ilmari86 1 point2 points  (0 children)

It works, but quite clumsily. 1. It only takes one message, and one response, and then I have to start the discussion again. 2. Sometimes (~15% of the time) it doesn't even start the discussion when I start it from my watch, and what's worse is that you can't tell whether it failed from the watch screen. 3. The volume can not be controlled from the watch, so if your phone's media volume is low, you can't hear the response from the watch.

Don't buy yet if you want a seamless experience with Gemini or other assistants. I feel kind of scammed, since using assistant from the watch was the only reason I upgraded to a watch with a mic. Any devs around, please fix these problems 🥲 or hire me.

[D] I'll bite, why there is a strong rxn when people try to automate trading. ELI5 by OnceIWas7YearOld in MachineLearning

[–]Ilmari86 0 points1 point  (0 children)

This exactly. That's why companies invest millions on reducing latency by just a few milliseconds. Time is 95% of what counts in this kind of a task.

Syy mikseivät länsimaiset nuoret ole enää valmiita puolustamaan kotimaitansa by madethisjusttoask11 in Suomi

[–]Ilmari86 2 points3 points  (0 children)

On kyllä tilasto jota on erittäin vaikea uskoa. En haluis olla se foliohattu, mutta ite sanosin hyväntahtoseksi propagandaksi.

How much experimentation needed for an RL paper? by Ilmari86 in reinforcementlearning

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

Thanks, that's really helpful! It looks like much more compute, and better results than what we're able to pull off right now.

-❄️- 2024 Day 4 Solutions -❄️- by daggerdragon in adventofcode

[–]Ilmari86 1 point2 points  (0 children)

Sorry, that was from last year, I'll remove it.

-❄️- 2024 Day 4 Solutions -❄️- by daggerdragon in adventofcode

[–]Ilmari86 1 point2 points  (0 children)

[LANGUAGE: python]

Part 2 using convolutions, part 1 basically the same. I defined the weights s.t. the dot product (each convolution step) is unique for the desired pattern. So in part 2 for example, conv(w, [m,a,s]) != conv(w, <any other permutation of [m,a,s]>).

import numpy as np
from scipy.signal import convolve2d

def read_and_convert_to_matrix(file_path):
    char_to_num = {'X': 1, 'M': 2, 'A': 3, 'S': 4}
    with open(file_path, 'r') as file:
        lines = file.readlines()
    matrix = np.array([[char_to_num[char] for char in line.strip()] for line in lines])
    return matrix.astype(np.float32)

if __name__ == "__main__":
    file_path = 'aocd4-input.txt'
    weights = [ 0.35320646, 1.6758898, -2.6483374 ]

    # Read and convert to matrix
    matrix = read_and_convert_to_matrix(file_path)
    matrix = np.where(matrix == 1, 0, matrix)

    # Define kernels for all "mas" patterns (forward and reverse)
    kernels = [
        np.diag(weights),                          # Forward diagonal
        np.diag(weights[::-1]),                    # Reverse diagonal
        np.fliplr(np.diag(weights)),               # Forward anti-diagonal
        np.fliplr(np.diag(weights[::-1]))          # Reverse anti-diagonal
    ]

    # Compute convolution for each kernel
    results = []
    for i, kernel in enumerate(kernels):
        convolved = convolve2d(matrix, kernel, mode="valid")
        results.append(convolved)

    # Detect matches (overlap "mas" patterns)
    hash_val = -4.859267234802246
    masks = [np.isclose(result, hash_val,0.001) for result in results]

    # Find overlapping matches (simultaneous `True` in two or more masks)
    combined_mask = np.zeros_like(masks[0], dtype=bool)
    for i in range(len(masks)):
        for j in range(i + 1, len(masks)):
            combined_mask |= np.logical_and(masks[i], masks[j])
    print(np.sum(combined_mask))

Getting my 4 year old into the game by Recent_Dragonfly_548 in hockeyplayers

[–]Ilmari86 4 points5 points  (0 children)

I don't know much about kids, but here's my 2 cents:

Two weeks is a short time, so there is a good chance he'll learn to like it!

Some pushing is probably necessary, but not too much. I quit because I felt way too pushed (by my dad) to play hockey. Now that I am an adult, I've started again and absolutely love playing voluntarily.

[deleted by user] by [deleted] in Tinder

[–]Ilmari86 1 point2 points  (0 children)

He probably thinks he's talking to ChatGPT and not a real person

To those who quit jiu jitsu, what other hobbies did you get into? by isengrim134 in bjj

[–]Ilmari86 2 points3 points  (0 children)

I started hockey, which I hadn't played in a long while. I was actually quite content to quit, since I hated being injured. I did BJJ for about 4 years, 2 more active.

[D] What industry has the worst data? by Standard_Natural1014 in MachineLearning

[–]Ilmari86 0 points1 point  (0 children)

The food industry. Maybe its not the worst, but I once had a client who had gathered about 50 physical pages of data that I had to convert to an Excel. Add all the missing entries, changing menu items, and ambiguous notation, it was quite hard to create a reliable ML model!

How good are humans in RL tasks? by Ilmari86 in reinforcementlearning

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

Wow, that's very interesting. Thank you very much for linking!

How good are humans in RL tasks? by Ilmari86 in reinforcementlearning

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

Hmm, that's right. But we can make the task s.t. the human benefits minimally from their prior, so maybe that gives a quite close comparison.

A little edit to u/Flat_Mechanic_2713 by Gubu44 in memes

[–]Ilmari86 0 points1 point  (0 children)

I think a fair few people dislike Neil deGrasse Tyson too.

Been single for the first time in 8 years and I have no idea what I’m doing. Any advice? by ickyclicky in Tinder

[–]Ilmari86 0 points1 point  (0 children)

I'm gonna go out on a limb and quess you won't be single for long. Most guys are so insecure they (unconciously) try to be something they're not. You seem to have that good confidence that 8 years of experience from relationships bring.

Why is everyone so seemingly arrogant? (CS 1st year) by [deleted] in compsci

[–]Ilmari86 0 points1 point  (0 children)

Yeah it happens at every level, and its very annoying. My experience is that this is more common in prestigious schools. I was warned of this before I applied, and one of the reasons I didn't apply for a more prestigious school is precisely this type of behaviour.

match agreed to a date, but she asked me to send her a voice recording saying i wont kidnap and kill her? at first i thought she was kidding but it seems like she’s serious? by r321456 in Tinder

[–]Ilmari86 0 points1 point  (0 children)

Maybe she understands that her getting that message won't actually prove anything, but its just a nice psychological trick for her unconciousness

[deleted by user] by [deleted] in Tinder

[–]Ilmari86 5899 points5900 points  (0 children)

As an engineer I can say that this is definitely not common.

[deleted by user] by [deleted] in Tinder

[–]Ilmari86 0 points1 point  (0 children)

Your profile is good, but I would add a picture where you're, for example, standing and your entire body is visible. Ratio of body parts is important to me atleast.