-
Updated
Aug 10, 2022 - Python
Data Science
Data science is an inter-disciplinary field that uses scientific methods, processes, algorithms, and systems to extract knowledge from structured and unstructured data. Data scientists perform data analysis and preparation, and their findings inform high-level decisions in many organizations.
Here are 28,619 public repositories matching this topic...
Time-series Bar Chart v2 does not update total values for stacked bar chart when toggling legends.
How to reproduce the bug
- Create a "Time-series Bar Chart v2"
- Go to "Customize" and select "Show value", "Stack series" and "Only total"
- Toggle series in legends
- The total value should update but it doesn't
The legacy Time-series Bar Chart does not have this issue.
-
Updated
Aug 4, 2022 - Jupyter Notebook
Pandas version checks
- I have checked that the issue still exists on the latest versions of the docs on
mainhere
Location of the documentation
Documentation problem
The documentation says that the formatting st
-
Updated
Aug 1, 2022 - Jupyter Notebook
-
Updated
Aug 2, 2022 - Jupyter Notebook
-
Updated
Aug 10, 2022 - Python
-
Updated
Apr 3, 2022 - Python
What happened + What you expected to happen
- Getting a ton of warnings from pytorch-lightning about deprecation of certain hooks.
- Expect no warnings.
- The
TuneCallbackhas old hooks such askeyboard_interruptwhich have been deprecated.
The most list of the deprecated hooks
-
Updated
Jun 13, 2022 - Python
-
Updated
Feb 10, 2022 - JavaScript
-
Updated
Aug 10, 2022
Problem
See #3856 . Developer would like the ability to configure whether the developer menu or viewer menu is displayed while they are developing on cloud IDEs like Gitpod or Github Codespaces
Solution
Create a config option
showDeveloperMenu: true | false | auto
where
- true: always shows the developer menu locally and while deployed
- false: always sho
🚀 Typing coverage
Let's improve typing coverage of PyTorch Lightning together!
I'm creating a new issue in order to increase visibility. There are three older issues (#7037, #5023, #4698) which became stale over time.
Plan
Currently, there are 55 files which are excluded from mypy checks so that our CI does not fail. These files vastly differ in difficulty in order to make the t
-
Updated
Aug 8, 2022
Describe your context
Please provide us your environment, so we can easily reproduce the issue.
- replace the result of
pip list | grep dashbelow
dash 2.0.0
dash-bootstrap-components 1.0.0
-
if frontend related, tell us your Browser, Version and OS
- OS: [e.g. iOS] Windows
- Browser [e.g. chrome, safari]: Chrome 96.0x, Edge 96.0x, Firefox
Bug summary
pyplot raises an error when a list of dates starts with None.
Code for reproduction
from datetime import *
from matplotlib import pyplot as plt
y = [6, 2, 8, 3, 1, 8, 5, 3, 0, 7]
x = [date.today() + timedelta(days=i) for i in range(10)]
x[5] = None
x[-1] = None
plt.plot(x, y) # works
plt.show()
x[0] = None
plt.plot(x, y) # TypeError
p-
Updated
Aug 9, 2022 - Jupyter Notebook
- Base README.md
- Quizzes
- Introduction base README
- Defining Data Science README
- Defining Data Science assignment
- Ethics README
- Ethics assignment
- Defining Data README
- Defining Data assignment
- Stats and Probability README
- Stats and Probability assignment
- Working with Data base README
- Rel
https://github.com/ipython/ipython/blob/f20e3b80393a1a5909a050cb7bb9cbce9e044827/IPython/core/tests/test_displayhook.py#L31
and also line 44
Did you mean...
overbite,
overrate,
override,
overripe,
overwrite
-
Updated
Aug 10, 2022 - Python
-
Updated
May 20, 2020
-
Updated
Aug 8, 2022 - Python
In gensim/models/fasttext.py:
model = FastText(
vector_size=m.dim,
vector_size=m.dim,
window=m.ws,
window=m.ws,
epochs=m.epoch,
epochs=m.epoch,
negative=m.neg,
negative=m.neg,
# FIXME: these next 2 lines read in unsupported FB FT modes (loss=3 softmax or loss=4 onevsall,
# or model=3 supervi-
Updated
Jul 30, 2022
-
Updated
Aug 10, 2022 - Go
-
Updated
Jul 30, 2021 - Jupyter Notebook
- Wikipedia
- Wikipedia
Describe the bug
The acceptable values for
max_samplesare(0, 1]. One possible option forclass_weightisbalanced_subsample. However, for values ofmax_samplesnear zero andclass_weight='balanced_subsample', the model fails with an unhelpful error related to having an empty array as an indexer.This is only likely to come up in a grid search, as it seems unlikely that some