It's largely an artifact of classifier-free guidance used in diffusion models. It makes the image generation more closely follow the prompt but also makes everything look more saturated and extreme.
Sounds like the Lishen batteries might have a safety issue when charged fully. Not sure why else they would limit the charge on them. At least they're offering free replacement or cash payment.
Here is an article that explains more about the outliers that emerge in large transformer models, which is what this modified softmax is being proposed to fix:
Very cool. This is exactly how I would expect ChatGPT to be integrated into a search engine - removing the burden of of reading multiple results to find the complete answer to your question. Let ChatGPT read the results and provide a summary tailored to the wording of your question.
I hope developers still default to making their personal repos public after this change. One of the fringe benefits of GitHub is the ability to search across the entire site for uses of obscure, poorly-documented APIs. Defaulting to most repos becoming private would greatly hinder this.
I agree that’s a potential concern, but you’re worrying about it a year too late. Individual developers have been able to make repos private on the free plan since January 2019: https://github.blog/2019-01-07-new-year-new-github/. This announcement only affects the cost of private repos for teams of collaborators.
I think another factor for the marathon finishing time discontinuities is the use of pacers --- people who run carrying signs at a pre-defined speed (usually targeting a specific finishing time, e.g. 3:15). Lots of people who have finishing goals will run in a pack with this person so they know they're going fast enough, then will all finish just under the target time.
I'm curious - was that TV edge-lit? I've been on the search for a suitable TV for this project for a while now. Most of the cheap/broken TVs you can find are backlit with fluorescent tubes. I disassembled one and discovered it did not have the lens. And from searching for TVs, it looks like most large screens (beyond about 30") directly backlight with LEDs rather than using LEDs around the sides. Was wondering if the direct-lit LED TVs still had the lens.
Yes, it is edge-lit. And since the original power supply still works, I was able to use the existing LEDs. I'm not a huge fan of the spectrum/quality of the light though, so I may replace the existing edge lights with pleasing LED strip lights.
For what it's worth, I'm still able to open and use Doxygen HTML docs without running a web server. Looks like it loads both CSS and JS. So I'm not sure what the changenote actually means.
That makes sense, because so much security nowadays depends on keeping origins separate. It's hard to tell whether any given file:// URL belongs in the same origin as another file:// URL. Better treat each file:// URL as its own origin.
CSS/JS imports in the HTML are ignored. Hyperlinks are links not file loads in the page. It means you can't load e.g. access a file via script (e.g. a JSON file in the directory, directly at least).