HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jeremyscanvic

no profile record

Submissions

What Color is Your Function? (2015)

journal.stuffwithstuff.com
1 points·by jeremyscanvic·قبل شهرين·0 comments

A History of the Early Years of AI at the University of Edinburgh

journals.sagepub.com
2 points·by jeremyscanvic·قبل 3 أشهر·0 comments

DeepInverse Joins the PyTorch Ecosystem

pytorch.org
2 points·by jeremyscanvic·قبل 8 أشهر·0 comments

Gamma Correct Blurring (2015)

iquilezles.org
1 points·by jeremyscanvic·قبل 8 أشهر·0 comments

comments

jeremyscanvic
·قبل 23 يومًا·discuss
Is ggplot2 considered to be a nice interface to plot things compared to say matplotlib in Python? I'm asking out of curiosity, I haven't touched R much
jeremyscanvic
·قبل 24 يومًا·discuss
I knew about .git/info/exclude and ~/.config/git/ignore but not about git-check-ignore(1). Neat!
jeremyscanvic
·قبل 25 يومًا·discuss
That's wild I didn't expected the plagiarism to be that blatant. Extra shocked as a French who enjoyed listening to many of his talks
jeremyscanvic
·قبل 26 يومًا·discuss
I've switched form LaTeX to Typst for all my informal/semi-formal writing and it's a delight to work with. I hope I'll be able to use it for more formal documents in the future (conference/journal papers, slides for high stakes presentations)
jeremyscanvic
·قبل شهرين·discuss
In France some people do and some people don't but it's definitely a thing
jeremyscanvic
·قبل شهرين·discuss
I work on one of the projects featured in the PyTorch Ecosystem [1] and I really recommend it to anyone working on a PyTorch library. Their team is really responsive and they even offer promotion on their blog & social media.

[1] https://github.com/deepinv/deepinv
jeremyscanvic
·قبل شهرين·discuss
I wonder how this relates to the Perez All-Weather and Preetham sky models. Not an expert about that but I managed to implement those in the past and it was quite a fun project!

https://github.com/jscanvic/SkySim
jeremyscanvic
·قبل 3 أشهر·discuss
It's very insightful how they explain the difference between dataframes and SQL tables / standard relational structures!
jeremyscanvic
·قبل 4 أشهر·discuss
Like other commenters the tone of this post threw me off but I was really impressed by the design of the website. Congrats for building it, it shows your hard work and taste!
jeremyscanvic
·قبل 4 أشهر·discuss
What I usually do when I have to read large man pages like bash(1) is I read them as PDFs:

man -Tpdf bash | zathura -

Replace zathura with any PDF viewer reading from stdin or just save the PDF. Hope that can be useful to someone!
jeremyscanvic
·قبل 4 أشهر·discuss
For those interested you can also look up for opto-electronic transfer functions (OETF) and electro-optical transfer functions (EOTF).
jeremyscanvic
·قبل 4 أشهر·discuss
Is it possible in practice to control the side effects of making changes in a huge legacy code base?

Maybe the software crashes when you write 42 in some field and you're able to tell it's due to a missing division-by-zero check deep down in the code base. Your gut tells you you should add the check but who knows if something relies on this bug somehow, plus you've never heard of anyone having issues with values other than 42.

At this point you decide to hard code the behavior you want for the value 42 specifically. It's nasty and it only makes the code base more complex, but at least you're not breaking anything.

Anyone has experience of this mindset of embracing the mess?
jeremyscanvic
·قبل 5 أشهر·discuss
How would you refer to it in French out of genuine curiosity?
jeremyscanvic
·قبل 5 أشهر·discuss
Most of them do but it's not mandatory and deblurring can be used [1]

[1] Cold Diffusion: Inverting Arbitrary Image Transforms Without Noise, Bansal et al., NeurIPS 2023
jeremyscanvic
·قبل 5 أشهر·discuss
You're absolutely right! Diffusion models basically invert noise (random Gaussian samples that you add independently to every pixel) but they can also work with blur instead of noise.

Generally when you're dealing with a blurry image you're gonna be able to reduce the strength of the blur up to a point but there's always some amount of information that's impossible to recover. At this point you have two choices, either you leave it a bit blurry and call it a day or you can introduce (hallucinate) information that's not there in the image. Diffusion models generate images by hallucinating information at every stage to have crisp images at the end but in many deblurring applications you prefer to stay faithful to what's actually there and you leave the tiny amount of blur left at the end.
jeremyscanvic
·قبل 5 أشهر·discuss
The missing piece of the puzzle is how to determine the blur kernel from the blurry image. There's a whole body of literature on that that's called blind deblurring.

For instance: https://deepinv.github.io/deepinv/auto_examples/blind-invers...
jeremyscanvic
·قبل 5 أشهر·discuss
Blur is perhaps surprisingly one of the degradations we know best how to undo. It's been studied extensively because there's just so many applications, for microscopes, telescopes, digital cameras. The usual tricks revolve around inverting blur kernels, and making educated guesses about what the blur kernel and underlying image might look like. My advisors and I were even able to train deep neural networks using only blurry images using a really mild assumption of approximate scale-invariance at the training dataset level [1].

[1] https://ieeexplore.ieee.org/document/11370202
jeremyscanvic
·قبل 6 أشهر·discuss
Thanks!
jeremyscanvic
·قبل 6 أشهر·discuss
Really cool! Any specific reason for the choice of Oklab instead of say HSL/HSV?
jeremyscanvic
·قبل 6 أشهر·discuss
Any reference you can share on this? I'm genuinely curious speaking as a PhD student in image processing for computer vision