41
submitted 2 years ago* (last edited 2 years ago) by j4k3@lemmy.world to c/linux@lemmy.ml

I want to extract and process the metadata from PNG images and the first line of .safetensors files for LLM's and LoRA's. I could spend ages farting around with sed or awk but formats of files are constantly changing. I'd like a faster way to see a summary of training and a few other details when they are available.

all 33 comments
sorted by: hot top controversial new old
[-] rtxn@lemmy.world 86 points 2 years ago
[-] huginn@feddit.it 17 points 2 years ago

I have a very handy command in my .vimrc for this -

command! JSON setlocal filetype=json | %!jq .

Anytime I'm in a json file that isn't formatted it's as simple as typing :JSON to have it all sorted.

[-] UpperBroccoli@lemmy.blahaj.zone 9 points 2 years ago

Specifically this version of yq - there are other versions bundled with distros that look and act very differently and lack the potency of this version.

[-] leverage@lemdro.id 3 points 2 years ago

Seriously, can't get those 15 minutes back.

[-] hertg@infosec.pub 3 points 2 years ago

And there is htmlq too, if you ever need to scrape some stuff from a website :)

[-] rtxn@lemmy.world 1 points 2 years ago

Naw, everybody knows that you have to use regex for that

[-] jet@hackertalks.com 37 points 2 years ago
[-] Gutless2615@ttrpg.network 14 points 2 years ago

I’d probably go Python but I’m an idiot

[-] rickdg@lemmy.world 12 points 2 years ago

jless to know what the hell I’m looking at and then maybe jq

[-] patchexempt@lemmy.zip 11 points 2 years ago

jq, or if I need to do something wacky a one-off python script.

[-] adept@programming.dev 9 points 2 years ago
[-] pingveno@lemmy.ml 1 points 2 years ago

Yeah, I've been learning some nushell. If you're dealing with data, it's just a great tool. So many sharp edges in the POSIX shell come from it being stringly typed, so having a strongly typed shell is extremely helpful.

[-] Nibodhika@lemmy.world 8 points 2 years ago

A week ago I would have said jq, but just the other day I discovered nushell and have been loving it, if you deal with structured data often it's way easier, just bear in mind it's not POSIX compatible

[-] Diplomjodler3@lemmy.world 6 points 2 years ago

Python is very good for working with JSON. Definitely will get you there faster than awk for anything not completely trivial.

[-] Hammerheart@programming.dev 6 points 2 years ago

What are some goos resources for learning jq? I really struggle when it comes to nested keys/values which obviously limits my ability to use it.

[-] timbuck2themoon@sh.itjust.works 4 points 2 years ago

Online json parser. Throw in some data and then structure a query.

It'll keep updating the results as you tweak your query. A simple search will probably give you twenty that'll work. I can't remember what i normally use off the top of my head.

[-] bizdelnick@lemmy.ml 4 points 2 years ago
[-] Hammerheart@programming.dev 2 points 2 years ago* (last edited 2 years ago)

I have perused it, but its both so dense and so broad that its not that helpful unless i know exactly what I'm looking for. I have also tried info and tldr. I actually like tldr the most,. although the exhaustiveness of the man pages must be admired. I dont find it to be the best teacher.

[-] beejjorgensen@lemmy.sdf.org 4 points 2 years ago

I hate to do this, but AI chatbots are typically pretty good at giving examples for things like this and you can learn from it.

[-] xavier666@lemm.ee 2 points 2 years ago

AI chatbots are very good for teaching. I'll give them that.

[-] beejjorgensen@lemmy.sdf.org 1 points 2 years ago

I definitely use them a lot, but I think "very" is too strong a word. It's pretty easy to get confident, contradictory information from them. They're a good place to start and brainstorm, but all the information has to be verified either by running and testing the code, or by finding a human source.

[-] xavier666@lemm.ee 2 points 2 years ago

True. I wouldn't use them for very complicated stuff. I currently use them for "what is x?" and "how is x different from y?" kinds of question.

One advantage of using an AI is that it removes a lot of fluff that you get on blogs. However, that can change very soon when our AI overlords figure out monetization.

[-] coolmojo@lemmy.world 5 points 2 years ago

Have a look at miller

[-] tiredofsametab@kbin.run 4 points 2 years ago

Previously, I coded something in Rust real quick to spit out and manipulate some JSON, but it looks like the jq/yq below would work fine.

[-] palordrolap@kbin.run 3 points 2 years ago

There are probably pre-written awk scripts out there that already do what you want, not that I know where they'd be.

That said, you might be better off using one of the bigger but still fairly commonly installed languages. There's bound to be things on PyPI (for Python) or CPAN (for Perl) that could be bolted together for example.

If you're really lucky there might even be something that covers your whole use-case, but I haven't checked.

[-] semperverus@lemmy.world 3 points 2 years ago

Python has built-in json parsing, as does (and i know this isnt gonna be popular) PowerShell.

[-] eldavi@lemmy.ml 2 points 2 years ago

i'm assuming that command line means bash; in which case jq and regex are your friends.

[-] j4k3@lemmy.world 2 points 2 years ago

I found a Python project that does enough for my needs. Jq looks super powerful though. Thanks. I managed to get yq working for PNG's, but I had trouble with both jq and yq with safetensor files. I couldn't figure out how to parse a string embedded in an inconsistent starting binary, and with massive files. I could get in and grab the first line with head. I tried some stuff with expansions, but that didn't work and sent me looking for others that have solved the issue better than myself.

[-] CaptPretentious@lemmy.world -2 points 2 years ago

Probably not popular opinion, but pwsh (powershell). It's got a lot of tooling built in and means I don't have to learn a different tool just because I'm in a different system.

[-] helpimnotdrowning@lemmy.sdf.org 1 points 2 years ago

Big fan of running cat file.json | ConvertFrom-Json and just being able to do things quickly!

[-] MasterBlaster@lemmy.world -2 points 2 years ago

For me, a C# developer by trade, this is easily solved with a one command C# call. It's possible you already have dotnet 6 or 8 on your distro as there are many C# Linux apps now.

https://www.nuget.org/packages/System.Text.Json/9.0.0-preview.4.24266.19

this post was submitted on 12 Jun 2024
41 points (97.7% liked)

Linux

57274 readers
448 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS