Eemansleepdeprived commited on
Commit
2db884c
Β·
1 Parent(s): 4e9ee5a
Files changed (5) hide show
  1. cleaned_related_skills.json +0 -0
  2. main.py +42 -0
  3. make_dataset.ipynb +249 -0
  4. skills.csv +205 -0
  5. sus.ipynb +225 -0
cleaned_related_skills.json ADDED
The diff for this file is too large to render. See raw diff
 
main.py ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import openai
2
+ import streamlit as st
3
+ import pandas as pd
4
+ import openai
5
+ def clicks(prompt):
6
+ openai.api_key = "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"
7
+
8
+ response = openai.Completion.create(
9
+ engine="text-curie-001",
10
+ prompt=prompt,
11
+ temperature=0.7 ,
12
+ max_tokens=2000,
13
+ top_p=1.0,
14
+ frequency_penalty=0.0,
15
+ presence_penalty=0.0
16
+ )
17
+ b=response
18
+ # st.write(st.markdown())
19
+ st.write(response.choices[0].text)
20
+ st.balloons()
21
+
22
+ def se():
23
+ x=True
24
+
25
+
26
+
27
+ st.markdown("<h1 style='text-align: center; '>Career Coupler ㊫</h1>", unsafe_allow_html=True)
28
+ st.text_input("Enter Your Name")
29
+ st.text_input("What Region Do You Live In")
30
+ st.date_input("Enter Date Of Birth")
31
+ df=pd.read_csv("/Users/eemanmajumder/code_shit/ML-BASED-CAREER-COUINCLER/why_am_I_pain_hoing_crie_arra_fr/GPT_3_in_my_Ass/skills.csv")
32
+ a=df['skills']
33
+ skills=st.multiselect("What are you good at?",a)
34
+ st.write('You selected:', skills)
35
+
36
+ prompt="Suggest me 10 Jobs Positions based on my skils and describe all the careers suggested.\n My Skills are: "+str(skills)
37
+
38
+ r=st.button("Unfuse Me")
39
+ while r==True:
40
+ clicks(prompt)
41
+ r=False
42
+
make_dataset.ipynb ADDED
@@ -0,0 +1,249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 1,
6
+ "metadata": {},
7
+ "outputs": [
8
+ {
9
+ "name": "stdout",
10
+ "output_type": "stream",
11
+ "text": [
12
+ "Requirement already satisfied: pandas in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (1.5.2)\n",
13
+ "Requirement already satisfied: numpy>=1.21.0 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from pandas) (1.22.1)\n",
14
+ "Requirement already satisfied: python-dateutil>=2.8.1 in /Users/eemanmajumder/Library/Python/3.10/lib/python/site-packages (from pandas) (2.8.2)\n",
15
+ "Requirement already satisfied: pytz>=2020.1 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from pandas) (2022.7)\n",
16
+ "Requirement already satisfied: six>=1.5 in /Users/eemanmajumder/Library/Python/3.10/lib/python/site-packages (from python-dateutil>=2.8.1->pandas) (1.16.0)\n",
17
+ "\u001b[33mWARNING: You are using pip version 21.3.1; however, version 23.0.1 is available.\n",
18
+ "You should consider upgrading via the '/Library/Frameworks/Python.framework/Versions/3.10/bin/python3.10 -m pip install --upgrade pip' command.\u001b[0m\n"
19
+ ]
20
+ }
21
+ ],
22
+ "source": [
23
+ "!pip3 install pandas"
24
+ ]
25
+ },
26
+ {
27
+ "cell_type": "code",
28
+ "execution_count": 8,
29
+ "metadata": {},
30
+ "outputs": [],
31
+ "source": [
32
+ "import pandas as pd \n",
33
+ "\n",
34
+ "df=pd.DataFrame()\n",
35
+ "df[\"skills\"]=[\"Active listening\",\n",
36
+ "\"Articulating thoughts clearly\",\n",
37
+ "\"Building relationships\",\n",
38
+ "\"Conflict resolution\",\n",
39
+ "\"Cultural sensitivity\",\n",
40
+ "\"Customer service\",\n",
41
+ "\"Emotional intelligence\",\n",
42
+ "\"Empathy\",\n",
43
+ "\"Interpersonal communication\",\n",
44
+ "\"Negotiation\",\n",
45
+ "\"Nonverbal communication\",\n",
46
+ "\"Persuasion\",\n",
47
+ "\"Public speaking\",\n",
48
+ "\"Relationship management\",\n",
49
+ "\"Social skills\",\n",
50
+ "\"Storytelling\",\n",
51
+ "\"Verbal communication\",\n",
52
+ "\"Written communication\",\n",
53
+ "\"Artistic ability\",\n",
54
+ "\"Creative thinking\",\n",
55
+ "\"Graphic design\",\n",
56
+ "\"Industrial design\",\n",
57
+ "\"Innovation\",\n",
58
+ "\"Interior design\",\n",
59
+ "\"Musical ability\",\n",
60
+ "\"Painting\",\n",
61
+ "\"Photography\",\n",
62
+ "\"Sculpting\",\n",
63
+ "\"UX design\",\n",
64
+ "\"Video production\",\n",
65
+ "\"Visual design\",\n",
66
+ "\"Web design\",\n",
67
+ "\"Writing\",\n",
68
+ "\"Accounting\",\n",
69
+ "\"Algorithms\",\n",
70
+ "\"Data analysis\",\n",
71
+ "\"Financial analysis\",\n",
72
+ "\"Mathematical modeling\",\n",
73
+ "\"Probability\",\n",
74
+ "\"Quantitative analysis\",\n",
75
+ "\"Statistics\",\n",
76
+ "\"Change management\",\n",
77
+ "\"Coaching\",\n",
78
+ "\"Conflict management\",\n",
79
+ "\"Delegation\",\n",
80
+ "\"Decision making\",\n",
81
+ "\"Goal setting\",\n",
82
+ "\"Leadership\",\n",
83
+ "\"Management\",\n",
84
+ "\"Mentoring\",\n",
85
+ "\"Project management\",\n",
86
+ "\"Risk management\",\n",
87
+ "\"Strategic planning\",\n",
88
+ "\"Team building\",\n",
89
+ "\"Advertising\",\n",
90
+ "\"Branding\",\n",
91
+ "\"Content marketing\",\n",
92
+ "\"Copywriting\",\n",
93
+ "\"Customer relationship management\",\n",
94
+ "\"Digital marketing\",\n",
95
+ "\"Market research\",\n",
96
+ "\"Marketing strategy\",\n",
97
+ "\"Sales\",\n",
98
+ "\"Search engine optimization\",\n",
99
+ "\"Social media marketing\",\n",
100
+ "\"Analytical thinking\",\n",
101
+ "\"Attention to detail\",\n",
102
+ "\"Brainstorming\",\n",
103
+ "\"Creative problem solving\",\n",
104
+ "\"Critical thinking\",\n",
105
+ "\"Decision making\",\n",
106
+ "\"Logical reasoning\",\n",
107
+ "\"Problem solving\",\n",
108
+ "\"Root cause analysis\",\n",
109
+ "\"Systems thinking\",\n",
110
+ "\"Agile development\",\n",
111
+ "\"Artificial intelligence\",\n",
112
+ "\"Cloud computing\",\n",
113
+ "\"Computer programming\",\n",
114
+ "\"Cybersecurity\",\n",
115
+ "\"Database management\",\n",
116
+ "\"DevOps\",\n",
117
+ "\"Front-end development\",\n",
118
+ "\"Full-stack development\",\n",
119
+ "\"Mobile app development\",\n",
120
+ "\"Network administration\",\n",
121
+ "\"Software development\",\n",
122
+ "\"Technical support\",\n",
123
+ "\"Web development\",\n",
124
+ "\"Competitive analysis\",\n",
125
+ "\"Data mining\",\n",
126
+ "\"Information gathering\",\n",
127
+ "\"Information synthesis\",\n",
128
+ "\"Market analysis\",\n",
129
+ "\"Market research\",\n",
130
+ "\"Research\",\n",
131
+ "\"Survey design\",\n",
132
+ "\"User research\",\n",
133
+ "\"\",\n",
134
+ "\"Chemical engineering\",\n",
135
+ "\"Electrical engineering\",\n",
136
+ "\"Mechanical engineering\",\n",
137
+ "\"Physics\",\n",
138
+ "\"Scientific research\",\n",
139
+ "\"\",\n",
140
+ "\"Classroom management\",\n",
141
+ "\"Curriculum development\",\n",
142
+ "\"Educational technology\",\n",
143
+ "\"Instructional design\",\n",
144
+ "\"Learning management systems\",\n",
145
+ "\"Pedagogy\",\n",
146
+ "\"Teaching\",\n",
147
+ "\"Training\",\n",
148
+ "\"Acupuncture\",\n",
149
+ "\"Athletic training\",\n",
150
+ "\"Counseling\",\n",
151
+ "\"Dentistry\",\n",
152
+ "\"Fitness training\",\n",
153
+ "\"Massage therapy\",\n",
154
+ "\"Medical research\",\n",
155
+ "\"Nutrition\",\n",
156
+ "\"Physical therapy\",\n",
157
+ "\"Psychology\",\n",
158
+ "\"Public health\",\n",
159
+ "\"Yoga\",\n",
160
+ "\"Baking\",\n",
161
+ "\"Bar tending\",\n",
162
+ "\"Catering\",\n",
163
+ "\"Culinary arts\",\n",
164
+ "\"Event planning\",\n",
165
+ "\"Food service\",\n",
166
+ "\"Hotel management\",\n",
167
+ "\"Restaurant management\",\n",
168
+ "\"Auto mechanics\", \n",
169
+ "\"Carpentry\",\n",
170
+ "\"Commercial driving\",\n",
171
+ "\"Construction\",\n",
172
+ "\"Cosmetology\",\n",
173
+ "\"Electrical work\",\n",
174
+ "\"Equipment operation\",\n",
175
+ "\"HVAC installation and repair\",\n",
176
+ "\"Landscaping\",\n",
177
+ "\"Masonry\",\n",
178
+ "\"Metalworking\",\n",
179
+ "\"Painting and decorating\",\n",
180
+ "\"Plumbing\",\n",
181
+ "\"Sewing and tailoring\",\n",
182
+ "\"Welding\",\n",
183
+ "\"Active learning\",\n",
184
+ "\"Adaptability\",\n",
185
+ "\"Attention to detail\",\n",
186
+ "\"Collaboration\",\n",
187
+ "\"Customer service\",\n",
188
+ "\"Decision-making\",\n",
189
+ "\"Flexibility\",\n",
190
+ "\"Initiative\",\n",
191
+ "\"Innovation\",\n",
192
+ "\"Intercultural competence\",\n",
193
+ "\"Leadership\",\n",
194
+ "\"Learning agility\",\n",
195
+ "\"Listening\",\n",
196
+ "\"Multitasking\",\n",
197
+ "\"Organizational skills\",\n",
198
+ "\"Patience\",\n",
199
+ "\"Perseverance\",\n",
200
+ "\"Positive attitude\",\n",
201
+ "\"Problem-solving\",\n",
202
+ "\"Punctuality\",\n",
203
+ "\"Resilience\",\n",
204
+ "\"Responsibility\",\n",
205
+ "\"Self-discipline\",\n",
206
+ "\"Self-motivation\",\n",
207
+ "\"Time management\",\n",
208
+ "\"Work ethic\"]"
209
+ ]
210
+ },
211
+ {
212
+ "cell_type": "code",
213
+ "execution_count": 11,
214
+ "metadata": {},
215
+ "outputs": [],
216
+ "source": [
217
+ "df.head()\n",
218
+ "df.to_csv(\"skills.csv\")"
219
+ ]
220
+ }
221
+ ],
222
+ "metadata": {
223
+ "kernelspec": {
224
+ "display_name": "Python 3",
225
+ "language": "python",
226
+ "name": "python3"
227
+ },
228
+ "language_info": {
229
+ "codemirror_mode": {
230
+ "name": "ipython",
231
+ "version": 3
232
+ },
233
+ "file_extension": ".py",
234
+ "mimetype": "text/x-python",
235
+ "name": "python",
236
+ "nbconvert_exporter": "python",
237
+ "pygments_lexer": "ipython3",
238
+ "version": "3.10.0"
239
+ },
240
+ "orig_nbformat": 4,
241
+ "vscode": {
242
+ "interpreter": {
243
+ "hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49"
244
+ }
245
+ }
246
+ },
247
+ "nbformat": 4,
248
+ "nbformat_minor": 2
249
+ }
skills.csv ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,skills
2
+ 0,Active listening
3
+ 1,Articulating thoughts clearly
4
+ 2,Building relationships
5
+ 3,Conflict resolution
6
+ 4,Cultural sensitivity
7
+ 5,Customer service
8
+ 6,Emotional intelligence
9
+ 7,Empathy
10
+ 8,Interpersonal communication
11
+ 9,Negotiation
12
+ 10,Nonverbal communication
13
+ 11,Persuasion
14
+ 12,Public speaking
15
+ 13,Relationship management
16
+ 14,Social skills
17
+ 15,Storytelling
18
+ 16,Verbal communication
19
+ 17,Written communication
20
+ 18,Artistic ability
21
+ 19,Creative thinking
22
+ 20,Graphic design
23
+ 21,Industrial design
24
+ 22,Innovation
25
+ 23,Interior design
26
+ 24,Musical ability
27
+ 25,Painting
28
+ 26,Photography
29
+ 27,Sculpting
30
+ 28,UX design
31
+ 29,Video production
32
+ 30,Visual design
33
+ 31,Web design
34
+ 32,Writing
35
+ 33,Accounting
36
+ 34,Algorithms
37
+ 35,Data analysis
38
+ 36,Financial analysis
39
+ 37,Mathematical modeling
40
+ 38,Probability
41
+ 39,Quantitative analysis
42
+ 40,Statistics
43
+ 41,Change management
44
+ 42,Coaching
45
+ 43,Conflict management
46
+ 44,Delegation
47
+ 45,Decision making
48
+ 46,Goal setting
49
+ 47,Leadership
50
+ 48,Management
51
+ 49,Mentoring
52
+ 50,Project management
53
+ 51,Risk management
54
+ 52,Strategic planning
55
+ 53,Team building
56
+ 54,Advertising
57
+ 55,Branding
58
+ 56,Content marketing
59
+ 57,Copywriting
60
+ 58,Customer relationship management
61
+ 59,Digital marketing
62
+ 60,Market research
63
+ 61,Marketing strategy
64
+ 62,Sales
65
+ 63,Search engine optimization
66
+ 64,Social media marketing
67
+ 65,Analytical thinking
68
+ 66,Attention to detail
69
+ 67,Brainstorming
70
+ 68,Creative problem solving
71
+ 69,Critical thinking
72
+ 70,Decision making
73
+ 71,Logical reasoning
74
+ 72,Problem solving
75
+ 73,Root cause analysis
76
+ 74,Systems thinking
77
+ 75,Agile development
78
+ 76,Artificial intelligence
79
+ 77,Cloud computing
80
+ 78,Computer programming
81
+ 79,Cybersecurity
82
+ 80,Database management
83
+ 81,DevOps
84
+ 82,Front-end development
85
+ 83,Full-stack development
86
+ 84,Mobile app development
87
+ 85,Network administration
88
+ 86,Software development
89
+ 87,Technical support
90
+ 88,Web development
91
+ 89,Competitive analysis
92
+ 90,Data mining
93
+ 91,Information gathering
94
+ 92,Information synthesis
95
+ 93,Market analysis
96
+ 94,Market research
97
+ 95,Research
98
+ 96,Survey design
99
+ 97,User research
100
+ 98,
101
+ 99,Chemical engineering
102
+ 100,Electrical engineering
103
+ 101,Mechanical engineering
104
+ 102,Physics
105
+ 103,Scientific research
106
+ 104,
107
+ 105,Classroom management
108
+ 106,Curriculum development
109
+ 107,Educational technology
110
+ 108,Instructional design
111
+ 109,Learning management systems
112
+ 110,Pedagogy
113
+ 111,Teaching
114
+ 112,Training
115
+ 113,Acupuncture
116
+ 114,Athletic training
117
+ 115,Counseling
118
+ 116,Dentistry
119
+ 117,Fitness training
120
+ 118,Massage therapy
121
+ 119,Medical research
122
+ 120,Nutrition
123
+ 121,Physical therapy
124
+ 122,Psychology
125
+ 123,Public health
126
+ 124,Yoga
127
+ 125,Baking
128
+ 126,Bar tending
129
+ 127,Catering
130
+ 128,Culinary arts
131
+ 129,Event planning
132
+ 130,Food service
133
+ 131,Hotel management
134
+ 132,Restaurant management
135
+ 133,Auto mechanics
136
+ 134,Carpentry
137
+ 135,Commercial driving
138
+ 136,Construction
139
+ 137,Cosmetology
140
+ 138,Electrical work
141
+ 139,Equipment operation
142
+ 140,HVAC installation and repair
143
+ 141,Landscaping
144
+ 142,Masonry
145
+ 143,Metalworking
146
+ 144,Painting and decorating
147
+ 145,Plumbing
148
+ 146,Sewing and tailoring
149
+ 147,Welding
150
+ 148,Active learning
151
+ 149,Adaptability
152
+ 150,Attention to detail
153
+ 151,Collaboration
154
+ 152,Customer service
155
+ 153,Decision-making
156
+ 154,Flexibility
157
+ 155,Initiative
158
+ 156,Innovation
159
+ 157,Intercultural competence
160
+ 158,Leadership
161
+ 159,Learning agility
162
+ 160,Listening
163
+ 161,Multitasking
164
+ 162,Organizational skills
165
+ 163,Patience
166
+ 164,Perseverance
167
+ 165,Positive attitude
168
+ 166,Problem-solving
169
+ 167,Punctuality
170
+ 168,Resilience
171
+ 169,Responsibility
172
+ 170,Self-discipline
173
+ 171,Self-motivation
174
+ 172,Time management
175
+ 173,Work ethic
176
+ 174,Machine Learning
177
+ 175,Data Science
178
+ 176,Deep Learning
179
+ 177,Artificial Intelligence
180
+ 178,Computer Vision
181
+ 179,Data Mining
182
+ 180,Data Visualization
183
+ 181,Data Analytics
184
+ 182,Data Engineering
185
+ 183,Data Architecture
186
+ 184,Data Management
187
+ 185,Data Modeling
188
+ 186,HR
189
+ 187,Human Resources
190
+ 188,Human Resource Management
191
+ 189,Human Resource Development
192
+ 190,Human Resource Information Systems
193
+ 191,Human Resource Analytics
194
+ 192,Human Resource Strategy
195
+ 193,Human Resource Planning
196
+ 194,Human Resource Policy
197
+ 195,Human Resource Administration
198
+ 196,DSA
199
+ 197,Data Structures and Algorithms
200
+ 198,Translating
201
+ 199,Transcribing
202
+ 200,Interpretation
203
+ 201,Front End
204
+ 202,Video Editing
205
+ 203,Bee Keeping
sus.ipynb ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 3,
6
+ "metadata": {},
7
+ "outputs": [
8
+ {
9
+ "name": "stdout",
10
+ "output_type": "stream",
11
+ "text": [
12
+ "Requirement already satisfied: openai in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (0.25.0)\n",
13
+ "Requirement already satisfied: pandas-stubs>=1.1.0.11 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from openai) (1.5.2.221213)\n",
14
+ "Requirement already satisfied: tqdm in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from openai) (4.64.1)\n",
15
+ "Requirement already satisfied: typing-extensions in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from openai) (4.4.0)\n",
16
+ "Requirement already satisfied: requests>=2.20 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from openai) (2.28.1)\n",
17
+ "Requirement already satisfied: numpy in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from openai) (1.22.1)\n",
18
+ "Requirement already satisfied: pandas>=1.2.3 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from openai) (1.5.2)\n",
19
+ "Requirement already satisfied: openpyxl>=3.0.7 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from openai) (3.0.10)\n",
20
+ "Requirement already satisfied: et-xmlfile in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from openpyxl>=3.0.7->openai) (1.1.0)\n",
21
+ "Requirement already satisfied: pytz>=2020.1 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from pandas>=1.2.3->openai) (2022.7)\n",
22
+ "Requirement already satisfied: python-dateutil>=2.8.1 in /Users/eemanmajumder/Library/Python/3.10/lib/python/site-packages (from pandas>=1.2.3->openai) (2.8.2)\n",
23
+ "Requirement already satisfied: types-pytz>=2022.1.1 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from pandas-stubs>=1.1.0.11->openai) (2022.7.0.0)\n",
24
+ "Requirement already satisfied: idna<4,>=2.5 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests>=2.20->openai) (3.4)\n",
25
+ "Requirement already satisfied: charset-normalizer<3,>=2 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests>=2.20->openai) (2.1.1)\n",
26
+ "Requirement already satisfied: certifi>=2017.4.17 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests>=2.20->openai) (2022.12.7)\n",
27
+ "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests>=2.20->openai) (1.26.13)\n",
28
+ "Requirement already satisfied: six>=1.5 in /Users/eemanmajumder/Library/Python/3.10/lib/python/site-packages (from python-dateutil>=2.8.1->pandas>=1.2.3->openai) (1.16.0)\n",
29
+ "\u001b[33mWARNING: You are using pip version 21.3.1; however, version 23.0.1 is available.\n",
30
+ "You should consider upgrading via the '/Library/Frameworks/Python.framework/Versions/3.10/bin/python3.10 -m pip install --upgrade pip' command.\u001b[0m\n",
31
+ "Collecting streamlit\n",
32
+ " Using cached streamlit-1.18.1-py2.py3-none-any.whl (9.6 MB)\n",
33
+ "Collecting altair>=3.2.0\n",
34
+ " Downloading altair-4.2.2-py3-none-any.whl (813 kB)\n",
35
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 813 kB 396 kB/s \n",
36
+ "\u001b[?25hCollecting gitpython!=3.1.19\n",
37
+ " Downloading GitPython-3.1.31-py3-none-any.whl (184 kB)\n",
38
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 184 kB 1.5 MB/s \n",
39
+ "\u001b[?25hRequirement already satisfied: requests>=2.4 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from streamlit) (2.28.1)\n",
40
+ "Collecting toml\n",
41
+ " Using cached toml-0.10.2-py2.py3-none-any.whl (16 kB)\n",
42
+ "Requirement already satisfied: python-dateutil in /Users/eemanmajumder/Library/Python/3.10/lib/python/site-packages (from streamlit) (2.8.2)\n",
43
+ "Collecting protobuf<4,>=3.12\n",
44
+ " Downloading protobuf-3.20.3-py2.py3-none-any.whl (162 kB)\n",
45
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 162 kB 870 kB/s \n",
46
+ "\u001b[?25hRequirement already satisfied: pandas>=0.25 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from streamlit) (1.5.2)\n",
47
+ "Collecting click>=7.0\n",
48
+ " Using cached click-8.1.3-py3-none-any.whl (96 kB)\n",
49
+ "Collecting validators>=0.2\n",
50
+ " Using cached validators-0.20.0.tar.gz (30 kB)\n",
51
+ " Preparing metadata (setup.py) ... \u001b[?25ldone\n",
52
+ "\u001b[?25hRequirement already satisfied: numpy in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from streamlit) (1.22.1)\n",
53
+ "Collecting importlib-metadata>=1.4\n",
54
+ " Downloading importlib_metadata-6.0.0-py3-none-any.whl (21 kB)\n",
55
+ "Collecting pympler>=0.9\n",
56
+ " Using cached Pympler-1.0.1-py3-none-any.whl (164 kB)\n",
57
+ "Collecting semver\n",
58
+ " Using cached semver-2.13.0-py2.py3-none-any.whl (12 kB)\n",
59
+ "Collecting pyarrow>=4.0\n",
60
+ " Downloading pyarrow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl (22.4 MB)\n",
61
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 22.4 MB 1.3 MB/s \n",
62
+ "\u001b[?25hRequirement already satisfied: tornado>=6.0.3 in /Users/eemanmajumder/Library/Python/3.10/lib/python/site-packages (from streamlit) (6.2)\n",
63
+ "Collecting pillow>=6.2.0\n",
64
+ " Downloading Pillow-9.4.0-cp310-cp310-macosx_11_0_arm64.whl (3.0 MB)\n",
65
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 3.0 MB 2.0 MB/s \n",
66
+ "\u001b[?25hCollecting blinker>=1.0.0\n",
67
+ " Using cached blinker-1.5-py2.py3-none-any.whl (12 kB)\n",
68
+ "Requirement already satisfied: typing-extensions>=3.10.0.0 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from streamlit) (4.4.0)\n",
69
+ "Collecting tzlocal>=1.1\n",
70
+ " Using cached tzlocal-4.2-py3-none-any.whl (19 kB)\n",
71
+ "Collecting rich>=10.11.0\n",
72
+ " Downloading rich-13.3.1-py3-none-any.whl (239 kB)\n",
73
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 239 kB 1.6 MB/s \n",
74
+ "\u001b[?25hCollecting cachetools>=4.0\n",
75
+ " Downloading cachetools-5.3.0-py3-none-any.whl (9.3 kB)\n",
76
+ "Requirement already satisfied: packaging>=14.1 in /Users/eemanmajumder/Library/Python/3.10/lib/python/site-packages (from streamlit) (21.3)\n",
77
+ "Collecting pydeck>=0.1.dev5\n",
78
+ " Downloading pydeck-0.8.0-py2.py3-none-any.whl (4.7 MB)\n",
79
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 4.7 MB 68 kB/s \n",
80
+ "\u001b[?25hCollecting jsonschema>=3.0\n",
81
+ " Downloading jsonschema-4.17.3-py3-none-any.whl (90 kB)\n",
82
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 90 kB 1.8 MB/s \n",
83
+ "\u001b[?25hCollecting jinja2\n",
84
+ " Using cached Jinja2-3.1.2-py3-none-any.whl (133 kB)\n",
85
+ "Requirement already satisfied: entrypoints in /Users/eemanmajumder/Library/Python/3.10/lib/python/site-packages (from altair>=3.2.0->streamlit) (0.4)\n",
86
+ "Collecting toolz\n",
87
+ " Using cached toolz-0.12.0-py3-none-any.whl (55 kB)\n",
88
+ "Collecting gitdb<5,>=4.0.1\n",
89
+ " Downloading gitdb-4.0.10-py3-none-any.whl (62 kB)\n",
90
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 62 kB 1.7 MB/s \n",
91
+ "\u001b[?25hCollecting zipp>=0.5\n",
92
+ " Downloading zipp-3.14.0-py3-none-any.whl (6.7 kB)\n",
93
+ "Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /Users/eemanmajumder/Library/Python/3.10/lib/python/site-packages (from packaging>=14.1->streamlit) (3.0.9)\n",
94
+ "Requirement already satisfied: pytz>=2020.1 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from pandas>=0.25->streamlit) (2022.7)\n",
95
+ "Requirement already satisfied: six>=1.5 in /Users/eemanmajumder/Library/Python/3.10/lib/python/site-packages (from python-dateutil->streamlit) (1.16.0)\n",
96
+ "Requirement already satisfied: charset-normalizer<3,>=2 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests>=2.4->streamlit) (2.1.1)\n",
97
+ "Requirement already satisfied: certifi>=2017.4.17 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests>=2.4->streamlit) (2022.12.7)\n",
98
+ "Requirement already satisfied: idna<4,>=2.5 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests>=2.4->streamlit) (3.4)\n",
99
+ "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from requests>=2.4->streamlit) (1.26.13)\n",
100
+ "Collecting pygments<3.0.0,>=2.14.0\n",
101
+ " Downloading Pygments-2.14.0-py3-none-any.whl (1.1 MB)\n",
102
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 1.1 MB 2.1 MB/s \n",
103
+ "\u001b[?25hCollecting markdown-it-py<3.0.0,>=2.1.0\n",
104
+ " Using cached markdown_it_py-2.1.0-py3-none-any.whl (84 kB)\n",
105
+ "Collecting pytz-deprecation-shim\n",
106
+ " Using cached pytz_deprecation_shim-0.1.0.post0-py2.py3-none-any.whl (15 kB)\n",
107
+ "Requirement already satisfied: decorator>=3.4.0 in /Users/eemanmajumder/Library/Python/3.10/lib/python/site-packages (from validators>=0.2->streamlit) (5.1.1)\n",
108
+ "Collecting smmap<6,>=3.0.1\n",
109
+ " Using cached smmap-5.0.0-py3-none-any.whl (24 kB)\n",
110
+ "Collecting MarkupSafe>=2.0\n",
111
+ " Downloading MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_universal2.whl (17 kB)\n",
112
+ "Collecting pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0\n",
113
+ " Downloading pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl (82 kB)\n",
114
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 82 kB 989 kB/s \n",
115
+ "\u001b[?25hCollecting attrs>=17.4.0\n",
116
+ " Downloading attrs-22.2.0-py3-none-any.whl (60 kB)\n",
117
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 60 kB 1.5 MB/s \n",
118
+ "\u001b[?25hCollecting mdurl~=0.1\n",
119
+ " Using cached mdurl-0.1.2-py3-none-any.whl (10.0 kB)\n",
120
+ "Collecting tzdata\n",
121
+ " Downloading tzdata-2022.7-py2.py3-none-any.whl (340 kB)\n",
122
+ " |β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 340 kB 1.9 MB/s \n",
123
+ "\u001b[?25hUsing legacy 'setup.py install' for validators, since package 'wheel' is not installed.\n",
124
+ "Installing collected packages: tzdata, smmap, pyrsistent, mdurl, MarkupSafe, attrs, zipp, toolz, pytz-deprecation-shim, pygments, markdown-it-py, jsonschema, jinja2, gitdb, validators, tzlocal, toml, semver, rich, pympler, pydeck, pyarrow, protobuf, pillow, importlib-metadata, gitpython, click, cachetools, blinker, altair, streamlit\n",
125
+ " Attempting uninstall: pygments\n",
126
+ " Found existing installation: Pygments 2.13.0\n",
127
+ " Uninstalling Pygments-2.13.0:\n",
128
+ " Successfully uninstalled Pygments-2.13.0\n",
129
+ " Running setup.py install for validators ... \u001b[?25ldone\n",
130
+ "\u001b[?25hSuccessfully installed MarkupSafe-2.1.2 altair-4.2.2 attrs-22.2.0 blinker-1.5 cachetools-5.3.0 click-8.1.3 gitdb-4.0.10 gitpython-3.1.31 importlib-metadata-6.0.0 jinja2-3.1.2 jsonschema-4.17.3 markdown-it-py-2.1.0 mdurl-0.1.2 pillow-9.4.0 protobuf-3.20.3 pyarrow-11.0.0 pydeck-0.8.0 pygments-2.14.0 pympler-1.0.1 pyrsistent-0.19.3 pytz-deprecation-shim-0.1.0.post0 rich-13.3.1 semver-2.13.0 smmap-5.0.0 streamlit-1.18.1 toml-0.10.2 toolz-0.12.0 tzdata-2022.7 tzlocal-4.2 validators-0.20.0 zipp-3.14.0\n",
131
+ "\u001b[33mWARNING: You are using pip version 21.3.1; however, version 23.0.1 is available.\n",
132
+ "You should consider upgrading via the '/Library/Frameworks/Python.framework/Versions/3.10/bin/python3.10 -m pip install --upgrade pip' command.\u001b[0m\n"
133
+ ]
134
+ }
135
+ ],
136
+ "source": [
137
+ "!pip3 install openai\n",
138
+ "!pip3 install streamlit"
139
+ ]
140
+ },
141
+ {
142
+ "cell_type": "code",
143
+ "execution_count": 5,
144
+ "metadata": {},
145
+ "outputs": [],
146
+ "source": [
147
+ "import openai\n",
148
+ "import streamlit as st\n",
149
+ "import pandas as pd\n"
150
+ ]
151
+ },
152
+ {
153
+ "cell_type": "code",
154
+ "execution_count": null,
155
+ "metadata": {},
156
+ "outputs": [],
157
+ "source": [
158
+ "st.markdown(\"<h1 style='text-align: center; '>Career Coupler ㊫</h1>\", unsafe_allow_html=True)\n",
159
+ "st.text_input(\"Enter Your Name\")\n",
160
+ "st.text_input(\"What Region Do You Live In\")\n",
161
+ "df=pd.read_csv(\"/Users/eemanmajumder/code_shit/ML-BASED-CAREER-COUINCLER/why_am_I_pain_hoing_crie_arra_fr/GPT_3_in_my_Ass/skills.csv\")\n",
162
+ "a=df['skills']\n",
163
+ "skill=st.multiselect(\"What are you good at?\",a)\n",
164
+ "st.write('You selected:', skills)"
165
+ ]
166
+ },
167
+ {
168
+ "cell_type": "code",
169
+ "execution_count": 18,
170
+ "metadata": {},
171
+ "outputs": [
172
+ {
173
+ "name": "stdout",
174
+ "output_type": "stream",
175
+ "text": [
176
+ "['sususus', 'bobob']\n"
177
+ ]
178
+ },
179
+ {
180
+ "data": {
181
+ "text/plain": [
182
+ "str"
183
+ ]
184
+ },
185
+ "execution_count": 18,
186
+ "metadata": {},
187
+ "output_type": "execute_result"
188
+ }
189
+ ],
190
+ "source": [
191
+ "l=['sususus','bobob']\n",
192
+ "l=str(l)\n",
193
+ "print(l)\n",
194
+ "type(l)"
195
+ ]
196
+ }
197
+ ],
198
+ "metadata": {
199
+ "kernelspec": {
200
+ "display_name": "Python 3",
201
+ "language": "python",
202
+ "name": "python3"
203
+ },
204
+ "language_info": {
205
+ "codemirror_mode": {
206
+ "name": "ipython",
207
+ "version": 3
208
+ },
209
+ "file_extension": ".py",
210
+ "mimetype": "text/x-python",
211
+ "name": "python",
212
+ "nbconvert_exporter": "python",
213
+ "pygments_lexer": "ipython3",
214
+ "version": "3.10.0"
215
+ },
216
+ "orig_nbformat": 4,
217
+ "vscode": {
218
+ "interpreter": {
219
+ "hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49"
220
+ }
221
+ }
222
+ },
223
+ "nbformat": 4,
224
+ "nbformat_minor": 2
225
+ }