• 3 Posts
  • 135 Comments
Joined 1 year ago
cake
Cake day: July 14th, 2023

help-circle


  • It seems that we focus our interest in two different parts of the problem.

    Finding the most optimal way to classify which images are best compressed in bulk is an interesting problem in itself. In this particular problem the person asking it had already picked out similar images by hand and they can be identified by their timestamp for optimizing a comparison of similarity. What I wanted to find out was how well the similar images can be compressed with various methods and codecs with minimal loss of quality. My goal was not to use it as a method to classify the images. It was simply to examine how well the compression stage would work with various methods.





  • I was not talking about classification. What I was talking about was a simple probe at how well a collage of similar images compares in compressed size to the images individually. The hypothesis is that a compression codec would compress images with similar colordistribution in a spritesheet better than if it encode each image individually. I don’t know, the savings might be neglible, but I’d assume that there was something to gain at least for some compression codecs. I doubt doing deduplication post compression has much to gain.

    I think you’re overthinking the classification task. These images are very similar and I think comparing the color distribution would be adequate. It would of course be interesting to compare the different methods :)




  • Jeg sidder trygt og roligt på perronen med en kop kaffe og ser tosserne løbe rundt og råbe AI uden at de ved hvad det er eller hvad de skal bruge det til. Jeg har ro i maven, bortset fra at jeg begynder at kunne mærke kaffen lidt. Jeg gør som jeg altid har gjort. Jeg bruger de bedste værktøjer til at løse en opgave og det måles ikke på hvordan man udtaler værktøjets navn. Måske bruger det et neuralt netværk måske gør det ikke. Det er ret uvigtigt i forhold til løsningen af opgaven. Det er software. Det er et værktøj. Parametrene er korrekthed og effektivitet.

    Hvis digitaliseringslemmingerne lige holder sig for ørene så har jeg en ting jeg vil sige… hallo! kan i høre mig?… nej, godt.

    Nogle gange er et digitalt værktøj slet ikke den bedste løsning.

    Så er det sagt. Jeg bliver nødt til at smutte nu, for jeg skal lige høre en erfaren kollegas mening om noget inden min pause er slut. Jeg orker nemlig ikke at skulle spørge en maskine, der kan sætte ord sammen i en overbevisende rækkefølge. Hvis min kollega ikke ved det så ser jeg om jeg kan finde en bog eller nogle artikler fra nogle andre erfarne mennesker, der har sat sig ind i emnet. Vi ses.

    Sorry, I don’t understand ‘Jeg sidder trygt og roligt på…’





  • smpl@discuss.tchncs.detoScience Memes@mander.xyzUse Zotero
    link
    fedilink
    English
    arrow-up
    4
    ·
    22 days ago

    I have this in code I’m writing right now…

    #ifdef DEBUG
        #define DEBUG_PRINT(...) printf(__VA_ARGS__)
    #else
        #define DEBUG_PRINT(...)
    #endif
    

    It is the most straighforward way to get the state of things while hammering on the keyboard trying to mash up something that looks like a program.







  • One of the most controversial changes of Chrome’s MV3 approach is the removal of blocking WebRequest, which provides a level of power and flexibility that is critical to enabling advanced privacy and content blocking features. Unfortunately, that power has also been used to harm users in a variety of ways. Chrome’s solution in MV3 was to define a more narrowly scoped API (declarativeNetRequest) as a replacement. However, this will limit the capabilities of certain types of privacy extensions without adequate replacement.

    Mozilla will maintain support for blocking WebRequest in MV3. To maximize compatibility with other browsers, we will also ship support for declarativeNetRequest. We will continue to work with content blockers and other key consumers of this API to identify current and future alternatives where appropriate. Content blocking is one of the most important use cases for extensions, and we are committed to ensuring that Firefox users have access to the best privacy tools available.

    https://blog.mozilla.org/addons/2022/05/18/manifest-v3-in-firefox-recap-next-steps/