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

superset

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 Oct 29, 2021
  • Python
simon-mo
simon-mo commented Oct 27, 2021
(ServeController pid=12680) 2021-10-26 19:03:28,704     INFO backend_state.py:911 -- Adding 1 replicas to deployment 'hello'. component=serve deployment=hello
(ServeController pid=12680) 2021-10-26 19:03:28,704     ERROR controller.py:193 -- Exception updating backend state.
(ServeController pid=12680) Traceback (most recent call last):
(ServeController pid=12680)   File "/Users/simonmo/De
brambozz
brambozz commented Oct 22, 2021

Problem

I am just exploring streamlit and having a great time so far! I have video data that I want to visually inspect, but they are short videos of ~5 seconds. Currently it seems st.video does not have a loop option.

Solution

Add a loop option to st.video.

Not sure how difficult this would be. If not, I would be happy to work on a PR if someone could give me some quick po

pytorch-lightning
dash
gertcuykens
gertcuykens commented Oct 2, 2021

When using Python you can click on the File line in vscode terminal to go to statement

Traceback (most recent call last):
  File "/Users/gert/Desktop/py/./tutorial.py", line 4, in <module>

When using IPython the line number is displayed in such a way you can't parse it

ValueError                                Traceback (most recent call last)
~/Desktop/py/tutorial.py in <modu
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

gensim
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