-
Updated
Feb 11, 2020 - C#
Join GitHub (or sign in) to find projects, people, and topics catered to your interests.
Here's what's popular on GitHub today...
-
Updated
Feb 11, 2020 - Python
How do I find these tools in the 2.8 interface? If you've updated to 2.8, why haven't the instructions been updated to match?
Git Merge 2020
March 04, 2020 • Los Angeles
-
Updated
Feb 11, 2020 - Shell
There should be a README file for each type of design pattern which should include the following points-
- Description of the design pattern
- Common use cases of that design pattern
- Explanation of the code
Review Notebook App
Having trouble using Jupyter Notebooks effectively in your team? Join 200+ organizations like Amazon, Microsoft, Tensorflow, fast.ai in using ReviewNB for notebook code reviews.
We provide complete code review workflow for notebooks,
- Visual diff to see what changed in a notebook
- Commenting on the notebook diff to discuss changes
- Conversation threads to track all open discussions
The CLI currently gets stuck on user prompts (e.g. unable to input a valid email address). Not sure if it's something as simple as a trailing new line, or more complicated.
Setup
- build the CLI for windows, e.g.
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o cortex ./cli - upload the CLI to a public bucket, e.g.
aws s3 cp cortex s3://cortex-cli-david/cortex.exe - spin up
-
Updated
Feb 11, 2020 - Python
-
Updated
Feb 11, 2020 - C
-
Updated
Feb 11, 2020 - JavaScript
-
Updated
Feb 11, 2020 - C
It may be a good idea to place the guidelines regarding binary file attachments into the bug report template. This may help reduce the number of questions one may have regarding the binary and help speed up resolution.
-
Updated
Feb 11, 2020 - C++
-
Updated
Feb 11, 2020 - Python
Describe the bug: Gray-colored score numbers should become white when hovered in the BeatmapSetOverlay, like in the web version.
They are very hard to see when hovering a personal (green) score, for example.
Screenshots or videos showing encountered issue:
The link to C: Tutorial For a Brickout Clone in the Games section is broken and leads to a different site that does not have the tutorial on it.
-
Updated
Feb 11, 2020 - Go
-
Updated
Feb 11, 2020
-
Updated
Feb 11, 2020
Add CodeStyle
Below is a list of failing links in our Chinese lists
You can help improve this repo by resolving the problems.
A failing link may be a website or resource that has disappeared. You can submit a PR
- removing the link (maybe the resource is obsolete.)
- correcting the link (sometimes things move)
- replacing the link (make sure the link is authorized, or the resource is open-licensed). Of
-
Updated
Feb 11, 2020 - Kotlin
-
Updated
Feb 11, 2020 - Python
-
Updated
Feb 11, 2020 - Python
-
Updated
Feb 11, 2020 - Swift
LeanBoard
Lean Board is a collaborative whiteboard with sticky notes which seamlessly connects with your GitHub issue. Login with your GitHub account, create a board for an issue and a snapshot of your notes is embedded in the issue automatically.
Hi Everybody:
I am using Keras 2.0.5.
Here are code samples for section 6.3 of book,
"Advanced use of recurrent neural network" pertaining to GRU:
`from keras.models import Sequential
from keras import layers
from keras.optimizers import RMSprop
model = Sequential()
model.add(layers.GRU(32, input_shape=(None, float_data.shape[-1])))
model.add(layers.Dense(1))
model.compile(optim