Gabriel Kissin

Results 7 issues of Gabriel Kissin

### Feature request export `audio-classification` model based on OpenAI whisper model to other formats ### Motivation After loading OpenAI's whisper: ``` transformers.WhisperForAudioClassification.from_pretrained( "openai/whisper-tiny", num_labels=n_labels, label2id=labels2id, id2label=id2labels, ) ``` and fine-tuning...

onnx
exporters
tflite

I've been trying to set up a tensorforce agent using a custom network. The source of the network **has to be a keras network** (`tensorflow.python.keras.engine.functional.Functional`, which has layers from classes...

With large values, the regression line can be done incorrectly: ![image](https://github.com/mwaskom/seaborn/assets/118690308/4d5c8d0b-7ede-4a77-9101-4b442a3154ae) The first three lines are good, the last three aren't. (Note also the strange shape of the green shaded...

Some plotting functions allow using `palette` to set the alpha value for a hue - for example, `sns.scatterplot`. Other plotting functions however do not allow this - for example, `sns.violinplot`,...

#### Describe the bug When using large values for linear regression, statsmodels fails to correctly model the data. It seems to want the line to pass through the intercept when...

design
comp-regression
corner-case

### Describe the bug Minor bug in `LocallyLinearEmbedding`'s parameter validation: https://github.com/scikit-learn/scikit-learn/blob/70fdc843a4b8182d97a3508c1a426acc5e87e980/sklearn/manifold/_locally_linear.py#L226-L230 The `if` condition contradicts the error message in the case that `n_neighbors == N`. So you get a message...

Bug

Several of seaborn's functions for plotting categorical data don't cope well when the categories list includes unused categories. I've noticed two main issues: 1) element width shrinks 2) element spacing...