Jeremy Gore

Results 6 issues of Jeremy Gore

Some words are lemmatized improperly, due to picking the smallest possible lemma: ```py lemmatizer = WordNetLemmatizer() lemmatizer.lemmatize('dose', 'n') # returns "dose" lemmatizer.lemmatize('doses', 'n') # returns "dos" wordnet._morphy('doses', 'n') # returns...

I have an api where a particular path has GET, DELETE, and PUT methods attached. GET and DELETE are handled via serverless-apigateway-service-proxy, but PUT needs to be run through a...

When dividing reflected associations into relationships there is some incorrect handling in determining the direction of the `Relationship`. Specifically, the code is relying on `belongs_to?` to determine if an `ActiveRecord::AssociationReflection`...

Typically with useState, the setState function accepts either a value to set as the new state, or a function which can transform the old state to the new state. Using...

Ordinary useState/setState accepts a callback as the argument which is evaluated with the previous state, so useUndo/set/reset should as well.

Each subplot in `plot_mean_convergence` is labeled with the feature index, not the feature name, as of version 5.6.3. This is because the features are internally specified by the `num_vars` variable,...