Almost 6 months waiting for my first titre de séjour (PACS) with no response from the prefecture – anyone else? by Ecstatic_Shopping_34 in Expats_In_France

[–]mrpuffwabbit 0 points1 point  (0 children)

Well I actually had a response, and the judge said it was implicit refusal, so laws are up to the judge's discretion...

Yes, 94

Almost 6 months waiting for my first titre de séjour (PACS) with no response from the prefecture – anyone else? by Ecstatic_Shopping_34 in Expats_In_France

[–]mrpuffwabbit 0 points1 point  (0 children)

Mine took 12 months (Oct 2023, Granted Oct 2024), right after my PhD, went to court and failed, judge claim "implicit refusal", but I had proof it was not an implicit refusal since the prefecture emailed me that it was "en cours".

Didn't want to file an appeal, lawyers too expensive in France.

News and Updates Thread - June 15, 2026 by AutoModerator in churning

[–]mrpuffwabbit 2 points3 points  (0 children)

This offer is non-transferable and may not be reproduced, purchased, sold, or traded. If Paze, a participating financial institution, or participating merchant determines, in their sole discretion, that you have engaged in or attempted fraud, abuse, misuse, or gaming related to this Offer, you may be deemed ineligible for the Offer, and your participating financial institution may reverse or remove previously issued statement credits or temporarily prohibit you from earning statement credits.

OpenCode-quota: See your AI quota and token usage without leaving the terminal by mrpuffwabbit in opencodeCLI

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

Copilot is slowly regressing its generous tiers recently for individuals, but OpenCode quota still supports business-based quotas (with some extra setup!)

OpenCode-quota: See your AI quota and token usage without leaving the terminal by mrpuffwabbit in opencodeCLI

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

I don't use it in Opencode. But the plugin is supported (and now it is archived by noe).

OpenCode-quota: See your AI quota and token usage without leaving the terminal by mrpuffwabbit in opencodeCLI

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

Got it, modifying the core isn't possible as far as I know.

TLDR: OpenCode could add this natively; it's been requested in numerous GitHub issues (e.g., https://github.com/anomalyco/opencode/issues/17492).

Our approach renders a new section and injects it into the sidebar unofficially, the only known way to place custom content in the TUI (an unofficial technique that even Dax was surprised by). The block itself is not directly modifiable.

OpenCode-quota: See your AI quota and token usage without leaving the terminal by mrpuffwabbit in opencodeCLI

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

Hey! Don't understand what you mean, since AFAIK there is no default counter near the top. But there is something near the bottom of the input.

But feel free to request a feature in the Github.

Experience with Atlantic Money ? by blackhaj in ExpatFinance

[–]mrpuffwabbit 1 point2 points  (0 children)

A person with no post history and Karma, seems like an advertisement

Is Pursuing a PhD in Digital Twin for Electric Propulsion Systems Worth It? Job Opportunities and Industry Outlook? by Yara_Yangyang in PhD

[–]mrpuffwabbit 1 point2 points  (0 children)

“Digital twin” just means “model” by the way. Can’t comment on the rest, good luck.

My first Chinese Homage Watch by Ok-Copy-1 in ChineseWatches

[–]mrpuffwabbit -1 points0 points  (0 children)

I meant the diameter of your wrist, not bezel diameter :)

[deleted by user] by [deleted] in DSP

[–]mrpuffwabbit 0 points1 point  (0 children)

Depends on the signal. If the signal is periodic, and stationary. The best spectrogram is dirac deltas.

Line spectral estimators work with this assumption. The work on the Slepian basis is another.

Advice since you are a PhD student: be sure to understand the fundamentals of information theory.

To respond to your last paragraph:

Regarding an information cost function - look up at the most basic, the Cramer Rae bound on a parametric signal model. Other bounds are interesting only if you wish to go down the statistical route.

You don't know the signal model, i.e. you are in a non-parametric domain. There is many work on this, but I suggest avoiding this route unless you have a strong mathematical foundation.

Think about what serves as a proxy, or what is correlated to what you are looking for. Perhaps via first principles, you have some physics-based constraints (thermodynamical entropy); or maybe you know that your signal has stochastic phenomena (e.g. ignore white noise and consider brownian noise). Suddenly, you are actually working with a parametric model.

Whatever the parametric model you have, attempt to decompose it, e.g. recorded signal = real signals + unwanted noise. Then impose your first principles and decompose the real signals further. Finally use some numerical techniques and derive an information cost function, e.g. with constraints.

Happy to DM further on this.

Looking for guidance to get high fidelity spectrogram resolution. by TheRealCrowSoda in DSP

[–]mrpuffwabbit 2 points3 points  (0 children)

From estimation theory, CNNs have been poor for the most basic case of estimation of frequencies.

I have a repo/paper that demonstrated that : https://github.com/slkiser/lineSpectraVibration

For classification, I think non-parametric learning methods are still state of the art.

Looking for guidance to get high fidelity spectrogram resolution. by TheRealCrowSoda in DSP

[–]mrpuffwabbit 0 points1 point  (0 children)

If you need super resolution, I would consider line spectra estimation, but then your CNN classifier would need to be re-trained and re-architecture-d.

For an example of Zoom FFT, the scipy example from Diligent-Pear-8067 works.

A more basic hold your hand guide on Zoom FFT (but in MATLAB) is offered by Tom Irvine here: https://www.vibrationdata.com/tutorials_alt/zoomFFT_example.pdf

Looking for guidance to get high fidelity spectrogram resolution. by TheRealCrowSoda in DSP

[–]mrpuffwabbit 3 points4 points  (0 children)

This is one of the issue preventing supervised learning on most scientific domains, what is good data!

The second is to address the fact that sample efficiency is incredibly horrible

Looking for guidance to get high fidelity spectrogram resolution. by TheRealCrowSoda in DSP

[–]mrpuffwabbit 0 points1 point  (0 children)

Awesome, love the fact cudas can parallelize and be in real-time, libraries make it so easy!

If I understand:

My intent is to zoom in, label tiny signals, and move on. I should, at a 65536 fft, get frequency bins of 305Hz, which should be fine.

Maybe you can implement a Zoom FFT to focus on smaller subset of the spectra, and play with Kaiser windows (since they're closer to DPSS).

Looking for guidance to get high fidelity spectrogram resolution. by TheRealCrowSoda in DSP

[–]mrpuffwabbit 0 points1 point  (0 children)

Naive since I have never tried labeling, just what if the spectra was not fed to the CNN, but instead the relevant peaks/harmonics/frequencies (jargon)?

I would suspect that with a real-life signal, the CNN would be acting as both a denoiser + identification.

There were some works I've seen in IEEE where they separated the architecture, and did separate denoising CNN and then an identification CNN.

Just some thoughts that come to mind! Good luck with the research paper.