data-science
Here are 13,249 public repositories matching this topic...
Not sure when this happened but i love the new left-hand side navigation https://scikit-learn.org/dev/user_guide.html
(@adrinjalali did this maybe?)

However, when clicking the different entries, the result is inconsistent. For some, it shows a TOC that expands the existing toc with m
I just started going through the jupyter notebooks (great stuff, by the way), and when running the cells the first time I would always get some error like Polygon has no attribute normed. It turns out that the normed option in plt.hist has been deprecated (in matplotlib version 3.1.1 and later as far as I can tell), and should instead be replaced with density (they appear to operate simi
-
Updated
Jun 28, 2020 - Python
I was going though the existing enhancement issues again and though it'd be nice to collect ideas for spaCy plugins and related projects. There are always people in the community who are looking for new things to build, so here's some inspiration
If you have questions about the projects I suggested,
-
Updated
Jan 29, 2020 - Python
-
Updated
Jul 16, 2020
-
Updated
Jul 14, 2020 - Jupyter Notebook
On the chapter about Editable DataTable
we can find this :
This chapter includes recipes for:
Reading the contents of the DataTable
Filtering out null values
Uploading data
Determining which cell has changed
Adding or removing columns
Adding or removing rows
Clearable, deletable, renamable, and hideable colum
/Users/travis/build/ray-project/ray/python/ray/node.py:533: DeprecationWarning: Redis.hmset() is deprecated. Use Redis.hset() instead.
redis_client.hmset("webui", {"url": self._webui_url})
/Users/travis/build/ray-project/ray/python/ray/worker.py:358: DeprecationWarning: Redis.hmset() is deprecated. Use Redis.hset() instead.
"run_on_other_drivers": str(run_on_other_drivers),
-
Updated
Jul 16, 2020 - Python
-
Updated
Oct 16, 2019 - Jupyter Notebook
-
Updated
May 20, 2020
-
Updated
Jul 15, 2020
-
Updated
Mar 31, 2020
-
Updated
May 10, 2020 - Python
-
Updated
Jul 10, 2020
more details at: allenai/allennlp#2264 (comment)
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
Dec 29, 2019 - Jupyter Notebook
Is your feature request related to a problem or area of OpenRefine? Please describe.
Users are not seeing how to delete a Project in OpenRefine.
User tweeting about this:
https://twitter.com/ruthbrarian/status/1243243600223391745
Took me forever to see the little Xs to delete them too
We also use currently use differing styles for Actions to perform on a Project:
- Img
- Text
**De
As you can see in this example from the documentation docs, there is a linestyles argument, but it doesn't show in the legend. This kind of defies the purpose, printing black/white you still can't tell which is which (except from the markers, but often the markers are hard to read because the line is too wide relativel
-
Updated
Jul 13, 2020 - Python
-
Updated
Jul 1, 2020 - Python
add Trainer states
🚀 Feature
Add trainer states so in each time user get info what is happening
Motivation
simplify the return values and clean up the interface
Pitch
The state will be implemented as enum and updated according to Trainer phase:
- INITIALIZE
- RUNNING
- FINISHED
- TEARING_DOWN
- TERMINATED
- ...
-
Updated
Jul 17, 2020 - Python
-
Updated
Jul 17, 2020 - Python
-
Updated
Mar 8, 2020 - Jupyter Notebook
Improve this page
Add a description, image, and links to the data-science topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the data-science topic, visit your repo's landing page and select "manage topics."


In Keras documentation, glorot_uniform says that the initializer is using Glorot Uniform from this paper. However, the Keras implementation is totally different from the equation on the paper. Also, there are some arguments such as mode ='fan_avg' is the default. It should be same as the referenced paper. 'fan_sum'. Golort uniform is shown