-
**System information**
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow): yes
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 Pr…
-
Hi there,
When I try to run a frozen TensorFlow graph with the TensorListReserve operation Tract throws an error (it seems that the implementation is missing). How feasible would it be to add this …
bio43 updated
2 years ago
-
When I use the model with `categorical_crossentropy` and target values of shape `(batch_size, seq_size, vocab_size)` when running `fit_generator` the method runs fine. But when switching to `sparse_ca…
-
I am trying to understand the architecture of the following simple RNN model
```
def simple_model(input_shape, output_sequence_length, english_vocab_size, french_vocab_size):
input = Input(sh…
-
Thanks for the awesome library! It would be great if PyTorch could support forward-mode automatic differentiation. The main use case is to compute a Jacobian-vector product. I tried using [this trick]…
-
Since Tesseract 4, two OCR engines are available: rule-based (i.e. `--oem 0`), LSTM (`--oem 1`). The command-line also exposes an ensemble of the two OCR engines (`--oem 2`). [The documentation for `o…
-
**System information**
- Have I written custom code (as opposed to using a stock example script provided in TensorFlow):
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu
- TensorFl…
-
I want to preditct the daily price of a stock with several features and compare the prediction effect of ESN and LSTM .
This example use the price of today to predict the price of tomorrow.(time…
-
```
import tensorflow as tf
outputs = tf.keras.layers.Softmax().apply(
tf.keras.layers.Masking().apply(
tf.zeros([3,5,7])
)
)
```
Since the default mask value of Masking is zero, Softm…
-
Is there any way of providing more cells to the FastCellTrainer or does it only work with one cell?