7 ms·
TextAnalysisTool.NET
- internetter 3y agoMarginally related, but this is one of the things I'm bullish on ChatGPT for. Too frequently, I've gotten hundreds of lines of malformed textual data that I need to standardize. This is like impossible with REGEX but I can drop it into GPT and it does this wonderfully.
- Liftyee 3y agoAgreed. It works especially well for formatting where semantics matter, such as separating the term and definitions of flashcards. Hard to do with code, but easy with GPT.
- BurnerBotje 3y agoThere is however no indication if it failed on a line when using ChatGPT, it could provide you with a slightly incorrect result.
- internetter 3y agoYeah that's always been a fear but I always dog food and I've had no issues yet
- RugnirViking 3y agoive done it with transforming data (for example pasting a table in and asking it to turn it into LaTeX) or something and had the occasional issue with it misordering or forgetting things. It didn't take long to spot the error for me though
- ukuina 3y agoYou could run it through thrice with a different prompt/temperature/model and pick the majority result (or exit with success on the first two passing runs).
- akoboldfrying 3y agoGood idea. If the data is a list of records where the order isn't important, randomly permuting them (ETA: then sorting the final outputs) would be another option. ETA2: Would the downvoter care to explain why? Genuinely puzzled.
- osigurdson 3y agoI have no idea how Regex became the standard. The syntax is impossible to remember unless you write regex expressions daily. Most people only rarely need regex so it needs to be relearned every time. It is also incredibly unsatisfying to write (and read).
- sgc 3y agoI used it a lot for a few years decades ago, and only use it rarely now. I remember the syntax well and I am not know for having a great memory. I think its terseness suits the extreme focus of its use perfectly.
- pipeline_peak 3y agoAs much as I hate to hop on the AI bandwagon, this is definitely where tools like Chat GPT shine. Not to mention, non tech people will now be able to use what once could’ve only been done with cryptic regex.
- broodbucket 3y agoThe only good thing to come out of regular expressions is https://regexcrossword.com/ https://regexcrossword.com/
- ukuina 3y agoWhat would you replace regex with?
- dextro42 3y agoI tried using ChatGPT (4) for format conversion. I had a draft yaml file and needed some differently structured json. Mainly with the same content. If you just want to change the format it works. If you need more than programming skills it seems too fail duo to the amount of text. E.g. if you have a list of items and want ChatGPT to generate a meta field which it cannot generate using simple python code it stops after 10 to 20 elements. Thus at least the cloud version doesn't work so well here. I also wanted it to help me fill out my i18n file with translations and plural forms. Even thought he got every word correct i needed to split it into multiple requests. Not sure if the api would have worked better (used the web frontend). For the plural forms I finally added them myself as it was way faster for my natural language than copy pasting all the small chunks. Really hoped for more help there.
- fhaeberle 3y agohey, if you are search for really seamless i18n with nice DX, check out https://inlang.com https://inlang.com – js library, web editor, automation cli & vs code extension are just some of the completely free and open source offerings
- totetsu 3y agohttps://lnav.org/ https://lnav.org/ Is a good Linux command line tool in the same genre
- AdieuToLogic 3y ago> Is a good Linux command line tool in the same genre It is also a good OS-X/FreeBSD command line tool as well.
- totetsu 3y ago(Not .NET I should say ;))
- AdieuToLogic 3y ago> (Not .NET I should say ;)) Perhaps it might be[0]? I'm not quite sure how I feel about that however... :-D 0 - https://learn.microsoft.com/en-us/dotnet/core/install/ https://learn.microsoft.com/en-us/dotnet/core/install/
- totetsu 3y agoEveryone has autonomy over their own system. Who are we to judge if they want to do something like that.
- delta_p_delta_x 3y ago> do something like that What's wrong with this? Genuine question. Modern .NET is fully open-source with a permissive MIT licence. This includes the compiler and analysers infrastructure (Roslyn), the package manager (Nuget), and even the shell language (PowerShell). It is a superb alternative to Java, Go, and similar languages. Why is using .NET on Linux or MacOS such a weird thing?
- luismedel 3y ago
- keithnz 3y agoreminds me a bit of klogg https://github.com/variar/klogg https://github.com/variar/klogg which is more for log files and based off glogg which went dead. it has nice filtering and highlighting type stuff. It's great for live views of log files.
- neilpa 3y agoThis looks like the app I wanted ages ago when I tried to find a TextAnalysisTool.net replacement for OSX. https://superuser.com/questions/706761/textanalysistool-net-equivalent-for-os-x https://superuser.com/questions/706761/textanalysistool-net-...
- andix 3y agoIf I had to chose a name for it, it probably would be "Regex 401".
- atesti 3y agoWhere is the source code? It looks like they only host releases on github, but the license is MIT
- bramblerose 3y agoThe MIT license just gives you permission to use the work as published. Normally that work would be in source form, but there is nothing in the MIT license requiring that. In this case, it seems that the authors chose to release the binaries under the MIT license.
- Semaphor 3y agoJust for completeness: > I open-source pretty much all my work, but TextAnalysisTool.NET is an exception due to a variety of historical reasons. Sorry about that! -- https://github.com/TextAnalysisTool/Releases/issues/22 https://github.com/TextAnalysisTool/Releases/issues/22
- dash2 3y agoThis is grep++ right? My guess is that it's aimed more at the humanities. Hence the GUI. My experience: in the world of humanities text analysis, there are just a ton of Java programs which were funded by some academic grant. Mostly they are closed source, not updated, might have a horrible GUI, and the website is always written in 8 point font.... Don't hate them for what they are....
- brchn 3y agoThis tool is pretty good. Used it to find the meaningful errors from giant MSBuild logs
- sebazzz 3y agoWhenever convenient the MSBuild binary log file in combination with MSBUILD Structured Log Viewer is a better fit.