aliicemill commited on
Commit
fa085c8
·
verified ·
1 Parent(s): 3b28ee1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -12
app.py CHANGED
@@ -33,10 +33,10 @@ def run_turkish():
33
  lecture_name = st.sidebar.text_input("Ders Adı", value="Ders Adı")
34
  perfect_score = st.sidebar.number_input("Sınav Puanı Üst Limiti", value=100, step=1)
35
  my_note = st.sidebar.number_input("Benim Notum", value=0.0, step=0.1)
36
- note_s_axis_diff = st.sidebar.number_input("Notlar X Ekseni Ortak Farkı", value=3, step=1)
37
- amount_s_axis_diff = st.sidebar.number_input("Miktar Y Ekseni Ortak Farkı", value=5, step=1)
38
- first_step = st.sidebar.number_input("İlk Adım", value=0, step=1)
39
- increase_amount = st.sidebar.number_input("Artış Miktarı", value=1, step=1)
40
 
41
  if st.sidebar.button("Analizi Çalıştır"):
42
  # Butona basıldığında resimleri gizle
@@ -205,10 +205,10 @@ def run_arabic():
205
  lecture_name = st.sidebar.text_input("اسم المادة", value="اسم المادة")
206
  perfect_score = st.sidebar.number_input("الدرجة الكاملة", value=100, step=1)
207
  my_note = st.sidebar.number_input("درجتي", value=0.0, step=0.1)
208
- note_s_axis_diff = st.sidebar.number_input("حجم خطوات المحور السيني للدرجات", value=3, step=1)
209
- amount_s_axis_diff = st.sidebar.number_input("حجم خطوات المحور الصادي للتكرار", value=5, step=1)
210
- first_step = st.sidebar.number_input("الخطوة الأولى", value=0, step=1)
211
- increase_amount = st.sidebar.number_input("مقدار الزيادة", value=1, step=1)
212
 
213
  if st.sidebar.button("تشغيل التحليل"):
214
  # إخفاء الصور عند النقر على الزر
@@ -375,10 +375,10 @@ def run_english():
375
  lecture_name = st.sidebar.text_input("Course Name", value="Course Name")
376
  perfect_score = st.sidebar.number_input("Maximum Exam Score", value=100, step=1)
377
  my_note = st.sidebar.number_input("My Score", value=0.0, step=0.1)
378
- note_s_axis_diff = st.sidebar.number_input("Score X-Axis Step Size", value=3, step=1)
379
- amount_s_axis_diff = st.sidebar.number_input("Frequency Y-Axis Step Size", value=5, step=1)
380
- first_step = st.sidebar.number_input("First Step", value=0, step=1)
381
- increase_amount = st.sidebar.number_input("Step Increase", value=1, step=1)
382
 
383
  if st.sidebar.button("Run Analysis"):
384
  # Hide images when the button is clicked
 
33
  lecture_name = st.sidebar.text_input("Ders Adı", value="Ders Adı")
34
  perfect_score = st.sidebar.number_input("Sınav Puanı Üst Limiti", value=100, step=1)
35
  my_note = st.sidebar.number_input("Benim Notum", value=0.0, step=0.1)
36
+ note_s_axis_diff = st.sidebar.number_input("X ekseni(notlar) 0'dan başlayıp kaçar kaçar artsın:", value=3, step=1)
37
+ amount_s_axis_diff = st.sidebar.number_input("Y ekseni(notların adetleri) 0'dan başlayıp kaçar kaçar artsın:", value=5, step=1)
38
+ first_step = st.sidebar.number_input("Txt dosyanızda notların başladığı indeks: ", value=0, step=1)
39
+ increase_amount = st.sidebar.number_input("Txt dosyanızda kaç adet başlık(not,isim,numara,doğru,yanlış vs.) var: ", value=1, step=1)
40
 
41
  if st.sidebar.button("Analizi Çalıştır"):
42
  # Butona basıldığında resimleri gizle
 
205
  lecture_name = st.sidebar.text_input("اسم المادة", value="اسم المادة")
206
  perfect_score = st.sidebar.number_input("الدرجة الكاملة", value=100, step=1)
207
  my_note = st.sidebar.number_input("درجتي", value=0.0, step=0.1)
208
+ note_s_axis_diff = st.sidebar.number_input("المحور X (الملاحظات) يبدأ من الصفر ويزداد بالزيادات:", value=3, step=1)
209
+ amount_s_axis_diff = st.sidebar.number_input("المحور Y (عدد الدرجات) يبدأ من الصفر ويزداد بأي رقم:", value=5, step=1)
210
+ first_step = st.sidebar.number_input("الفهرس الذي تبدأ منه الملاحظات في ملف txt الخاص بك:", value=0, step=1)
211
+ increase_amount = st.sidebar.number_input("كم عدد العناوين (ملاحظة، الاسم، الرقم، صحيح، خطأ، وما إلى ذلك) الموجودة في ملف txt الخاص بك:", value=1, step=1)
212
 
213
  if st.sidebar.button("تشغيل التحليل"):
214
  # إخفاء الصور عند النقر على الزر
 
375
  lecture_name = st.sidebar.text_input("Course Name", value="Course Name")
376
  perfect_score = st.sidebar.number_input("Maximum Exam Score", value=100, step=1)
377
  my_note = st.sidebar.number_input("My Score", value=0.0, step=0.1)
378
+ note_s_axis_diff = st.sidebar.number_input("By what value should the x-axis increase starting from 0?", value=3, step=1)
379
+ amount_s_axis_diff = st.sidebar.number_input("By what value should the y-axis increase starting from 0?", value=5, step=1)
380
+ first_step = st.sidebar.number_input("What is the index where notes start in your txt file:", value=0, step=1)
381
+ increase_amount = st.sidebar.number_input("How many headings (note, name, number, correct, incorrect etc.) are there in your txt file:", value=1, step=1)
382
 
383
  if st.sidebar.button("Run Analysis"):
384
  # Hide images when the button is clicked