Artem

Results 22 issues of Artem

In TF it's common practise to use `tf.saved_model` format, for (de)serialising trained models. This format has however a bit other APIs than `tf.keras.Model`. It would be great to have Quantus...

Hi, after I run ` pytest --dead-fixtures` I get an output e.g. ![image](https://user-images.githubusercontent.com/44274784/189232268-e624d558-3f56-42a0-a967-075a140a30ef.png) To double check if ii is so, I run `grep -r 'almost_uniform_1d' tests` and get ![image](https://user-images.githubusercontent.com/44274784/189232360-6b32ea3a-6eea-44bd-96f2-910e286ec7fe.png). So,...

From top to down the views generated by: - PyCharm - Colab - JupyterLab - GitHub preview ![image](https://user-images.githubusercontent.com/44274784/195724278-57cc842f-40d3-4e2f-81d3-1646bef8535f.png) ![image](https://user-images.githubusercontent.com/44274784/195724312-657a20e1-31d4-409c-a690-e939a40db67f.png) ![image](https://user-images.githubusercontent.com/44274784/195724442-e5b89262-47b2-45fc-bcd0-021baa2fe5a1.png) ![image](https://user-images.githubusercontent.com/44274784/195724510-52b0c35e-a858-49e5-b688-24cbf8e17d0b.png) Ideally, we want them all to be rendered in...

### Description Added a notebook showing proposal of how quantitative evaluation of NLP models could look in future ### Implemented changes added Getting_Started_with_NLP.ipynb ### Minimum acceptance criteria ???

Hi, as you can see on the 1st screenshot, `GlueModel` from `lit_nlp.examples.models.glue_models` returns map object, instead of intended list. After executing `map_result = nn.predict_minibatch([{'sentence1': 'Hello there'}])` `list_result = list(map_result)`, the...

Hi team `tensorflow-model-optimization`, I was applying clustering and pruning to a model based on Bert encoder from `tensorlfow-models-official`, and noticed that there is no API for registering custom layers, so...

technique:pruning
technique:clustering
api-review

Hi there, I was following this guide, [flax.linen.Dropout](https://flax.readthedocs.io/en/latest/guides/dropout.html#more-flax-examples-that-use-module-make-rng). Then I decided to add `nn.jit`, and started getting `MyModel.__call__() missing 1 required positional argument: 'training'`, even though I passed it. ###...

### Description of the problem - afaik so far, Quantus assumes categorical encoding of `y_batch`, where each input data-point is assigned to exactly 1 label. ### Description of a solution...

question

### Description of the problem - A lot of metrics do computations on a single instance. - They often could be computed in batches. ### Description of a solution Apply...