Skip to content
#

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 22,330 public repositories matching this topic...

superset
jinghua-qa
jinghua-qa commented Oct 6, 2021

Owner can not click and edit on the chart name when open a saved chart, can only do click edit when creating a new chart.

How to reproduce the bug

1, Explore saved chart own by you
2, Hover mouse over to chart's title
3, Click on chart title

Expected results

1,Should see tooltip "Click to edit"
2,Title is successfully edit and saved

Actual results

There is no opportunit

Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spark, Hadoop MapReduce, HDFS), matplotlib, pandas, NumPy, SciPy, Python essentials, AWS, and various command lines.

  • Updated May 13, 2021
  • Python
pytorch-lightning
carmocca
carmocca commented Oct 19, 2021

Proposed refactoring or deprecation

Current names:

pytorch_lightning/plugins/precision/
├── apex_amp.py
├── deepspeed_precision.py
├── double.py
├── fully_sharded_native_amp.py
├── ipu_precision.py
├── mixed.py
├── native_amp.py
├── precision_plugin.py
├── sharded_native_amp.py
├── tpu.py
└── tpu_bfloat.py

Motivation

Had to choose this when working on

dash
Mars-or-bust
Mars-or-bust commented Oct 15, 2021

Bug summary

The ax.invertxaxis() and ax.invert_yaxis() function both produce the same output, a scatterplot with a flipped X axis.

Code for reproduction

from mpl_toolkits import mplot3d
import matplotlib.pyplot as plt

ax = plt.axes(projection='3d')
plt.title("Invert Z")
ax.scatter3D(1,1,1)
# ax.invert_xaxis()
ax.invert_yaxis()
# ax.invert_zaxis()

Actual o

danieldeutsch
danieldeutsch commented Jun 2, 2021

Is your feature request related to a problem? Please describe.
I typically used compressed datasets (e.g. gzipped) to save disk space. This works fine with AllenNLP during training because I can write my dataset reader to load the compressed data. However, the predict command opens the file and reads lines for the Predictor. This fails when it tries to load data from my compressed files.

nni