


https://github.com/KerfuffleV2 — various random open source projects.

Sorry, didn't check back here for a few days. There absolutely can be German Shepherds!




These are the initial generations before upscaling/processing. Generated with Bifrost Project (SDXL model).



Here are a few more I made with Bifröst Project. It can handle generating in 1280x1024 which is pretty nice. I don't really like the square format that much.

Glad you liked it. Here's one more for the road! ::: spoiler Expand Maybe he's not in perfect shape but that's not going to stop him from enjoying li— I mean being activated.


No one expects the laser from the back.


They say war changes a man. I guess that goes for poodobots as well.

The messed up powerlines were annoying me, so here's one more attempt.


Sure... It's a bit hard to get pitbull, lab and robot to all come through clearly but I tried! (I also took it easy on you and didn't make him too pitiful looking.) First image is the completed version, second one is the initial 1024x1024 generation.



Not bad, but he looks a bit too upbeat for this thread. Let me fix that for you.

edit: I did the other one for fun also.

He seems very helpful and willing to give you a hand.

Any requests? I can make various dog breeds, wolves, foxes, whatever it takes to completely extinguish the joy in your heart.

Bonus white Dobermann and Siberian Husky pup.

Having a cheerful holiday? Let me fix that for you with a sad robot dog.


- At home
- As above. Happy days!
- On the streets for one day.
- On the streets for two weeks.
- On the streets... well, who can guess how long he's been standing there? It's not like they fall down once the batteries run out.
Model: FenrisXL, made in ComfyUI.

That is the worst site I've seen in a long time. Do yourself a favor and add
undefined
www.verticalfarmdaily.com###zijkant www.verticalfarmdaily.com###banners_zijkant
to your uBlock rules before following the link. If you don't have a way to block elements, may $diety have mercy on your soul.

Then it’s a cat-and-mouse game between the anti-adblock tech and the anti-anti-adblock tech.
My money (not literally though :) is on the anti-anti-adblock tech. That can be crowdsourced and generally adapts much faster than big companies.

Probably the furthest man made object from Earth at this point for sure.
The article says "Scientists believe compression heating caused the cap to vaporize as it sped through the atmosphere."

You can read as much Ayn Rand as you want with perfect understanding and you're not really going to learn anything.

Fans? Customers yeah, but fans?
They actually did at one point, but they threw it all away.
Permanently Deleted

Smaller models (7B down to 350M) can handle long conversations better
What are you basing that on? I mean, it is true there are more small models that support very long context lengths than big ones, but it's not really because smaller models can handle them better, but because training big models takes a lot more resources. So people usually do that kind of fine-tuning on small models since training a 70B to 32K would take a crazy amount of compute and hardware.
If you could afford fine tuning it though, I'm pretty sure the big model has at least the same inherent capabilities. Usually larger models deal with ambiguity and stuff better, so there's a pretty good chance it would actually do better than the small model assuming everything else was equal.

The article seems to repeat the same stuff over and over again.
On Lemmy, a popular social networking site, user KerfuffleV2 astutely noted that the article repeated points that had already been stated in the article.
"It seems like the article repeated the same content multiple times" said KerfuffleV2, a user on the social networking site Lemmy. "Perhaps they get paid by the word." the user added.
A rather uncreative article on thestreet.com triggered some snarky online comments including one from a user named KerfuffleV2. This user noted that the article repeated the same content multiple times.

Can you provide an example where science cannot explain a situation, because I can’t honestly think of any.
Not OP, but there is some stuff. One big example is qualia. How does matter give rise to actual feelings, experiences of things? This isn't something we can measure directly and it actually seems like it won't be something we ever can measure. Might also be able to use something like "what was there before the big bang?" and that kind of thing.
Of course, the fact that science can't explain something doesn't really justify falling back on magic as an explanation though. Some stuff just may not have an answer.

Pretty sure it's mainly non-furry non-gay hackers that take down the majority of websites.

From dealing with their support in the past and stuff they've accommodated, I wouldn't be surprised if you could just ask them to do it for a small amount like that. If you do a web search, you can also find a lot of information and people claiming it's possible to do stuff like transfer it to a Paypal account, etc.
I haven't tried to do that personally, so maybe it really just isn't possible. It's still only something that will affect someone that's never going to spend money at Amazon again, right? If I'm going to spend $5.99 at some point, it's effectively the same as a cash refund for me. If I'm going to spend $10.99 at some point it's almost the same as getting double the refund, since I would have spent cash instead in those cases.

Do we need to be more efficient?
I mean, it's usually a beneficial thing. Using less resources (including land) to produce the same amount of food is probably going to mean less environmental damage. In the case of switching to vat grown meat it also means not torturing billions of animals every year.
We have the resources to feed everyone on Earth and have leftovers
Sure. No one starves because the food just isn't on this planet, they starve because the people who have it won't give it to them. That said, we're also not using resources very sustainably so saying we produce enough food currently isn't the same as saying we can continue this way.
We could also increase efficiency even further by reducing meat/dairy consumption.
I don't eat any animal products so you can probably guess this is something I'm strongly in favor of as well!
Anyway, I was just responding to what I quoted not specifically arguing for 3d-printed foods. Depending on how it's implemented, it may or may not be better environmentally than the status quo

std::any::Any for slices?
I recently ran into an issue where I wanted to use Any
for slices. However, it only allows 'static
types (based on what I read, this is because you get the same TypeId
regardless of lifetimes).
I came up with this workaround which I think is safe:
rust
use std::{ any::{Any, TypeId}, marker::PhantomData, }; #[derive(Clone, Debug)] pub struct AnySlice<'a> { tid: TypeId, len: usize, ptr: *const (), marker: PhantomData<&'a ()>, } impl<'a> AnySlice<'a> { pub fn from_slice(s: &'a [T]) -> Self { Self { len: s.len(), ptr: s.as_ptr() as *const (), tid: TypeId::of::(), marker: PhantomData, } } pub fn as_slice(&self) -> Option<&'a [T]> { if TypeId::of::() != self.tid { return None; } Some(unsafe { std::slice::from_raw_parts(self.ptr as *const T, self.len) }) } pub fn is(&self) -> bool { TypeId::o

Roasting your own coffee is really easy and all you need is an oven, a cookie sheet and some green coffee beans
Why?
Even though green coffee beans tend to be heavier due to the higher water content, generally it's cheaper to roast your own compared to buying them pre-roasted.
You can roast the same beans at different levels to get some variety without having to go out and buy a new batch.
It's kind of fun and a decent conversation topic.
Notes
Don't be scared by how long this post is. It basically just comes down to spread beans on a cookie sheet, put in preheated oven, wait around 12-15 minutes and then take them out and cool them.
Since we're talking about roasting beans, naturally you're going to need a grinder to actually use them.
The process will create some smoke, even with a light roast. Basically, darker roast, more smoke. So far I've mainly done pretty light roasts and even though my kitchen doesn't have much ventilation (and my oven doesn't have fancy modern contraptions like, you know, a light or a fan) it hasn't been an issue.
Your oven should be reasonably clean if

I've been working on a number of Rust projects related to large language models
This subject is kind of niche, but hey... It's new content of some kind at least! Also just want to be up front: These projects may have reached the point of usefulness (in some cases) but they're also definitely not production ready.
ggml-sys-bleedingedge
GGML is the machine learning library that makes llama.cpp
work. If you're interested in LLMs, you've probably already heard of llama.cpp
by now. If not, this one is probably irrelevant to you!
ggml-sys-bleedingedge
is a set of low level bindings to GGML which are automatically generated periodically. Theoretically it also supports stuff like CUDA, OpenCL, Metal via feature flags but this is not really tested.
Repo: https://github.com/KerfuffleV2/ggml-sys-bleedingedge
Crate: https://crates.io/crates/ggml-sys-bleedingedge
llm-samplers
You may or may not already know this: When you evaluate an LLM, you don't get any specific answer back. LLMs have a list of tokens they understand which is referred to
You'd probably get more redditors to migrate if there was an old reddit type style
Apparently Lemmy copied the new reddit layout which shoves everything into the middle of the screen and wastes a massive amount of space. Even on the monitor I oriented vertically this is the case: the post I'm typing right now is using like 30% of the available screen real-estate and wasting the other 2/3rds.
My philosophy has always been that if reddit removed support for the old style, that's when I'd stop using reddit. Switching to Lemmy is like switching to new reddit though.
I made an account, but I can't really see using this as a replacement. I'd guess (but I might be wrong) that the type of people clinging to the old reddit style are also the most likely to do something like switch to Lemmy out of principle.
(I looked around and it doesn't seem like there are any browser addons or userscripts to restyle it either.)