data-science
Here are 10,336 public repositories matching this topic...
scikit-learn/scikit-learn#16404 adds the Bunch object to the public API docs. However, the API docs do not reference Bunch where it's used.
It'd be nice to fix those and link to the now available Bunch page.
The alert-success box that begins "Tensorflow Probability is part of the colab default runtime"---and created by the div tag---is not supported by nbconvert, when converting the chapter to PDF. The result is difficult to read:
The underlying issue is de
"Bokeh is a Python interactive visualization library that targets modern web browsers for presentation. Its goal is to provide elegant, concise construction of novel graphics in the style of D3.js, but also deliver this capability with high-performance interactivity over very large or streaming datasets. Bokeh can help anyone who would like to quickly and easi
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
Feb 19, 2020 - Python
function _print_statement_sub seem unused in code base.
One should check if this is actually the case, and remove it if necessary.
-
Updated
Feb 19, 2020 - Jupyter Notebook
-
Updated
Feb 19, 2020
Describe your context
Please provide us your environment so we can easily reproduce the issue.
- replace the result of
pip list | grep dashbelow
dash 1.8.0
dash-core-components 1.7.1
dash-html-components 1.0.2
dash-renderer 1.2.3
dash-table 4.6.0
-
if frontend related, tell us your Browser, Version and OS
- OS: All
- Brows
-
Updated
Feb 19, 2020 - Jupyter Notebook
Tutorial: Similarity Queries
https://radimrehurek.com/gensim/auto_examples/core/run_similarity_queries.html#sphx-glr-auto-examples-core-run-similarity-queries-py
Notice the document order in the tutorial:
documents = [
"Human machine interface for lab abc computer applications",
"A survey of user opinion of computer system response time",
"The EPS user interface management
Deprecate `._remote()` and replace all instances with `.options()` for remote functions and actors.
Given a remote function like
@ray.remote
def f():
passWe switched from syntax like
f._remote(num_cpus=2)to
f.options(num_cpus=2).remote()Regarding deprecating ._remote, their are several steps
- Start logging a warning that tells people to use
.options()instead. - In a subsequent release, change the warning to a
-
Updated
Feb 19, 2020
-
Updated
Feb 19, 2020
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.
-
Updated
Feb 19, 2020
-
Updated
Feb 19, 2020
Updates to the docs
#3602 switched our docs from restructured text to markdown, which is a big improvement. However, there are some left over traces of rst formatting in the docstrings. It would be great if we could comb through these and update them.
- commands
- common
- data
- interpret
- models
- modules
- nn
- predictors
- tools
- training
How to help
i'm a newbie in programming. I try to use this library. it's very useful for me.
I want to show centroid in K-means clustering. how to show it? thank u so much..
-
Updated
Feb 19, 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
Link to doc page in question (if any):
https://docs.streamlit.io/cli.html#view-all-config-options
Name of the Streamlit feature whose docs need improvement:
The documentation for configuring Streamlit through environment variables incorrectly states that the prefix is STREAMLIT_CONFIG_. Mentioned in streamlit/streamlit#477 (comment).
**Wha
Describe the bug
I'm trying to export with « Custom tabular exporter… » and choosing « Upload to -> A new Google spreadsheet », and in some rows, if a value is missing, then the cell value disapear and the cell on the right shift left.
To Reproduce
Steps to reproduce the behavior:
- « Custom tabular exporter… »
- choose « Upload to -> A new Google spreadsheet »
- See the result
Hi,
I'm new to tpot but I got this error. I understand that score function can take strings, but I got the following error when using TPOTClassifier.
ValueError Traceback (most recent call last)
in
----> 1 tpot.score(X_test, y_test)~/miniconda3/envs/ml
-
Updated
Feb 18, 2020 - Python
On page 501 for the first case example the text says "n-10, m=5, p=2, s=1 -> ...". I assume the first entry of the line should be "n=10" instead of "n-10".
is it Grid Search can solve CASH problems with NNI , it seems that it is usually used for hyper-parameters optimization, have you guys have finished some revision for Grid Search for solving CASH problems.
about Cash problems can refer to :microsoft/nni#1178
The documentation of the boltons.timeutils.daterange function only mention date objects as input, but I discovered that it works with datetime objects as well. Explicitly stating so would be great. Thanks!
-
Updated
Feb 19, 2020 - JavaScript
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."

As indicated in the FAQ, the way to import ResNeXt101 is
from keras.applications.resnext import ResNeXt101. But in the latest Keras 2.3.1 and Keras-Applications 1.0.8, it givesImportError: No module named 'keras.applications.resnext'. I try to change it to `from keras_applications.resnext import preproces