SorteKanin

Results 10 issues of SorteKanin

So I'm trying to use MeshCNN on some quite large meshes, around ~10000 faces, ~16000 edges. When running the train script however, I get the following error: ``` File "C:\MeshCNN\models\layers\mesh_pool.py",...

question

### Requirements - [X] Is this a bug report? For questions or discussions use https://lemmy.ml/c/lemmy_support - [X] Did you check to see if this issue already exists? - [X] Is...

bug

### Requirements - [X] This is a bug report, and if not, please post to https://lemmy.ml/c/lemmy_support instead. - [X] Please [check](https://github.com/LemmyNet/lemmy-ui/issues) to see if this issue already exists. - [X]...

bug

I would like to be able to make a set of tuples, like so: ```rust use phf::phf_set; static MY_SET: phf::Set = phf_set! { ("some value", 1, &["even", "more", "values"]), };...

C-enhancement
A-macros

Currently, in order to sort an array in reverse order you have to use some form of [strange hack](https://stackoverflow.com/questions/26984414/efficiently-sorting-a-numpy-array-in-descending-order), which may or may not be guaranteed to work in the...

01 - Enhancement
component: numpy._core
triaged

I'm not very knowledgeable about ActivityPub so excuse my ignorance - I am coming at this mostly from what I know about how [Lemmy](https://github.com/LemmyNet/lemmy) and [Mastodon](https://github.com/mastodon/mastodon) functions. The crucial issue...

Needs Primer Page

### Requirements - [X] Is this a feature request? For questions or discussions use https://lemmy.ml/c/lemmy_support - [X] Did you check to see if this issue already exists? - [X] Is...

enhancement
area: moderation

### Requirements - [X] Is this a feature request? For questions or discussions use https://lemmy.ml/c/lemmy_support - [X] Did you check to see if this issue already exists? - [X] Is...

enhancement
area: moderation

### I have found these related issues/pull requests I have not found any similar feature request. ### Description Right now [`Migrator::run`](https://docs.rs/sqlx/latest/sqlx/migrate/struct.Migrator.html#method.run) returns `()`, meaning the only thing you know after...

enhancement

I have the following error enum in my axum app: ```rust #[derive(Error, Debug, JsonSchema, Serialize)] pub(crate) enum MyError { #[error("Invalid request: {0}")] Invalid(#[from] Invalid), #[error("Not found: {0}")] NotFound(String), #[error("Internal error:...