N

Results 25 issues of N

I am attempting to migrate an existing Efficientnet model from keras.applications to the respective hub. However, I see vastly different behaviors in training and final performance, and thus I am...

type:bug
stat:awaiting response

### Describe the bug I am currently self.joining the same table withe ach other multiple times as described as follows. On occasion, this seemingly simple query will yield an exit...

### Describe the bug In the documentation, it is written that we can get the day of year using the to_str(time, 'D') approach. However, using the latest docker images, this...

Bug
Good first issue

Commit strives to add first(), last() (and possibly group_concat) functionalities on group by string operations. However, this is currently being blocked by the FastMap instance not supporting the string dtype...

### Describe the bug Currently, the behavior when running queries such as `select min(0)`, `select first(0.0)` is pretty inconsistent and it some cases will throw exceptions. The reason I think...

Bug

### Describe the bug Currently, running a aggregation/samply by query and attempting to aggregate string values fails. In my use case, I am saving pairs of (time, path_to_image). I want...

Bug

### Describe the bug When sampling in a timezone with DST and having a data span that starts with daylight savings, following observations are correctly lined up, but the first...

Bug
SQL

Currently, the Flask API does not work correctly with the Flask.test_client() method when used multiple times. The reason for that is that due to the teardown hook added in pony/flask/__init__.py...

I was basically just attempting to remove an entity completely, as part of a one-to-many relation: class Parent(db.Entity): children = Set(lambda: Children) class Children(db.Entity): belongs_to_parent = Required(lambda: Parent) -> Removed...