Hi all of you,
I am wondering how you solve or ignore 😁 this jpylyzer warning when you validate a jp2 file
<isValid format="jp2">False</isValid> <containsWellformedXML>False</containsWellformedXML> ?
Thanks in advance
#validation #jpeg2000 #jp2 #digipres #digitalpreservation
🎓 #InAcademia, the real-time online student validation service, has continued to grow in 2022!
The service is now operational in 🇳🇱 🇩🇪 🇩🇰 🇪🇸 🇫🇷 🇮🇹 🇸🇪 🇹🇷 🇦🇹 🇮🇸 🇫🇮
Read about #NRENs activities in Trust & Identity (and much more) in the 2022 GÉANT #Compendium of NRENs 👉
https://resources.geant.org/wp-content/uploads/2023/07/Compendium-2022-2023-IX.pdf
More about InAcademia at https://inacademia.org
#TrustAndIdentity #IAM #IdentityAndAccessManagement #eduGAIN #authentication #validation #privacy #students #academia
#academia #students #Privacy #validation #authentication #EduGain #identityandaccessmanagement #iam #trustandidentity #compendium #nrens #inacademia
For the last 3 years, we've been happily using my little library at work to run #html #validation in #Phoenix controller tests. I have no idea if anyone else is using it... but I finally improved the docs and added a #LiveView example. Better very late than never I guess? 😅 https://hexdocs.pm/vnu/usage.html
#liveview #phoenix #validation #html
I haven't looked for a PyPI module to do this, specifically. In the past, I've done simple functions with dict lookups to map keys from one source to a canonical value, or with Pydantic, use alternate constructors that you call depending on which source you're dealing with.
Example at https://pastebin.com/8Xt5EK6R .
#adapter #constructor #validation
Everything you always wanted to know about model cross-validation but where afraid to ask
#Validation and #VerificationModels...
#Update: 2023-07-29
#IF #ByChance you #Happen to #EncounterAnyone that #Resembles me on #AnyOtherPlatform [#SocialMedia], then you #Engage #AtYourOwnRisk
#ChancesAre; #IT's #NotMe...
🧙⚔️🤖🐺🤖⚔️🧙 | 🪐🦹🚀🦄🚀🦹🪐
#validation #verificationmodels #update #if #bychance #happen #encounteranyone #resembles #anyotherplatform #socialmedia #engage #atyourownrisk #chancesare #it #notme
The #Bible abridged:
A powerful man seduces a wife and has an illegitimate son with her. The son grows up never knowing his father, but wanting to impress him, he proclaims that he's the son of this man, and actively gathers a fandom. Ultimately he's tortured to death by people who don't like his dad, and in his final breath realizes that people are all pretty retarded in general. It's a story about how retarded it is to seek #validation.
'Lakadbaggha' wins in Stuttgart: 'Validation of effort to create impactful cinema,' says Anshuman Jha #Lakadbaggha #Stuttgart #Validation #AnshumanJha #socialnewsxyz
#socialnewsxyz #AnshumanJha #validation #stuttgart #Lakadbaggha
Intelligenza artificiale: Scopriamo cosa si intende per Training Set, Validation Set e Test Set
Oggi parliamo di tre protagonisti fondamentali nel #MachineLearning: i set di #training, #validation e #test. Se avete mai avuto a che fare con il #MachineLearning, vi sarete sicuramente imbattuti in questi termini. Ma cosa significano e, soprattutto, perché sono così importanti? Ecco a voi una guida semplice e diretta.
Condividi questo post se hai trovato la news interessante.
#redhotcyber #online #it #web #ai #hacking #privacy #cybersecurity #cybercrime #intelligence #intelligenzaartificiale #informationsecurity #ethicalhacking #dataprotection #cybersecurityawareness #cybersecuritytraining #cybersecuritynews #infosecurity
#machinelearning #training #validation #test #redhotcyber #online #it #web #ai #hacking #privacy #cybersecurity #cybercrime #intelligence #intelligenzaartificiale #informationsecurity #ethicalhacking #dataprotection #CyberSecurityAwareness #cybersecuritytraining #CyberSecurityNews #infosecurity
Grayscale CEO: BlackRock ETF filing a ‘moment of validation’ for Bitcoin - BlackRock’s commitment to advancing its crypto efforts only lends... - https://cointelegraph.com/news/blackrock-etf-validates-bitcoin-grayscale-ceo-sonnenshein #michaelsonnenshein #validation #grayscale #blackrock #filing #etf #btc
#btc #etf #filing #blackrock #grayscale #validation #michaelsonnenshein
I get the impression that #physics as an #academic discipline does not place much value on the independent #verification / #validation of #experimental / #computational results. Thoughts?
#computational #experimental #validation #verification #academic #physics
Automatisiertes Testen: Welche QA-Prozesse sollten auf die Validierung von Testcode ausgerichtet sein?
Idealerweise sollte die Testautomatisierung dem gleichen Grad an Validierung unterlie
https://www.dev-crowd.com/2023/07/05/automatisiertes-testen-welche-qa-prozesse-sollten-auf-die-validierung-von-testcode-ausgerichtet-sein/
#ExplorativesTesten #Penetrationtest #Programmierung #Python #TestEngineering #Testframework #Testmanagement #Testsuites #Tools #Tools #QualityAssurance #Validation
#ExplorativesTesten #PenetrationTest #programmierung #python #TestEngineering #Testframework #TestManagement #Testsuites #tools #qualityassurance #validation
75% of Steam Games Ever Tested are now either Playable or Verified on the Steam Deck (that's 13306 games ever tested at the time of writing).
#steamdeck #steam #gaming #validation #verified #playable #linuxgaming
#SteamDeck #steam #gaming #validation #verified #playable #linuxgaming
#Python #Typing #Pydantic version 2.0 (2023-06-30)
"Pydantic is the most widely used #data #validation library for #Python."
- https://docs.pydantic.dev/2.0/blog/pydantic-v2-final/
- https://docs.pydantic.dev/latest/api/networks/
- https://github.com/Kludex/awesome-pydantic
# Why use Pydantic ?
Powered by type hints — with Pydantic, schema validation and serialization are controlled by type annotations; less to learn, less code to write and integration with your IDE and static analysis tools.
Speed — Pydantic's core validation logic is written in Rust, as a result Pydantic is among the fastest data validation libraries for Python.
JSON Schema — Pydantic models can emit JSON Schema allowing for easy integration with other tools.
Strict and Lax mode — Pydantic can run in either strict=True mode (where data is not converted) or strict=False mode where Pydantic tries to coerce data to the correct type where appropriate.
Dataclasses, TypedDicts and more — Pydantic supports validation of many standard library types including dataclass and TypedDict.
Customisation — Pydantic allows custom validators and serializers to alter how data is processed in many powerful ways.
Ecosystem — around 8,000 packages on PyPI use Pydantic, including massively popular libraries like FastAPI, huggingface/transformers, Django Ninja, SQLModel, and LangChain.
Battle tested — Pydantic is downloaded >70m times/month and is used by all FAANG companies and 20 of the 25 largest companies on NASDAQ — if you're trying to do something with Pydantic, someone else has probably already done it.
# Some projects
- https://github.com/jordaneremieff/djantic (Pydantic model support for Django)
- https://github.com/litestar-org/polyfactory (Simple and powerful factories for mock data generation)
- https://github.com/koxudaxi/datamodel-code-generator
(Pydantic model and dataclasses.dataclass generator for easy conversion of #JSON, #OpenAPI, JSON #Schema, and #yaml data sources)
- https://github.com/ghandic/jsf (Creates fake JSON files from a JSON schema)
- https://github.com/lincolnloop/goodconf (Transparently load variables from environment or JSON/YAML/TOML file)
- https://litestar.dev/ (Light, Flexible and Extensible #ASGI #API framework Effortlessly Build Performant APIs)
#python #typing #data #validation #pydantic #json #openapi #schema #yaml #asgi #api
Annika Reinke, #DKFZ – Validation: an underestimated challenge in AI-based image analysis
#Validation is crucial; choose the “best” metric for your problem
problem-aware #metric recommendation framework; problem fingerprint: select metric fitting best to the problem from a pool, with pros and cons
#hiconference2023 #helmholtzaicon #metric #validation #dkfz
I don’t want to be famous, I don’t care if I’m rich (just comfortable would be nice), but what I do want is to be appreciated. I want that little dopamine hit of someone looking at something I did or said and acknowledging the effort. I think that’s all a lot of people want: a little recognition.
Kids who don’t feel appreciated or recognised, who desperately want validation from their parents or teachers or friends but never get it, don’t easily learn to appreciate themselves. They continue to seek out that validation by becoming people pleasers. And they value their own achievements or abilities less because they have never had that external validation to corroborate their internal validation.
And, at some point, they will stop doing what is expected because what they were doing wasn’t appreciated.
So, appreciate effort when it is made because you’ll notice it when it’s no longer forthcoming and, by then, it will be too late.
#appreciation #validation #gratefulness #recognised
4/
A general issue concerns seductive #research black-box tools (or, equivalently, trending methods "inspired" by published works one doesn't really understand): easy to incur #overfitting, which implies modelling not only the "signal" being studied in too few data, but also (or mostly) their useless noise.
Recursive: if we fall into the trap (no proper #validation), our readers may be led to believe that these shortcuts have a chance to work, perpetuating anti-culture.
#Research #overfitting #validation #computationalmodelling
How you feel inside is just as valid as how you feel outside.
If you think you are experiencing an emotion but others fail to recognize it, and instead dismiss you and your emotions, that’s on them.
Would you like to learn about testing the recently released OGC API - Tiles standard for compliance? 🪒 Check out the #tutorial at the #mentorstream #CODESPRINT21. Last days to register! https://developer.ogc.org/sprints/21/ #OGC #Tiles #maps #OGCAPI #standards #compliance #validation #conformance
#conformance #validation #compliance #standards #OGCAPI #maps #tiles #OGC #codesprint21 #mentorstream #tutorial