f64 commited on
Commit
e00d336
·
1 Parent(s): 651a352
Files changed (2) hide show
  1. pages/6_Plotly.py +1 -1
  2. pages/7_итоги.py +2 -1
pages/6_Plotly.py CHANGED
@@ -20,7 +20,7 @@ figure = {
20
  "data": [go.Scatter3d(z=x1, y=x2, x=x3, mode='markers',
21
  marker=dict(size=3, color=x4, colorscale='Viridis', opacity=0.5)
22
  )],
23
- "layout": go.Layout(margin=dict(l=0, r=0, b=0, t=0), height=800, uirevision=my_uirevision)
24
  }
25
 
26
  st.plotly_chart(figure)
 
20
  "data": [go.Scatter3d(z=x1, y=x2, x=x3, mode='markers',
21
  marker=dict(size=3, color=x4, colorscale='Viridis', opacity=0.5)
22
  )],
23
+ "layout": go.Layout(margin=dict(l=0, r=0, b=0, t=0), height=750, uirevision=my_uirevision)
24
  }
25
 
26
  st.plotly_chart(figure)
pages/7_итоги.py CHANGED
@@ -16,10 +16,11 @@ col3.metric("Humidity", "86%", "4%")
16
 
17
  from huggingface_hub import hf_hub_download
18
  #https://huggingface.co/datasets/f64k/gaziev/blob/main/TestData3_2204_noAB_gaziev.zip
 
19
  REPO_ID = "f64k/gaziev"
20
  FILENAME = "TestData3_2204_noAB_gaziev.zip"
21
 
22
- df = pd.DataFrame(hf_hub_download(repo_id=REPO_ID, filename=FILENAME))
23
  st.write(type(df))
24
  df
25
 
 
16
 
17
  from huggingface_hub import hf_hub_download
18
  #https://huggingface.co/datasets/f64k/gaziev/blob/main/TestData3_2204_noAB_gaziev.zip
19
+ #https://huggingface.co/f64k/gaziev/resolve/main/TestData3_2204_noAB_gaziev.zip
20
  REPO_ID = "f64k/gaziev"
21
  FILENAME = "TestData3_2204_noAB_gaziev.zip"
22
 
23
+ df = pd.DataFrame(hf_hub_download(repo_id=REPO_ID, filename=FILENAME, repo_type="dataset"))
24
  st.write(type(df))
25
  df
26