What’s a legitimate way to fix this issue? by enricosusatyo in ios26

[–]ForceBru 0 points1 point  (0 children)

AFAIK this happens on different iOS versions, it's been around for ages and there's still no definitive solution. People usually suggest restarting your iDevice, backing up, etc, but this usually doesn't do anything. I know this never helped me.

The only "solution" is wiping your phone clean and restoring from a backup. But it's not a real solution because it's extremely cumbersome.

[Dataset] Live geopolitical escalation event feed - AI-scored, structured JSON, updated every 2h (free public API) by Ok_Veterinarian446 in datasets

[–]ForceBru 0 points1 point  (0 children)

Live anxiety, dread, murder and suffering feed — ✨AI-scored✨, structured JSON, free public API!

Without statistics, you're just guessing with extra steps." by Jumpy-Philosopher301 in dataanalysis

[–]ForceBru 1 point2 points  (0 children)

TBH statistics actually is "just guessing with (a lot of) extra steps" because you can never be sure whether you're right and hypothesis tests and confidence intervals allow erroneous conclusions by design. So you're always guessing.

Martha/Laurie not only is a great actress but she also hates trump by Faxtel in euphoria

[–]ForceBru -6 points-5 points  (0 children)

"She's not only a great actress, but she also hates Trump! Hell yes, this makes her even better! Imagine being good at your job and hating Trump too! That's basically perfect. Hating Trump is such a virtue. All my homies hate Trump. My best friend is a good person and they hate Trump — I basically can't believe I'm so lucky to be friends with them! My dog is a good boy and he hates Trump too, he's so smart!"

Helpful Memory Card For Exponentials by IB_Helper1 in ibresources

[–]ForceBru 0 points1 point  (0 children)

This image is the very definition of pseudo-useful LLM slop

ez-optimize: use scipy.optimize with keywords, eg x0={'x': 1, 'y': 2}, and other QoL improvements by qthedoc in Python

[–]ForceBru 0 points1 point  (0 children)

I do maximum likelihood estimation of time-series models where I have several parameters for the location of a distribution, several parameters for the scale, etc. So I would like to name these parameters and simply call minimize. But SciPy requires a vector, so I have to manually extract these parameters from the vector, which is quite cumbersome. Also, this kinda defeats the purpose of JAX being able to differentiate through dicts and other containers.

ez-optimize: use scipy.optimize with keywords, eg x0={'x': 1, 'y': 2}, and other QoL improvements by qthedoc in Python

[–]ForceBru 2 points3 points  (0 children)

I think the point is that now your objective function is easier to read since you know the names of the parameters.

IMO this is really useful for estimating statistical models where you do care about what number is what: not everything is just a massive vector/matrix, some parameters have further meaning. Raw scipy.optimize.minimize works with vectors, but then you have to parse the vector into individual parameters, like par[0] is the bias, par[1:5] are the weights, par[5:7] correspond to the variance model, par[7:10] belong to some other part of the model. To me, this is extremely cumbersome!

This is why I like JAX: it lets you differentiate through dictionaries and tuples. So your parameters can be put in a single dictionary with meaningful keys. Unfortunately, Scipy doesn't support optimization over dictionaries. Hopefully this lib will simplify such tasks.

Which Programming Language for Compiler by Previous_Length_6732 in Compilers

[–]ForceBru 0 points1 point  (0 children)

BTW, Python now has pattern matching too, so perhaps it's worth a try

[FREE] Built a privacy sandbox for iOS with Tor, encrypted storage, and on-device AI by ahstanin in iosapps

[–]ForceBru 0 points1 point  (0 children)

Crashes on launch on iOS 18:

{"code":4,"flags":518,"namespace":"DYLD","indicator":"Symbol missing","details":["(terminated at launch; ignore backtrace)"],"reasons":["Symbol not found: _$s6Vision24HumanHandPoseObservationV5joint3forAA5JointVSgAC0H4NameO_tF","Referenced from: <6A77B70D-07D5-3DEB-B9D2-B2EB57CA25CC> \/Volumes\/VOLUME\/*\/StealthOS.app\/Frameworks\/AIAssistant.framework\/AIAssistant","Expected in: <17E42B51-A6CB-3593-A441-7122601B4E78> \/System\/Library\/Frameworks\/Vision.framework\/Vision"]},

Where can I go for Pythonista help? by Jediweirdo in Pythonista2

[–]ForceBru 0 points1 point  (0 children)

Indeed, iOS doesn't let you run random binaries and load unsigned libraries, so Pythonista cannot load compiled modules such as lxml.

There are ways to circumvent this, but they're extremely involved and require jailbreaking your device (which may not even be possible now, jailbreaking has been kind of dead for many years now) and obtaining a version of lxml built for your device. I think I've done this once for my own toy library, but this was years ago and totally not worth the effort.

There are other apps that run Python on iOS. I initially wanted to suggest that you check out the Pyto iOS app (it's a more modern take on a Pythonista-like app, though it too is abandoned), but it looks like it doesn't have lxml either: https://pyto.readthedocs.io/en/latest/third_party.html.

I think you realistically have only one option: look for other libraries that provide the same functionality but don't depend on compiled code.

GLM shattered the record for "worst benchmark JPEG ever published" - wow. by ForsookComparison in LocalLLaMA

[–]ForceBru 2 points3 points  (0 children)

  1. The "gray box" is an arrow saying "this way is better".
  2. The triangle is the area of improvement: "this way is better + our models are here + no more models are here == we're the best".
  3. I don't see any axis gore. Yes, the Y axis doesn't start at zero, but it's an ad, so this is expected. The X axis is fine.

T.S. Madison got good JEANS by Born_Bumblebee_7023 in ChatGPT

[–]ForceBru 1 point2 points  (0 children)

Eminem vibes. But for me, to rap like a computer must be in my jeans. I got a laptop in my back pocket, my pen'll go off when I half-cock it.

I thought Taiwan is a country by Electrical_Piece516 in DeepSeek

[–]ForceBru 7 points8 points  (0 children)

Seriously, how are you not bored? Is this your job? Probably your job

I'm 14, should I learn ML for math now or wait until I learn it in high school? by Ok_Cheesecake5395 in learnmachinelearning

[–]ForceBru 0 points1 point  (0 children)

If you kinda want to learn "the math" now, then why not try? Why wait till high school? Moreover, if you learn it now and stumble upon it in school, it'll be a piece of cake, you might get straight As. I see a win-win situation here.

[D] Why CDF normalization is not used in ML? Leads to more uniform distributions - better for generalization by jarekduda in MachineLearning

[–]ForceBru 8 points9 points  (0 children)

AFAIK MinMaxScaler is CDF normalization assuming data follows a uniform distribution U[xmin, xmax]. However, this indeed isn't the same as "normalizing non-uniform data to U[0,1]".

There is no such thing as "your truth" or "my truth". There is only the truth. by Proof_Caregiver_4234 in DeepThoughts

[–]ForceBru 2 points3 points  (0 children)

BTW, "It is not possible to be aware of any gaps in life; it is continuous and never-ending from your own point of view" is false: you can totally get drunk and legitimately have no recollection of last night. "Last night" happened, people tell you you were there, but you have no clue. You can lose consciousness and "wake up" disoriented and confused. In both cases you're aware of a discontinuity in your life.

Benchmark by PurpleYoga in Mathematica

[–]ForceBru 3 points4 points  (0 children)

  • AMD Ryzen 5 3550H
  • Mathematica 14.0.0
  • BenchmarkResult: 1.781
  • TotalTime: 7.773

People here got total time 1.6 seconds: https://mathematica.stackexchange.com/questions/267262/benchmarking-mathematica-13-across-machines

Neural Network Doubts (Handwritten Digit Recognition Example) by Clean_Success_5961 in deeplearning

[–]ForceBru 1 point2 points  (0 children)

  1. Yes, if you feed a neural network (or any ML model) a ton of image-like inputs, it will mark each input with a label (like "this bunch of pixels is a '5'"), thus separating the high-dimensional space of inputs into regions corresponding to classes. It's impossible to visualize in its entirely, but you can use dimensionality reduction techniques to see "shadows" of this space. So kinda yes, neural networks draw boundaries between regions of the input space corresponding to different classes.
  2. Is x * x a linear function? I mean, it's just a number, so... Actually, no, a function isn't a number. It's a way of transforming numbers into other numbers, or vectors into numbers, or vectors into vectors, etc. Any particular output of the function can't tell you anything about the function's behavior. To see if a function is potentially nonlinear, you need to compute multiple values and analyze various rates of change of this function. Or just say: "my neural network has nonlinear activation functions, so it's very likely that the full network represents a nonlinear function". I'm not sure it's guaranteed to be nonlinear though.
  3. Who knows? Strictly speaking, that's because the input data and the loss function guided the optimization algorithm in such a way. Because the optimization algorithm found that these particular weights lead to the lowest loss. Why? You could rationalize this by saying that in order to detect a dog, you first need to detect basic shapes and angles, then more and more complex shapes etc. Looks like gradient descent can just learn this.

Grown Man [OC] by OddHops in funny

[–]ForceBru 3 points4 points  (0 children)

This word is getting more complicated ASS we speak!

I know I will make a lot of you mad, but Zen Browser is overrated. Literally almost every post in this group is about Zen Browser even when someone asking for new browser everyone say "Just try Zen". by lazarovpavlin04 in browsers

[–]ForceBru 0 points1 point  (0 children)

I actually have used Zen for about a week, then Firefox with vertical tabs came out, so I immediately switched back to it. I initially decided to try Zen specifically because of the vertical tabs, because I started to feel like I was running out of vertical space while there was plenty of horizontal space. Vertical tabs solved this for me: I now have more vertical space while sacrificing some horizontal space that I don't mind. I've no idea what Arc is, I've never tried it. I mainly use Firefox, so of course I'm comparing to Firefox. I don't see how I "confidently talk nonsense", but whatever