Tao Wu commited on
Commit
3430cbb
·
1 Parent(s): fc63bd4
.gitignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ __pycache__/
2
+ app-data/
3
+ redis-data/
4
+ k8s/
Dockerfile ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+
3
+
4
+ RUN apt-get update && apt-get install -y --no-install-recommends \
5
+ build-essential \
6
+ && rm -rf /var/lib/apt/lists/*
7
+
8
+
9
+ COPY requirements.txt .
10
+ RUN pip install --no-cache-dir -r requirements.txt
11
+
12
+
13
+ RUN export PYTHONUNBUFFERED=1
14
+
15
+ WORKDIR /app
16
+ COPY app /app
17
+
18
+
19
+ EXPOSE 7860
20
+
21
+ CMD ["python", "-u", "app.py"]
README copy.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # de.rwth.dbis.courserecsys
2
+
3
+
4
+
5
+ ## Getting started
6
+
7
+ To make it easy for you to get started with GitLab, here's a list of recommended next steps.
8
+
9
+ Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
10
+
11
+ ## Add your files
12
+
13
+ - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
14
+ - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
15
+
16
+ ```
17
+ cd existing_repo
18
+ git remote add origin https://gitlab.com/myedulife/de.rwth.dbis.courserecsys.git
19
+ git branch -M main
20
+ git push -uf origin main
21
+ ```
22
+
23
+ ## Integrate with your tools
24
+
25
+ - [ ] [Set up project integrations](https://gitlab.com/myedulife/de.rwth.dbis.courserecsys/-/settings/integrations)
26
+
27
+ ## Collaborate with your team
28
+
29
+ - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
30
+ - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
31
+ - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
32
+ - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
33
+ - [ ] [Set auto-merge](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
34
+
35
+ ## Test and Deploy
36
+
37
+ Use the built-in continuous integration in GitLab.
38
+
39
+ - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
40
+ - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
41
+ - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
42
+ - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
43
+ - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
44
+
45
+ ***
46
+
47
+ # Editing this README
48
+
49
+ When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template.
50
+
51
+ ## Suggestions for a good README
52
+
53
+ Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
54
+
55
+ ## Name
56
+ Choose a self-explaining name for your project.
57
+
58
+ ## Description
59
+ Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
60
+
61
+ ## Badges
62
+ On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
63
+
64
+ ## Visuals
65
+ Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
66
+
67
+ ## Installation
68
+ Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
69
+
70
+ ## Usage
71
+ Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
72
+
73
+ ## Support
74
+ Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
75
+
76
+ ## Roadmap
77
+ If you have ideas for releases in the future, it is a good idea to list them in the README.
78
+
79
+ ## Contributing
80
+ State if you are open to contributions and what your requirements are for accepting them.
81
+
82
+ For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
83
+
84
+ You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
85
+
86
+ ## Authors and acknowledgment
87
+ Show your appreciation to those who have contributed to the project.
88
+
89
+ ## License
90
+ For open source projects, say how it is licensed.
91
+
92
+ ## Project status
93
+ If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
app/app.py ADDED
@@ -0,0 +1,196 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import pandas as pd
3
+ import redis
4
+ import json
5
+ import requests
6
+ from config import *
7
+ from embedding_setup import retriever, find_similar_occupation
8
+ from data_process import build_skill_query, get_occupations_from_csv, get_courses_from_BA, get_occupation_detial, build_occupation_query
9
+
10
+ r = redis.Redis(host=REDIS_HOST, port=REDIS_PORT, db=REDIS_DB, decode_responses=True)
11
+ skill_details_mapping = {}
12
+
13
+
14
+ # Function to retrieve documents based on selected skills
15
+ def retrieve_documents(occupation,skills):
16
+ output = []
17
+ output.append(f"<div style=\"text-align: center; font-size: 24px;\">Empfehlungsergebnisse:</div>")
18
+ oc_uri = occupations.get(occupation, "")
19
+ skill_query = ''
20
+ if isinstance(oc_uri, int):
21
+ df = pd.read_csv("/app/data/berufe_info.csv")
22
+ target_occupation = df[df['id'] == oc_uri]
23
+ target_occupation_query = target_occupation['short name'] + ' ' + target_occupation['description']
24
+ target_occupation_query = target_occupation_query.values[0]
25
+ else:
26
+ target_occupation = get_occupation_detial(oc_uri)
27
+ target_occupation_query = build_occupation_query(target_occupation)
28
+ for german_label in skills:
29
+ skill_query += german_label + ' '
30
+ query = target_occupation_query + ' ' + skill_query
31
+ print(query)
32
+ docs = retriever.get_relevant_documents(query)
33
+ output.append(f"<b>Qualifikationslücke:</b> {skill_query}")
34
+ output.append(f"<b>Empfohlene Kurse:</b>")
35
+ for doc in docs:
36
+ doc_name = doc.metadata.get('name', 'Unnamed Document')
37
+ doc_url = doc.metadata.get('url', '#')
38
+ output.append(f"<a href='{doc_url}' target='_blank'>{doc_name}</a>")
39
+ output.append(f"<br>")
40
+ return "<br>".join(output)
41
+
42
+
43
+ def get_candidate_courses(occupation, skills):
44
+ output = []
45
+ output.append(f"<div style=\"text-align: center; font-size: 24px;\">Empfehlungsergebnisse:</div>")
46
+ df_lookup = pd.read_csv('/app/data/kldb_isco_lookup.csv')
47
+ df_berufe = pd.read_csv('/app/data/berufe_info.csv')
48
+ occupation_codes = set()
49
+ kldB_set = set()
50
+ occupation_hrefs = set()
51
+ BA_berufe = set()
52
+ oc_uri = occupations.get(occupation, "")
53
+ target_occupation = get_occupation_detial(oc_uri)
54
+ target_occupation_query = build_occupation_query(target_occupation)
55
+
56
+ for german_label in skills:
57
+ skill = skill_details_mapping.get(german_label, {})
58
+ uri = f'https://ec.europa.eu/esco/api/resource/skill?selectedVersion=v1.0.9&language=en&uri={skill["uri"]}'
59
+ try:
60
+ skill_response = requests.get(uri)
61
+ skill_response.raise_for_status()
62
+ skill_json = skill_response.json()
63
+
64
+ # Combine essential and optional occupations
65
+ skill_related_occupations = (skill_json['_links'].get('isEssentialForOccupation', []) +
66
+ skill_json['_links'].get('isOptionalForOccupation', []))
67
+
68
+ for occupation in skill_related_occupations:
69
+ href = occupation.get('href')
70
+ if href:
71
+ occupation_hrefs.add(href)
72
+ except requests.RequestException as e:
73
+ print(f"Error while fetching skill details: {e}")
74
+
75
+ for href in occupation_hrefs:
76
+ try:
77
+ occupation_response = requests.get(href)
78
+ occupation_response.raise_for_status()
79
+ occupation_details = occupation_response.json()
80
+
81
+ code = occupation_details.get('code')
82
+ if code:
83
+ occupation_codes.add(code.split('.')[0])
84
+ except requests.RequestException as e:
85
+ print(f"Error while fetching occupation details: {e}")
86
+
87
+ for isco_code in occupation_codes:
88
+ kldB_codes = df_lookup[df_lookup['isco08'] == int(isco_code)]['kldb2010'].values
89
+ for code in kldB_codes:
90
+ kldB_set.add(str(code))
91
+ dfs = []
92
+ for kldb in kldB_set:
93
+ berufe = df_berufe[df_berufe['KldB codes']=='B '+kldb]
94
+ dfs.append(berufe)
95
+
96
+ merged_df = pd.concat(dfs, ignore_index=True)
97
+ top_k_berufe = find_similar_occupation(target_occupation_query,merged_df,5,'cosine')
98
+ for beruf in top_k_berufe:
99
+ entry_requirement = beruf.metadata['entry_requirements']
100
+ corrected_json_string = entry_requirement.replace("'", '"')
101
+ entry_requirement_json = json.loads(corrected_json_string)
102
+ for js in entry_requirement_json:
103
+ BA_berufe.add(str(js['data_idref']))
104
+
105
+ result = get_courses_from_BA(BA_berufe)
106
+ courses = result
107
+ for course in courses['_embedded']['termine']:
108
+ output.append(f"<a href='{course['angebot']['link']}' target='_blank'>{course['angebot']['titel']}</a>")
109
+
110
+ return "<br>".join(output)
111
+
112
+
113
+ def get_occupation_skills(oc_uri):
114
+ skills_json = r.get(oc_uri)
115
+ skill_labels = []
116
+ if skills_json:
117
+ skills = json.loads(skills_json)
118
+ for skill in skills:
119
+ german_label = skill['preferredLabel']['de']
120
+ skill_details_mapping[german_label] = skill
121
+ skill_labels.append(german_label)
122
+ return skill_labels
123
+ else:
124
+ return skill_labels
125
+
126
+ def get_occupation_skills_BA(oc_uri):
127
+ df = pd.read_csv("/app/data/berufe_info.csv")
128
+ essential_skills = df[df['id'] == oc_uri]['essential skills'].values
129
+ optional_skills = df[df['id'] == oc_uri]['optional skills'].values
130
+ combined_skills = essential_skills[0][:-1] + ',' + optional_skills[0][1:]
131
+ combined_skills = combined_skills.replace("'", "\"")
132
+ skills = json.loads(combined_skills)
133
+ skill_labels = []
134
+ for skill in skills:
135
+ german_label = skill['skill']
136
+ skill_details_mapping[german_label] = skill
137
+ skill_labels.append(german_label)
138
+ return skill_labels
139
+
140
+ # Function to update the skills dropdown
141
+ def update_skills(occupation):
142
+ oc_uri = occupations.get(occupation, "")
143
+ if isinstance(oc_uri, int):
144
+ skills = get_occupation_skills_BA(oc_uri)
145
+ return gr.Dropdown(skills,label="aktuelle Fähigkeiten", multiselect=True,info='Bitte wählen Sie die Fähigkeiten aus, die Sie derzeit besitzen')
146
+ else:
147
+ skills = get_occupation_skills(oc_uri)
148
+ return gr.Dropdown(skills,label="aktuelle Fähigkeiten", multiselect=True,info='Bitte wählen Sie die Fähigkeiten aus, die Sie derzeit besitzen')
149
+ return
150
+
151
+ def update_skillgap(occupation, current_skills):
152
+ oc_uri = occupations.get(occupation, "")
153
+ if isinstance(oc_uri, int):
154
+ ocupation_skills = get_occupation_skills_BA(oc_uri)
155
+ else:
156
+ ocupation_skills = get_occupation_skills(oc_uri)
157
+ skill_gap = [skill for skill in ocupation_skills if skill not in current_skills]
158
+
159
+ return gr.Dropdown(skill_gap, label="Qualifikationslücke", multiselect=True, info='Bitte wählen Sie die Fähigkeiten aus, die Sie lernen möchten.')
160
+
161
+ if __name__ == "__main__":
162
+ # Load occupations from CSV
163
+ occupations_esco = get_occupations_from_csv(CSV_FILE_PATH)
164
+ df = pd.read_csv("/app/data/berufe_info.csv")
165
+ occupations_BA = df[['short name', 'id']].set_index('short name').to_dict()['id']
166
+ occupations = {**occupations_esco, **occupations_BA}
167
+ # Gradio interface
168
+ with gr.Blocks(title="MyEduLife Kursempfehlungssystem") as demo:
169
+ with gr.Row():
170
+ with gr.Column():
171
+ occupation_dropdown = gr.Dropdown(list(occupations.keys()), label="Berufe",info='Bitte wählen Sie Ihren Zielberuf aus.')
172
+ currentskill_dropdown = gr.Dropdown([],label="current skills", multiselect=True,info='Please choose the skills you current have')
173
+ sb_btn = gr.Button("Submit")
174
+ skillgap_dropdown = gr.Dropdown([],label="Fähigkeiten", multiselect=True,info='Bitte wählen Sie die Fähigkeiten aus, die Sie lernen möchten.')
175
+ # Use gr.HTML to display the HTML content
176
+ button = gr.Button("Kursempfehlungen")
177
+ with gr.Column():
178
+ documents_output = gr.HTML()
179
+
180
+ occupation_dropdown.change(update_skills, inputs=occupation_dropdown, outputs=currentskill_dropdown)
181
+
182
+ sb_btn.click(
183
+ update_skillgap,
184
+ inputs=[occupation_dropdown,currentskill_dropdown],
185
+ outputs=skillgap_dropdown
186
+ )
187
+
188
+ button.click(
189
+ retrieve_documents,
190
+ inputs=[occupation_dropdown,skillgap_dropdown],
191
+ outputs=documents_output
192
+ )
193
+ print('Initialization completed')
194
+ demo.launch(server_name="0.0.0.0", server_port=7860)
195
+
196
+
app/config.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ # Redis configuration
4
+ REDIS_HOST = os.getenv('REDIS_HOST', 'redis')
5
+ REDIS_PORT = int(os.getenv('REDIS_PORT', 6379))
6
+ REDIS_DB = int(os.getenv('REDIS_DB', 0))
7
+
8
+ # Model and embedding configuration
9
+ MODEL_NAME = os.getenv('MODEL_NAME', "intfloat/multilingual-e5-large-instruct")
10
+ ENCODE_KWARGS = {
11
+ 'normalize_embeddings': os.getenv('NORMALIZE_EMBEDDINGS', 'True') == 'True',
12
+ 'convert_to_tensor': os.getenv('CONVERT_TO_TENSOR', 'True') == 'True'
13
+ }
14
+ QUERY_INSTRUCTION = os.getenv('QUERY_INSTRUCTION', '')
15
+
16
+ # Other configurations
17
+ TOP_K = int(os.getenv('TOP_K', 5))
18
+ PERSIST_DIRECTORY = os.getenv('PERSIST_DIRECTORY', "/app/data/course_emb_db")
19
+ CSV_FILE_PATH = os.getenv('CSV_FILE_PATH', '/app/data/occupations_de.csv')
app/data_process.py ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from config import *
2
+ import pandas as pd
3
+ import requests
4
+
5
+
6
+
7
+
8
+ def build_skill_query(skill):
9
+ skill_query = skill['preferredLabel']['de'] +" " + skill['preferredLabel']['en']+" "+ skill['description']['de']+ " "+ skill['description']['en']
10
+ if skill['borderConcept']['broaderHierarchyConcept']:
11
+ broader_hierarchy_concept_str = ", ".join(skill['borderConcept']['broaderHierarchyConcept'])
12
+ skill_query += " " + broader_hierarchy_concept_str
13
+ else:
14
+ pass
15
+ if skill['borderConcept']['broaderSkill']:
16
+ broaderSkill_str = ", ".join(skill['borderConcept']['broaderSkill'])
17
+ skill_query += " " + broaderSkill_str
18
+ else:
19
+ pass
20
+ if skill['alternativeLabel']['de']:
21
+ alternativeLabel_de_str = ", ".join(skill['alternativeLabel']['de'])
22
+ skill_query += " " + alternativeLabel_de_str
23
+ else:
24
+ pass
25
+ if skill['alternativeLabel']['en']:
26
+ alternativeLabel_en_str = ", ".join(skill['alternativeLabel']['en'])
27
+ skill_query += " " + alternativeLabel_en_str
28
+ else:
29
+ pass
30
+ return skill_query
31
+
32
+
33
+
34
+ def build_occupation_query(occupation):
35
+ occupation_query = occupation['preferredLabel'].get('de','') +" " + occupation['preferredLabel'].get('en','')+" "+ occupation['description'].get('de','').get('literal','') + " "+ occupation['description'].get('en','').get('literal','')
36
+ if occupation['_links']['broaderIscoGroup']:
37
+ for group in occupation['_links']['broaderIscoGroup']:
38
+ occupation_query += " " + group['title']
39
+ else:
40
+ pass
41
+ return occupation_query
42
+
43
+ # Get occupations from a CSV
44
+ def get_occupations_from_csv(file_path):
45
+ df = pd.read_csv(file_path)
46
+ return df[['preferredLabel', 'conceptUri']].set_index('preferredLabel').to_dict()['conceptUri']
47
+
48
+
49
+ def get_oauth_token():
50
+ # API endpoint URL
51
+ token_url = "https://rest.arbeitsagentur.de/oauth/gettoken_cc"
52
+
53
+ # Client credentials
54
+ client_id = "38053956-6618-4953-b670-b4ae7a2360b1"
55
+ client_secret = "c385073c-3b97-42a9-b916-08fd8a5d1795"
56
+ grant_type = "client_credentials"
57
+
58
+ # Prepare request data
59
+ payload = {
60
+ "client_id": client_id,
61
+ "client_secret": client_secret,
62
+ "grant_type": grant_type
63
+ }
64
+
65
+ # Send request and get response
66
+ response = requests.post(token_url, data=payload)
67
+
68
+ # Check if the request was successful
69
+ if response.status_code == 200:
70
+ return response.json().get("access_token")
71
+ else:
72
+ print("Token request failed:", response.text)
73
+ return None
74
+
75
+ def query_weiterbildungssuche_api(token, params):
76
+ # Set API URL
77
+ api_url = "https://rest.arbeitsagentur.de/infosysbub/wbsuche/pc/v2/bildungsangebot"
78
+
79
+ # Prepare request headers
80
+ headers = {
81
+ "Authorization": f"Bearer {token}"
82
+ }
83
+
84
+ # Send GET request
85
+ response = requests.get(api_url, headers=headers, params=params)
86
+
87
+ if response.status_code == 200:
88
+ return response.json()
89
+ else:
90
+ print("API request failed:", response.text)
91
+ return None
92
+
93
+ def get_courses_from_BA(ids):
94
+ # Get OAuth token
95
+ token = get_oauth_token()
96
+ if token:
97
+ # Set query parameters
98
+ params = {
99
+ "ids": list(ids)
100
+ }
101
+ # Use token to query the API
102
+ result = query_weiterbildungssuche_api(token, params)
103
+ return result
104
+
105
+
106
+ def get_occupation_detial(oc_uri):
107
+ uri = f'https://ec.europa.eu/esco/api/resource/occupation?selectedVersion=v1.0.9&language=en&uri={oc_uri}'
108
+ try:
109
+ occupation_response = requests.get(uri)
110
+ occupation_response.raise_for_status()
111
+ occupation_json = occupation_response.json()
112
+ return occupation_json
113
+
114
+ except requests.RequestException as e:
115
+ print(f"Error while fetching skill details: {e}")
116
+
117
+
118
+
119
+
app/embedding_setup.py ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from langchain_community.vectorstores import Chroma
2
+ from langchain_community.embeddings import HuggingFaceBgeEmbeddings
3
+ from sentence_transformers import SentenceTransformer, util
4
+ from langchain.docstore.document import Document
5
+ import numpy as np
6
+ from config import *
7
+ import os
8
+
9
+ os.environ['CURL_CA_BUNDLE'] = ""
10
+ embedding_int = HuggingFaceBgeEmbeddings(
11
+ model_name=MODEL_NAME,
12
+ encode_kwargs=ENCODE_KWARGS,
13
+ query_instruction=QUERY_INSTRUCTION
14
+ )
15
+
16
+ embedding_sim = HuggingFaceBgeEmbeddings(
17
+ model_name=MODEL_NAME,
18
+ encode_kwargs=ENCODE_KWARGS,
19
+ query_instruction='Retrieve semantically similar text.'
20
+ )
21
+
22
+ db = Chroma(persist_directory=PERSIST_DIRECTORY, embedding_function=embedding_int)
23
+ retriever = db.as_retriever(search_kwargs={"k": TOP_K})
24
+
25
+
26
+ def find_similar_occupation(target_occupation_query, berufe, top_k, similarity_func):
27
+
28
+ # Pro kurs wird ein Document erstellt. Dieses enthält Metadaten sowie einen page_content.
29
+ # Der Inhalt von page_content wird embedded und so für die sucher verwendet.
30
+ docs = []
31
+ for index, beruf in berufe.iterrows():
32
+ # Create document.
33
+ doc = Document(
34
+ page_content= beruf['short name'] + ' ' + beruf['full name'] + ' ' + beruf['description'],
35
+ metadata={
36
+ "id": beruf["id"],
37
+ "name": beruf['short name'],
38
+ "description": beruf["description"],
39
+ "entry_requirements": beruf["entry requirements"]
40
+ },
41
+ )
42
+ docs.append(doc)
43
+
44
+ db_temp = Chroma.from_documents(documents = docs, embedding= embedding_sim, collection_metadata = {"hnsw:space": similarity_func})
45
+ # Retriever will search for the top_5 most similar documents to the query.
46
+ retriever_temp = db_temp.as_retriever(search_kwargs={"k": top_k})
47
+ top_similar_occupations = retriever_temp.get_relevant_documents(target_occupation_query)
48
+
49
+ return top_similar_occupations
docker-compose.yml ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '3.8'
2
+
3
+ services:
4
+ webapp:
5
+ image: escoai
6
+ ports:
7
+ - "7860:7860"
8
+ volumes:
9
+ - ./app-data:/app/data
10
+ depends_on:
11
+ - redis
12
+ environment:
13
+ REDIS_HOST: redis
14
+ REDIS_PORT: 6379
15
+ REDIS_DB: 0
16
+ MODEL_NAME: "/app/data/multilingual-e5-large-instruct"
17
+ NORMALIZE_EMBEDDINGS: "True"
18
+ CONVERT_TO_TENSOR: "True"
19
+ QUERY_INSTRUCTION: "Given a skill, retrieve relevant courses that teach the skill: "
20
+ TOP_K: 5
21
+ PERSIST_DIRECTORY: "/app/data/course_emb_db"
22
+ CSV_FILE_PATH: "/app/data/occupations_de.csv"
23
+
24
+ redis:
25
+ image: "redis:latest"
26
+ volumes:
27
+ - ./redis-data:/data
28
+
29
+
30
+ volumes:
31
+ redis-data:
requirements.txt ADDED
Binary file (278 Bytes). View file