Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Robzy
/
jobbert_knowledge_extraction
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6a29073
jobbert_knowledge_extraction
/
demo-app.py
Robzy
mismatch deletion
762e05d
3 months ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
plotly.express
as
px
import
numpy
as
np
X = np.random.randint(
0
,
10
, (
10
,
3
))
fig = px.scatter_3d(x=X[:,
0
], y=X[:,
1
], z=X[:,
2
])
fig.show()