Skip to content
#

data-science

Here are 12,479 public repositories matching this topic...

saeedalahmari3
saeedalahmari3 commented Apr 23, 2020

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

ecotner
ecotner commented Apr 4, 2020

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

ines
ines commented Sep 29, 2019

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 For existing plugins and projects, check out the spaCy universe.

If you have questions about the projects I suggested,

cxrodgers
cxrodgers commented Jan 30, 2020

Note 1: This is not the same tab-completion bug for which many issues have already been opened (the one where a massive number of objects from the global namespace are displayed). This issue specifically has to do with unwanted abbreviation of filename paths. I haven't yet found any other reports of this issue.

Note 2: I also posted this to stackoverflow but am posting again here since I didn't

dash
simon-mo
simon-mo commented Apr 30, 2020
  /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),
  
gensim
nicechester
nicechester commented Jun 13, 2019

load_csv line can be since there's columns_to_ignore param's supported

data, labels = load_csv('titanic_dataset.csv', target_column=0, columns_to_ignore=[2, 7], categorical_labels=True, n_classes=2)

and we don't need to do that in preprocess()

def preprocess(passengers):
    for i in range(len(passengers)):
        passengers[i][1] = 1. if passengers[i][1] == 'female' else 0.
loomlike
loomlike commented Apr 15, 2019

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

seaborn
jbachh
jbachh commented Mar 24, 2020

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

pytorch-lightning
rickiepark
rickiepark commented Dec 31, 2018

(p380) In last sentence of 1st paragraph and first sentence of 2nd paragraph, "Pitt" should be "Pitts".

(p384) In a picture, "3nd Layer" should be "3rd Layer".

(p385) In 1st paragraph, "the o superscript" should be "the out superscript".

(p406) In 1st code block, "print('Training accuracy: ..)" should be "print('Test accuracy: ..)"

(p410) In 1st paragraph,

Improve this page

Add a description, image, and links to the data-science topic page so that developers can more easily learn about it.

Curate this topic

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."

Learn more

You can’t perform that action at this time.