kleinhoellental commited on
Commit
2e62286
1 Parent(s): f1a1df2

Update app.py

Browse files

deleted unnecessary code

Files changed (1) hide show
  1. app.py +4 -49
app.py CHANGED
@@ -5,63 +5,16 @@
5
  #######################################################################################################
6
 
7
  import pandas as pd
8
- import geopandas as gpd
9
- import os
10
- from configparser import ConfigParser
11
  import gradio as gr
12
 
13
  # modules
14
- from modules.geojson_github_loader import download_github_geojson
15
- from modules.geojson_processor import geojson_processor_to_csv
16
  from modules.language_model import TAPAS
17
 
18
 
19
- #######################################################################################################
20
- # CONFIG
21
- #######################################################################################################
22
- # Prints disabled!!
23
- #print('\nCurrent Working Directory (CWD):\n' + os.getcwd())
24
-
25
- config_object = ConfigParser()
26
- if 'config.ini' in os.listdir():
27
- config_object.read('config.ini')
28
- #print('Setting have been imported from the config file.')
29
- else:
30
- print('No config file in the CWD')
31
- quit()
32
-
33
- # changing CWD and input output folders
34
- os.chdir(format(config_object['CONFIG']['CWD']))
35
-
36
- DATA = os.getcwd() + '/' + format(config_object['CONFIG']['Input'])
37
- OUT = os.getcwd() + '/' + format(config_object['CONFIG']['Output'])
38
- TEMP = os.getcwd() + '/' + format(config_object['CONFIG']['Temp'])
39
-
40
-
41
- #######################################################################################################
42
- # Load and prepare Data
43
- #######################################################################################################
44
-
45
- # load github data
46
- # attributes
47
- github_user = "Giedeon25"
48
- github_repo = "GID-Project"
49
- file_path_github = "main/data/Input/gadm41_DEU_1.json"
50
- token = "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"
51
-
52
- local_file_path = DATA + '/' + 'gadm41_DEU_1.json'
53
-
54
- output_file = TEMP + '/' + 'gadm41_DEU_1'
55
-
56
- # load locally
57
- geojson_data = gpd.read_file(local_file_path)
58
-
59
-
60
-
61
  ##################################################################################
62
  # Function that enables testing
63
  ##################################################################################
64
- table_main = pd.read_csv(TEMP + '/' + 'gadm41_DEU_1_main').astype(str)
65
 
66
  def AskAI(ques, lv, table_main = table_main):
67
  level = int(lv) # Currently placeholder
@@ -70,9 +23,11 @@ def AskAI(ques, lv, table_main = table_main):
70
  return(ans)
71
 
72
  def AskAI_easy(ques):
73
- Tmain = pd.read_csv(TEMP + '/' + 'gadm41_DEU_1_main').astype(str)
74
  blub = str(AskAI(ques,1,Tmain))
75
  return(blub)
 
 
76
  #######################################################################################
77
  # Gradio Interface
78
  ###############################################################################
 
5
  #######################################################################################################
6
 
7
  import pandas as pd
 
 
 
8
  import gradio as gr
9
 
10
  # modules
 
 
11
  from modules.language_model import TAPAS
12
 
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ##################################################################################
15
  # Function that enables testing
16
  ##################################################################################
17
+ table_main = pd.read_csv('./data' + '/' + 'gadm41_DEU_1_main').astype(str)
18
 
19
  def AskAI(ques, lv, table_main = table_main):
20
  level = int(lv) # Currently placeholder
 
23
  return(ans)
24
 
25
  def AskAI_easy(ques):
26
+ Tmain = pd.read_csv('./data' + '/' + 'gadm41_DEU_1_main').astype(str)
27
  blub = str(AskAI(ques,1,Tmain))
28
  return(blub)
29
+
30
+
31
  #######################################################################################
32
  # Gradio Interface
33
  ###############################################################################