tutorial
Here are 9,585 public repositories matching this topic...
-
Updated
Jul 11, 2020
The chat tutorial listed for elixir is outdated. It uses a old version of phoenix and could be confusing to new users who would be learning a oudated set of syntax, application structure, commands i.e. mix phoenix.create
vs. mix phx.create
.
Also it's missing some steps. For one this they never do mix ecto.create
without which the postgres database is not initialized so the app doesn't wo
-
Updated
Jul 15, 2020
When I open any chapter, say ch01:
https://mostly-adequate.gitbooks.io/mostly-adequate-guide/content/ch01.html
Right chevron links to the current chapter header. I'd expect it to link to the next one.
Env:
MacOS
Desktop Chrome v79 (latest)
I haven't used Gitbook, but it might be solvable via GitBook update, also mentioned in #542
.jsx instead of .js
Type of issue: (feature suggestion, bug?)
Suggestion
Chapter:
no-chapter
Why use .jsx
instead of .js
? It's not a best practice: facebook/create-react-app#87 (comment)
-
Updated
Feb 18, 2020 - Jupyter Notebook
-
Updated
Apr 25, 2020 - Java
-
Updated
Jul 6, 2020 - Jupyter Notebook
Looping the process of writing images into the .tfrecords-file works fine, but how do I read multiple images from a .tfrecords-file?
Is there any simple solution? would be great if added to the code.
-
Updated
Jan 7, 2020 - C++
-
Updated
Nov 11, 2019
-
Updated
Jul 9, 2020 - C
-
Updated
Jun 9, 2020 - Jupyter Notebook
Description
Add Azure notebook to our SETUP doc.
I tested google colab and Azure notebook to run reco-repo without requiring creating any DSVM or compute by myself, and it works really well with simple tweaks to the notebooks (e.g. for some libs, should install manually).
I think it would be good to add at least Azure notebook to our SETUP doc, where users can easily test out our repo w/o
-
Updated
Feb 23, 2019 - JavaScript
-
Updated
Jul 16, 2020 - JavaScript
-
Updated
Jul 10, 2020 - TypeScript
Excuse me, https://github.com/graykode/nlp-tutorial/blob/master/1-1.NNLM/NNLM-Torch.py#L50 The comment here may be wrong. It should be X = X.view(-1, n_step * m) # [batch_size, n_step * m]
Sorry for disturbing you.
Hi, I noticed this line of code in README.md
printf("\tCodec %s ID %d bit_rate %lld", pLocalCodec->long_name, pLocalCodec->id, pCodecParameters->bit_rate);
in which pLocalCodec
is not declared in the article before used which might cause confusion in my view. Digging into the c code, I found this line.
https://github.com/leandromoreira/ffmpeg-libav-tutorial/blob/cdd616ce871078e
-
Updated
May 29, 2020 - Python
Improve this page
Add a description, image, and links to the tutorial topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the tutorial topic, visit your repo's landing page and select "manage topics."
https://github.com/aymericdamien/TensorFlow-Examples/blob/9e1bb504f5d0f209d000997ce2ad95bb891798ab/examples/3_NeuralNetworks/bidirectional_rnn.py#L81
I think "outputs [-1]" and "outputs [0]" are equivalent (reversed) in this line of code, but the former (89%) works better than the latter (86%). Why?