-
Following installation of all requirements for Part 1 on Ubuntu 16 / Python 3.5:
If I just go through lesson1.ipynb (part 1), which has the dogscats path, as soon as I try to execute
`vgg=Vgg16()…
-
- Create a simplified model configuration for DeepSpeech2 on V2 APIs.
- With fixed-length (by padding) batches.
- With only bidirectional-GRU.
- With only greedy decoder (max + post-proces…
-
I am getting an error when I execute train.py
`Traceback (most recent call last):
File "train.py", line 277, in
main()
File "train.py", line 255, in main
g = Graph(is_training=True…
-
Running through the tutorial I ran across this error with the CrfTagger:
```
2017-12-05 00:00:52,542 - INFO - allennlp.common.params - random_seed = 13370
2017-12-05 00:00:52,542 - INFO - allennlp.…
-
Greetings all!
Suppose that I am currently trying to make an agent for a game. After the agent is trained I would like it to be able to accept a vector encoding the current screen, and return a v…
-
python bin/run_analysis.py
Traceback (most recent call last):
File "bin/run_analysis.py", line 7, in
from src.run_analysis import analyze, render_results_as_images
File "/DeepOSM/src/run_…
-
I have a question about v2 API doc.
- As I known the doc is automatically generated from codes, but I fail to find some pre-defined network in V2 API doc.
- For example, provided doc for [Network](h…
-
I used TimeDistributedDense to label sequeces in each time before:
model.add(Embedding(wordlen,worddim))
model.add(GRU(worddim,128,return_sequnces=True,activation="tanh"))
model.add(TimeDistributedDe…
-
Hi everyone.
Trying to get the summary of a network, i encountered a strange error.
This is the code which gave me the error :
```python
input_seq = Input(shape=(50,300))
model = GaussianNoise…
PPACI updated
7 years ago
-
On each of the datasets provided, we must train a Deepspeech model. The overall architecture is encompassed in this command:
```
python train.py --rnn_type gru --hidden_size 800 --hidden_layers 5…