Forwarded from Axis of Ordinary
You can now generate prompts for existing images that in turn can be used to generate similar images.
Below you can see my first try and one of the resulting images.
Try it yourself:
Prompt generator: https://huggingface.co/spaces/pharma/CLIP-Interrogator
Image generator: https://huggingface.co/spaces/stabilityai/stable-diffusion
Below you can see my first try and one of the resulting images.
Try it yourself:
Prompt generator: https://huggingface.co/spaces/pharma/CLIP-Interrogator
Image generator: https://huggingface.co/spaces/stabilityai/stable-diffusion
Новый тейк Дрю Де Вальта — он забанил на сорсхате всё, что относится к криптовалютам
https://sourcehut.org/blog/2022-10-31-tos-update-cryptocurrency/
https://paste.sr.ht/~sircmpwn/b966c63c14df7d233647ef605961c7654430557c
https://sourcehut.org/blog/2022-10-31-tos-update-cryptocurrency/
https://paste.sr.ht/~sircmpwn/b966c63c14df7d233647ef605961c7654430557c
😁1🤔1
Forwarded from Cab
This media is not supported in your browser
VIEW IN TELEGRAM
— Are you a boy or a girl
— I am an anarchist.
— No, I mean what's in your pants?
—
— I am an anarchist.
— No, I mean what's in your pants?
—
❤10👏1🤔1
macro_rules! fct {
(@step $s:literal ()) => { 1 };
(@step $s:literal ($one:literal)) => { 1 };
(@step $s:literal ($drop:literal, $($smth:literal),*)) => {
(fct!(@mult ($($smth),*) ($($smth),*)))
};
(@mult ($($e:literal),*) $rec:tt) => {
$(
fct!(@step $e $rec) +
) + fct!(@step 0 $rec)
};
($($a:literal),*) => {
fct!(@step 0 ($($a),*))
};
}
#[test]
fn fct() {
let n = fct!(1,1,1,1,1,1,1);
assert_eq!(n, 5040);
}написал короч функцию вычисления факториала на расте на ночь глядя
считает за O(n!)
🔥3