-
**What I need help with / What I was wondering**
I've created a Dataset by using `tfds.core.GeneratorBasedBuilder` and want to train a model with it in Keras style. I followed the tutorial: https://g…
-
I'm facing this error when trying to run my rnn which runs well in google colab.
`Traceback (most recent call last):
File "rnn_prediction.py", line 30, in
from keras.models import Sequential…
-
Hi. I am new to using GPU. I have used the Textattack library earlier for one of my projects using Sklearn and Keras models. For that I created the customModelWrappers according to my models and they …
-
Just stumbled over something similar as [this old issue](https://github.com/tensorflow/tensorflow/issues/9056). So I created a minimal example to reproduce the effect:
```python
# tensorboard_y_ax…
-
Consider Stack Overflow for getting support using TensorBoard—they have
a larger community with better searchability:
https://stackoverflow.com/questions/tagged/tensorboard
Do not use this temp…
-
Hi, this is a good project!
I am trying to visualize the class features captured by CNN+RNN model, which means using CNN as feature extractor to extract each timestep input's features, and then feed…
-
I'm hesitating asking this basic question, but what's the correct way using the token label models for basic image classification? I followed your instruction in [huggingface.co uniformer_image](https…
-
I trained a yolo xs model and exported as onnx file.
I created the inference session by following the code below
```python
import onnxruntime as rt
sess = rt.InferenceSession(MODEL_PAT…
-
In Keras we can return predictions for a single batch of samples.
Bellow is the commented section of the predict_on_batch function on keras/engine/training.py.
There is something like this implement…
-
```
class categorical_focal_loss:
'''
Softmax version of focal loss.
m
FL = sum -alpha * (1 - p_o,c)^gamma * y_o,c * log(p_o,c)
…