beet_ml 0.0.8

Machine Learning actions built upon beet_flow
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(target_arch = "wasm32")]
fn main() {
	use beet_ml::wasm::open_or_fetch::open_or_fetch_blocking;
	console_log::init_with_level(log::Level::Info).ok();
	let result = open_or_fetch_blocking(
		"https://png.pngtree.com/png-clipart/20200225/original/pngtree-image-of-cute-radish-vector-or-color-illustration-png-image_5274337.jpg",
	);
	log::info!("Success {:?}", result);
}
#[cfg(not(target_arch = "wasm32"))]

fn main() {}