rahgadda commited on
Commit
ed88ceb
·
1 Parent(s): 58e2a1d

Initial Draft

Browse files
Files changed (1) hide show
  1. Dashboard.py +20 -0
Dashboard.py CHANGED
@@ -1,2 +1,22 @@
1
  import streamlit as st
 
 
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
+ import pandas as pd
3
+ from transformers import set_seed, HfApi, Repository, RepositoryFile
4
 
5
+ ################################
6
+ ######### Variables ############
7
+ ################################
8
+
9
+ HF_API_KEY = os.environ.get("HUGGING_FACE_API_KEY")
10
+ DATA_SET = os.environ.get("DATA_SET")
11
+
12
+ st.write(HF_API_KEY)
13
+ st.write(DATA_SET)
14
+
15
+ ################################
16
+ ####### GenericFunctions #######
17
+ ################################
18
+
19
+
20
+ ################################
21
+ ####### Display of data ########
22
+ ################################