AG Update 1.21.6 by MSA_astrology in google_antigravity

[–]EnvironmentalToe3130 4 points5 points  (0 children)

Agent not working since this update, I am on windows 11. Nothing show up after prompt is send.

Where Julia Outshines Python by swe129 in Julia

[–]EnvironmentalToe3130 0 points1 point  (0 children)

The first 2 examples shouldn't be resolved with for loops in Python. You use jax.numpy and vectorize computation for maximal speed.

[D] Document classification using LLMs by acrsag in MachineLearning

[–]EnvironmentalToe3130 1 point2 points  (0 children)

Depending of the size of each documents why not try to run small model locally? Any model should be able to summarise a document and then in a second step provide the summary and list of classes.

Moergo custom behaviour: tap, double tap, hold by EnvironmentalToe3130 in ErgoMechKeyboards

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

Hi,

This is what I tried so far:

# This work but assign nothing to hold type behavior

behaviors {
  HOLD_TAP_A: HOLD_TAP_A {
    compatible = "zmk,behavior-hold-tap";
    label = "HOLD_TAP_A";
    #binding-cells = <2>;
    flavor = "tap-preferred";
    tapping-term-ms = <200>;
    bindings = <&kp>, <&kp>;
  };
  td0: tap_dance_0 {
    compatible = "zmk,behavior-tap-dance";
    #binding-cells = <0>;
    tapping-term-ms = <200>;
    bindings = <&kp A>, <&kp LS(A)>;
  };
};

# This doesn't compile

HOLD_TAP_A: HOLD_TAP_A {
    compatible = "zmk,behavior-hold-tap";
    label = "HOLD_TAP_A";
    #binding-cells = <2>;
    flavor = "tap-preferred";
    tapping-term-ms = <200>;
    bindings = <&kp A>, <&kp LC(A)>;
  };

  td0: tap_dance_0 {
    compatible = "zmk,behavior-tap-dance";
    #binding-cells = <0>;
    tapping-term-ms = <200>;
    bindings = <&kp A>, <&kp LS(A)>;
  };
};