sorg20 commited on
Commit
fe1de71
1 Parent(s): 2912bf6

initial commit

Browse files
app.py ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pysqlite3
2
+ import sys, os
3
+ sys.modules["sqlite3"] = sys.modules.pop("pysqlite3")
4
+ from langchain_community.document_loaders import PyPDFLoader
5
+ from langchain.llms import HuggingFaceHub
6
+ from langchain.embeddings import HuggingFaceInferenceAPIEmbeddings
7
+ from langchain.vectorstores import Chroma
8
+ from langchain_core.prompts import ChatPromptTemplate
9
+ from langchain_core.runnables import RunnablePassthrough
10
+ from langchain_core.output_parsers import StrOutputParser
11
+ from langchain_community.llms import HuggingFaceEndpoint
12
+ import streamlit as st
13
+
14
+ HF_TOKEN = st.secrets["HF_TOKEN"]
15
+ os.environ["HUGGINGFACEHUB_API_TOKEN"] = HF_TOKEN
16
+
17
+
18
+ @st.cache_resource()
19
+ def retrieve_documents():
20
+ embeddings = HuggingFaceInferenceAPIEmbeddings(
21
+ api_key=HF_TOKEN, model_name="BAAI/bge-base-en-v1.5")
22
+ #api_key=HF_TOKEN, model_name="local:BAAI/bge-m3")
23
+ db = Chroma(persist_directory="./db",
24
+ embedding_function=embeddings)
25
+ retriever = db.as_retriever(search_kwargs = {"k":1})
26
+ return retriever
27
+
28
+ @st.cache_resource()
29
+ def create_chain(_retriever):
30
+ template = """
31
+ User: You are an AI Assistant that follows instructions well.
32
+ Please be truthful and give direct answers. Please tell 'I don't know' if user query is not in CONTEXT
33
+
34
+ Keep in mind, you will lose the job, if you answer out of CONTEXT questions
35
+
36
+ CONTEXT: {context}
37
+ Query: {question}
38
+
39
+ Remember only return AI answer
40
+ Assistant:
41
+ """
42
+
43
+ llm = HuggingFaceEndpoint(
44
+ endpoint_url = "https://api-inference.huggingface.co/models/mistralai/Mistral-7B-Instruct-v0.2",
45
+ max_new_tokens=512,
46
+ top_k=1,
47
+ top_p=0.9,
48
+ temperature=0.5,
49
+ repetition_penalty=1.1,
50
+ streaming=False,
51
+ )
52
+
53
+ prompt = ChatPromptTemplate.from_template(template)
54
+ output_parser = StrOutputParser()
55
+ chain = ({
56
+ "context": _retriever.with_config(run_name="Docs"),
57
+ "question":RunnablePassthrough()
58
+ }
59
+ | prompt
60
+ | llm
61
+ | output_parser
62
+ )
63
+ return chain
64
+
65
+
66
+ def main():
67
+ st.title("My LLM based smart CV")
68
+ st.header("Ask what ever about sungwon's CV.")
69
+ prompt = st.text_input("Enter your question")
70
+ text_container = st.empty()
71
+ text_debugger = st.empty()
72
+ full_text = ""
73
+ chain = create_chain(retrieve_documents())
74
+ chunk = chain.invoke(prompt)
75
+ text_container.write(chunk)
76
+
77
+
78
+ if __name__ == "__main__":
79
+ main()
data/Sungwon_Kim_ML_DL.pdf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d71da27162e700b4099071425140a6911505fb43e442dbfb9183a5bc4f89d0df
3
+ size 128552
db/c1c3171b-0031-4e93-9295-49b1b1d2aa06/data_level0.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a13e72541800c513c73dccea69f79e39cf4baef4fa23f7e117c0d6b0f5f99670
3
+ size 3212000
db/c1c3171b-0031-4e93-9295-49b1b1d2aa06/header.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ec6df10978b056a10062ed99efeef2702fa4a1301fad702b53dd2517103c746
3
+ size 100
db/c1c3171b-0031-4e93-9295-49b1b1d2aa06/length.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:588dc281987618920c114e33e47691bdbde0aa9e8bb25774ae6ec4e87232ca59
3
+ size 4000
db/c1c3171b-0031-4e93-9295-49b1b1d2aa06/link_lists.bin ADDED
File without changes
db/chroma.sqlite3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ae120f72cba938dee8bf4af93ff712c0e905f6c5529f91f02ee78ded0cfa6d5
3
+ size 225280
db/storage/default__vector_store.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"embedding_dict": {"fd79a711-6e94-4437-9fc0-08453a765c3a": [-0.007959299720823765, -0.006031903903931379, -0.030766354873776436, 0.005100600887089968, 0.06844566017389297, 0.010932301171123981, 0.02373829483985901, 0.019772052764892578, 0.0110631063580513, -0.02630499191582203, 0.007266837637871504, -0.03121621161699295, -0.07290508598089218, 0.031059198081493378, -0.007850582711398602, 0.04768611118197441, 0.07020936161279678, -0.015298774465918541, 0.005379075650125742, 0.01004562247544527, 0.048381734639406204, 0.0036206585355103016, 0.10245636105537415, 0.03525013476610184, -0.0008808729471638799, -0.024333124980330467, 0.01793191023170948, -0.021358411759138107, -0.009649635292589664, 0.0021476824767887592, 0.03918822482228279, -0.03713506832718849, 0.018669920042157173, 0.006707304157316685, 0.015415460802614689, 0.023825034499168396, -0.0526529885828495, 0.030718782916665077, -0.026151392608880997, 0.027101552113890648, -0.03257928043603897, 0.04842919483780861, -0.020900102332234383, 0.026740483939647675, -0.019713105633854866, -0.010787640698254108, -0.07036849856376648, 0.02984747663140297, 0.0074148704297840595, -0.027389133349061012, -0.09359434247016907, -0.025533724576234818, -0.028543248772621155, 0.011806312017142773, -0.01881355419754982, 0.036835432052612305, 0.0506955087184906, -0.039899617433547974, -0.015661871060729027, -0.04309757053852081, 0.009343613870441914, -0.024382907897233963, 0.0027175769209861755, 0.009217984974384308, 0.023858416825532913, 0.007777239196002483, 0.04097793251276016, 0.020894570276141167, -0.04983733221888542, -0.012067524716258049, -0.014650995843112469, 0.013798766769468784, -0.013226743787527084, -0.0037877343129366636, -0.0051442342810332775, -0.03942256048321724, 0.002297243569046259, 0.055335547775030136, 0.055001161992549896, 0.003788743168115616, 0.01728418469429016, 0.04928956925868988, -0.029277626425027847, 0.044686105102300644, -0.03870367631316185, -0.006591333542019129, -0.02419450506567955, -0.022163182497024536, -0.058619480580091476, 0.02955421432852745, -0.006359823513776064, -0.017294947057962418, 0.023623012006282806, 0.04789986461400986, 0.03824957460165024, 0.0029801952186971903, 0.030328532680869102, -0.01719754934310913, -0.013494588434696198, -0.022328395396471024, 0.01993648149073124, -0.030012330040335655, -0.011665480211377144, 0.03108130767941475, -0.06031099334359169, -0.04151608422398567, -0.049348410218954086, -0.003641582792624831, -0.022191286087036133, 0.0073557570576667786, -0.04661894589662552, 0.016369551420211792, 0.027514923363924026, -0.032534677535295486, -0.10214813798666, 0.046039216220378876, -0.004701655823737383, -0.02369069866836071, -0.016978006809949875, -0.010784022510051727, 0.05242132022976875, 0.03629383072257042, -0.04411403089761734, 0.043751247227191925, 0.0061432369984686375, 0.014432073570787907, -0.024684004485607147, 0.04445195943117142, 0.0007123585673980415, -0.04997578263282776, 0.029559414833784103, 0.04182032495737076, 0.028298741206526756, 0.012123657390475273, 0.014689956791698933, 0.000569420401006937, 0.0208187997341156, 0.0030245452653616667, 0.03482211008667946, 0.0346352644264698, 0.00038780650356784463, -0.03878919035196304, 0.057817038148641586, -0.0349416583776474, 0.018906671553850174, -0.007304861675947905, -0.01989796757698059, -0.029352769255638123, -0.03237457200884819, -0.03400693088769913, -0.010518684983253479, 0.0021862154826521873, -0.02919738180935383, -0.04519546031951904, 0.020788494497537613, 0.04918178543448448, 0.04105167090892792, 0.04120325297117233, -0.0423554889857769, 0.03996056318283081, 0.04036972299218178, 0.03972743824124336, 0.022653786465525627, 0.004855544771999121, -0.011185066774487495, -0.01231022272258997, 0.04371533542871475, 0.0011949468171223998, -0.0355827659368515, -0.013868367299437523, -0.014359463937580585, -0.04585972800850868, 0.06489688158035278, -0.007232318632304668, 0.031281840056180954, 0.010562545619904995, 0.06523750722408295, -0.028343813493847847, 0.001306482357904315, 0.04118260368704796, -0.08049259334802628, 0.0406910739839077, 0.011417897418141365, -0.010247870348393917, 0.000733383814804256, -0.0445929653942585, 0.060368046164512634, 0.022181523963809013, -0.027639171108603477, 0.017541998997330666, -0.06642907112836838, -0.05720043182373047, 0.027295254170894623, -0.012587638571858406, 0.07165049761533737, 0.05896451696753502, 0.004481992218643427, -0.0026908766012638807, -0.03338989242911339, 0.07000961154699326, 0.020187951624393463, -0.03465671464800835, 0.032728444784879684, -0.0350295752286911, -0.06255746632814407, 0.04481326788663864, 0.03363991156220436, -0.013538075610995293, 0.03932393714785576, 0.01470725703984499, 0.018070971593260765, -0.03591841831803322, 0.03988150879740715, -0.0013991269515827298, 0.03344426304101944, -0.002073441632091999, -0.03113909624516964, -0.024934379383921623, 0.056610915809869766, -0.05087415874004364, 0.05018812417984009, 0.024206416681408882, -0.019777648150920868, 0.06921102851629257, -0.019389120861887932, 0.11833937466144562, 0.037190403789281845, -0.05400028079748154, -0.04383125901222229, 0.047831300646066666, 0.01593441516160965, -0.016027702018618584, 0.016380660235881805, 0.004327442497014999, 0.011437250301241875, -0.04520474746823311, -0.005289185326546431, 0.00751511100679636, 0.053856879472732544, -0.045035623013973236, -0.02358919382095337, 0.08794765174388885, -0.0223552193492651, 0.04470410943031311, -0.007594863418489695, 0.026809699833393097, 0.021909981966018677, -0.0006129909306764603, 0.013703211210668087, 0.015371362678706646, -0.01010998897254467, 0.004405220039188862, 0.039094604551792145, -0.03641147539019585, -0.024570437148213387, -0.05066806450486183, 0.007134538143873215, -0.006905432790517807, 0.04892819747328758, 0.03893229365348816, -0.027009541168808937, -0.001876035938039422, -0.003219192149117589, -0.007151820696890354, -0.0402098149061203, -0.09077800810337067, -0.025709105655550957, 0.014001748524606228, 0.029263997450470924, 0.006840237881988287, 0.02139468304812908, 0.0023450851440429688, 0.01098918542265892, -0.006393454968929291, -0.020836569368839264, 0.01933884806931019, 0.024080881848931313, 0.011411631479859352, -0.022972028702497482, -0.010540121234953403, 0.046489112079143524, 0.05325555056333542, -0.014953048899769783, -0.026903444901108742, -0.02149946242570877, -0.04039387404918671, -0.019461805000901222, -0.06584521383047104, -0.0030976790003478527, -0.010051809251308441, -0.05274834856390953, 0.03937375172972679, -0.05114835873246193, -0.017226727679371834, 0.050873517990112305, 0.00881983619183302, 0.016440879553556442, -0.00971818808466196, -0.006625229958444834, 0.013028649613261223, -0.0032248282805085182, 0.03131638839840889, -0.02002885937690735, 0.05148005858063698, -0.014152438379824162, -0.003464079461991787, 0.04952843487262726, -0.03349201753735542, -0.2684159576892853, -0.03180935978889465, 0.0017420188523828983, -0.0020715375430881977, 0.019185204058885574, -0.009419097565114498, 0.015467322431504726, -0.023920098319649696, -0.033354103565216064, -0.04149512201547623, -0.019792765378952026, -0.03381403908133507, -0.011167271994054317, 0.05024512857198715, 0.037279099225997925, 0.030952485278248787, -0.022636452689766884, -0.04735347628593445, 0.02746756002306938, 0.011524316854774952, 0.04283808171749115, -0.07617797702550888, -0.06840934604406357, 0.05620047077536583, 0.017500517889857292, 0.051908448338508606, -0.09275228530168533, -0.01563386619091034, -0.030488133430480957, -0.029158342629671097, -0.054382264614105225, -0.02146158367395401, -0.02783469296991825, -0.0003048428916372359, -0.0035550117027014494, -0.034692198038101196, 0.042226359248161316, -0.0053046392276883125, 0.017103124409914017, 0.017552737146615982, 0.02133389376103878, -0.04633713513612747, -0.05686960369348526, 0.014643684960901737, 0.05294521152973175, 0.05432097241282463, -0.11592059582471848, -0.014028968289494514, -0.02145218476653099, 0.05946676433086395, 0.011978577822446823, 0.013139552436769009, -0.012499411590397358, 0.021039819344878197, -0.03453707695007324, -0.04160952568054199, 0.0077056679874658585, 0.009849422611296177, -0.011377304792404175, 0.019782232120633125, -0.06245221942663193, -0.03219121694564819, -0.017176246270537376, -0.06366176158189774, 0.016704507172107697, -0.01238904520869255, -0.052661024034023285, -0.03091038390994072, 0.02781321294605732, 0.03283219411969185, -0.025267282500863075, 0.015444108285009861, -0.03701403737068176, -0.11354341357946396, -0.026461394503712654, 0.002883418696001172, -0.005322380922734737, -0.019817857071757317, 0.006247204728424549, 0.04373455420136452, -0.012226960621774197, -0.024073312059044838, 0.0021438763942569494, 0.010381796397268772, 0.01741473190486431, -0.0008899241220206022, 0.01292679738253355, 0.0057953218929469585, 0.02484021708369255, -0.013311337679624557, 0.0189062412828207, -0.022287841886281967, 0.0038359826430678368, -0.09921146184206009, 0.05404914543032646, 0.005992578808218241, 0.0397082157433033, -0.006264044903218746, -0.0015547118382528424, 0.00996006652712822, 0.05594627559185028, -0.0626721903681755, -0.01859850436449051, -0.04210513085126877, -0.053237613290548325, -0.011371360160410404, -0.029153086245059967, -0.047732796519994736, 0.0215913075953722, 0.033210963010787964, 0.009035542607307434, -0.08152984082698822, 0.017354046925902367, -0.027721166610717773, 0.014253809116780758, -0.02620059624314308, 0.017892315983772278, 0.05463718622922897, 0.026886871084570885, -0.016173001378774643, -0.05574025213718414, 0.008192025125026703, -0.01595272868871689, -0.02497318759560585, -0.01561899296939373, 0.0012761648977175355, -0.02998821809887886, 0.008186383172869682, -0.021364446729421616, 0.02319272793829441, -0.0019721307326108217, 0.033373892307281494, -0.00015125895151868463, -0.022958334535360336, 0.019252920523285866, -0.0010352227836847305, -0.039285771548748016, -0.017939960584044456, 0.0401885099709034, 0.005792099516838789, 0.013316736556589603, 0.02271590381860733, 0.03382432460784912, -0.010896367020905018, 0.015484214760363102, 0.040186792612075806, 0.012410001829266548, -0.04767463356256485, 0.03797074407339096, -0.005552454385906458, 0.008979528211057186, -0.02178545482456684, -0.00848674587905407, -0.0475904755294323, 0.0071094948798418045, 0.006146159954369068, 0.04037845879793167, 0.004429833497852087, -0.03213513642549515, -0.02130844257771969, 0.023226620629429817, -0.027801627293229103, -0.016789445653557777, -0.004021369852125645, 0.037589531391859055, 0.07827693223953247, -0.007250794675201178, -4.216413071844727e-05, 0.014676104299724102, 0.014332585036754608, -0.003058983013033867, -0.022799039259552956, -0.03138618916273117, -0.034140825271606445, -0.01506834477186203, 0.02118701860308647, 0.028496067970991135, -0.06126099452376366, 0.026254825294017792, 0.017199872061610222, -0.05038220435380936, -0.024406468495726585, -0.058736372739076614, 0.031527675688266754, 0.06604225188493729, -0.005950744729489088, -0.0038672927767038345, -0.04013317823410034, -0.036903101950883865, -0.0224265418946743, -0.0167803056538105, 0.0130816251039505, -0.034953951835632324, -0.01508177351206541, -0.02205868996679783, -0.06553968042135239, 0.03650984913110733, 0.020595397800207138, 0.04197783023118973, -0.005741820205003023, -0.021595684811472893, -0.01879924349486828, -0.03565320372581482, 0.015471956692636013, 0.06202566251158714, -0.07221023738384247, 0.0031620303634554148, 0.014577009715139866, 0.013296958990395069, 0.006281326059252024, -0.021578039973974228, -0.010594255290925503, -0.019588999450206757, -0.016648584976792336, 0.03433122858405113, -0.03426365181803703, 0.0031892515253275633, -0.021389812231063843, -0.01612383872270584, 0.01728486269712448, -0.02822381630539894, 0.02207818627357483, -0.004064349923282862, -0.03953760117292404, -0.044461917132139206, 0.00471891975030303, -0.013969184830784798, 0.03812593221664429, 0.001139370957389474, -0.061528660356998444, 0.018287405371665955, -0.06164649501442909, 0.022538205608725548, 0.03133106976747513, 0.0041578542441129684, 0.00483184726908803, -0.011920711025595665, -0.015962909907102585, -0.01171508152037859, -0.0037493063136935234, 0.011113664135336876, -0.016082577407360077, -0.06188719719648361, 0.011672197841107845, -0.048777926713228226, 0.054057031869888306, -0.047436732798814774, 0.010692296549677849, 0.008247112855315208, 0.03683227673172951, 0.001164124347269535, 0.02063859812915325, -0.04331208020448685, -0.024642910808324814, 0.07640420645475388, -0.08392547070980072, 0.0075723957270383835, -0.0108691630885005, -0.04047516733407974, -0.023517154157161713, -0.06389462947845459, -0.012547164224088192, 0.0033920418936759233, 0.06182283163070679, 0.0312030129134655, 0.04843147099018097, 0.010452005080878735, -0.029078027233481407, 0.032484717667102814, -0.04083207622170448, 0.00462635001167655, -0.08410821110010147, 0.02183922380208969, -0.004674999974668026, 0.011341001838445663, -0.012657943181693554, 0.00428352877497673, -0.019822143018245697, 0.028112109750509262, -0.02191692590713501, -0.020959166809916496, 0.04428095743060112, -0.019540151581168175, -0.0036703795194625854, 0.013073687441647053, -0.016664069145917892, 0.017884336411952972, -0.0019614924676716328, -0.048892997205257416, -0.004909282084554434, -0.01376467663794756, 0.04579266905784607, -0.017056483775377274, 0.026750579476356506, -0.03755155950784683, 0.005525410175323486, 0.036993276327848434, 0.011743339709937572, -0.040821198374032974, 0.03366636112332344, 0.0029236343689262867, 0.05149553343653679, 0.049433156847953796, 0.03434932604432106, 0.016756335273385048, 0.0399504154920578, -0.02801506221294403, -0.0190469678491354, 0.034424420446157455, -0.011711470782756805, -0.020719749853014946, -0.029402945190668106, 0.04281814768910408, -0.006560450419783592, -0.04108547791838646, 0.016028065234422684, 0.0038895325269550085, -0.05883900076150894, 0.0015568038215860724, -0.03379237279295921, 0.027566269040107727, 0.0012036081170663238, 0.05758047476410866, 0.004393839742988348, 0.008261238224804401, 0.04012344777584076, 0.029490938410162926, -0.033922672271728516, -0.01865222118794918, 0.12114787846803665, 0.048617590218782425, 0.02704828418791294, -0.004802298732101917, 0.05149277299642563, -0.026683012023568153, -0.03608202189207077, -0.0005365730612538755, -0.014138968661427498, -0.014893737621605396, 0.036169346421957016, 0.015647903084754944, 0.11215820163488388, -0.016780488193035126, 0.07491744309663773, -0.01827313005924225, -0.023331841453909874, 0.03550470247864723, 0.02011701464653015, 0.0042626094073057175, 0.04916276037693024, 0.015835674479603767, 0.031345807015895844, -0.023200318217277527, -0.040602441877126694, -0.038003597408533096, 0.02072204276919365, -0.023475242778658867, 0.024028832092881203, -0.029868004843592644, 0.004019515588879585, -0.017753304913640022, 0.03087535873055458, 0.05977635085582733, -0.049160659313201904, 0.013562317006289959, -0.015363955870270729, -0.026530057191848755, -0.022865839302539825, 0.03661411628127098, -0.027919813990592957, 0.028227198868989944, 0.023675911128520966, -0.0224935170263052, 0.01587872952222824, 0.001243289327248931, 0.022227419540286064, 0.044991254806518555, -0.04142008721828461, -0.01462014950811863, 0.0364442840218544, 0.014508972875773907, -0.011408519931137562, -0.046375930309295654, -0.017868153750896454, -0.0015542652690783143, -0.039399731904268265, -0.010338402353227139, 0.02517014555633068, -0.00276471977122128, -0.023745156824588776, 0.013261508196592331, -0.0037014936096966267, 0.022228216752409935, 0.0839240625500679, -0.05331065505743027, 0.005379735957831144, 0.013043910264968872, -0.01004937756806612, -0.0034281304106116295, 0.04632303863763809, 0.07247243821620941, -0.035627637058496475, -0.005569503176957369, 0.055603425949811935, -0.03272264450788498, 0.025563020259141922, 0.044257957488298416, 0.04134030267596245, -0.06813538819551468, 0.016621243208646774, -0.004606263246387243, 0.0075103361159563065, -0.06152787059545517, 0.04041074216365814, 0.02957933023571968, 0.04569949582219124, 0.04592360928654671, 0.04119056463241577, -0.004279598593711853, -0.04167664796113968, -0.00862235575914383, -0.017743956297636032, -0.034344978630542755, 0.08055475354194641, -0.02202230505645275, 0.08659983426332474, 0.06806642562150955, -0.008145390078425407, 0.033586207777261734, 0.00015539770538453013, -0.016050636768341064, -0.04195769876241684, -0.004983673803508282, -0.005666959099471569, -0.02474871091544628, -0.10104835778474808, -0.005347053986042738, 0.012829015031456947, -0.03353660926222801, -0.04065738990902901, 0.024220231920480728, -0.0056085227988660336, 0.011798293329775333, 0.011917000636458397, -0.022566797211766243, 0.015772515907883644, -0.02674473077058792, -0.032465215772390366, -0.055435385555028915, 0.01994348131120205, 0.016397496685385704, 0.02297789417207241, 0.03263060376048088, -0.06038118526339531, -0.015194778330624104, -0.0412466935813427, 0.009555177763104439, 0.04865872114896774, 0.012471715919673443, -0.03820304572582245], "1ce54e02-e908-4a11-b3c7-dc7a5d0e8fc0": [-0.02552848681807518, -0.015213485807180405, -0.029858876019716263, -0.012642214074730873, 0.04832129180431366, -0.02477497048676014, 0.002191700739786029, 0.02419169619679451, -0.014775036834180355, -0.04579154774546623, 0.03106764331459999, -0.011463431641459465, -0.04402576759457588, 0.021417085081338882, -0.040524184703826904, 0.05151769146323204, 0.043667301535606384, -0.01475027110427618, 0.020565833896398544, -0.002209985163062811, 0.00014695037680212408, 0.006030501332134008, 0.052262771874666214, 0.007047590333968401, -0.012251295149326324, -0.011363593861460686, 0.016672924160957336, 0.053743261843919754, -0.007089204154908657, 0.05027903988957405, 0.005949328653514385, -0.03485945612192154, -0.01415364257991314, 0.011452102102339268, -0.008081017062067986, 0.04559379816055298, -0.01751090958714485, 0.019231976941227913, -0.03726000711321831, -0.019617518410086632, 0.00822768360376358, 0.028836147859692574, 0.0008420238737016916, 0.023473910987377167, -0.018085988238453865, 0.02551652304828167, -0.05828708037734032, 0.05291539430618286, -0.007948163896799088, -0.0074608405120670795, -0.07289007306098938, 5.912809501751326e-05, 0.0151558518409729, 0.04838502034544945, 0.011112811043858528, 0.05487658828496933, -0.008038602769374847, -0.0020107899326831102, 0.009910314343869686, -0.04961597919464111, -0.025590132921934128, -0.011138862930238247, 0.008010271936655045, -0.0018960784655064344, 0.007219935301691294, 0.00877919141203165, 0.016662241891026497, 0.03631317988038063, -0.05386902764439583, -0.03145746514201164, -0.0013251695781946182, 0.05273948237299919, 0.028254473581910133, 0.0023011493030935526, 0.021157698705792427, -0.006382305640727282, -0.04678378254175186, 0.004271492827683687, 0.02962147444486618, -0.01727258414030075, 0.009290728718042374, 0.021830737590789795, 0.007269660476595163, 0.0332639142870903, -0.016547726467251778, -0.04351530596613884, -0.05047684907913208, 0.029461322352290154, -0.026525944471359253, 0.0945955291390419, -0.030695857480168343, -0.028132962062954903, 0.014430305920541286, 0.06178363785147667, 0.04564966633915901, -0.04624812677502632, 0.0153769226744771, -0.010465798899531364, -0.017257988452911377, 0.027129512280225754, 0.0053048888221383095, -0.03683893755078316, -0.008164833299815655, 0.011193555779755116, -0.06842926889657974, -0.0022380102891474962, -0.0434657484292984, -0.05421164631843567, -0.06225038319826126, 0.021430091932415962, -0.041424643248319626, -0.028606263920664787, -0.010198475793004036, -0.02199140004813671, -0.08485583961009979, 0.06477279216051102, 0.0051122079603374004, 0.006822704803198576, 0.002698055235669017, 0.04045085608959198, 0.07626912742853165, 0.023829584941267967, -0.018044162541627884, 0.03783286362886429, 0.05839158594608307, 0.005062754265964031, 0.0325792022049427, 0.05160921812057495, -0.002768060425296426, -0.020267672836780548, 0.005374801345169544, 0.0658373087644577, 0.01374268438667059, 0.017415698617696762, 0.04183303192257881, -0.0386354997754097, 0.024745915085077286, 0.011030602268874645, -0.01302027516067028, 0.02200634405016899, 0.018459277227520943, 0.005324978847056627, 0.03977309539914131, -0.0338858962059021, 0.016550816595554352, 0.008061504922807217, -0.012064751237630844, -0.04066651687026024, -0.024949925020337105, -0.008103489875793457, 0.017622223123908043, 0.01274371612817049, 0.003669076832011342, 0.0026464613620191813, -0.009027688764035702, 0.04011838510632515, 0.03155140206217766, 0.08325916528701782, -0.03600463271141052, -0.0005517094396054745, 0.023073924705386162, 0.018115339800715446, 0.004201232921332121, -0.004331490956246853, -0.00689904298633337, -0.0036677897442132235, -0.008879766799509525, 0.05315209552645683, 0.004258349072188139, 0.01921905018389225, -0.032308224588632584, 0.005323196295648813, 0.026886779814958572, 0.01364947110414505, -0.0451703779399395, 0.006001265253871679, 0.03658580034971237, -0.0013993975007906556, -0.019943665713071823, -0.003526063868775964, -0.07240013778209686, 0.03074236586689949, 0.036108557134866714, 0.014344929717481136, 0.007885183207690716, -0.012936621904373169, 0.06955645233392715, -0.006977579556405544, -0.025046367198228836, 0.02177308313548565, -0.08493052423000336, -0.02003619819879532, 0.03961007669568062, -0.00689127529039979, 0.07837630808353424, 0.003757493570446968, -0.009304076433181763, 0.013873880729079247, 0.016350628808140755, 0.02411559969186783, 0.029125800356268883, 0.03248143196105957, 0.05209529399871826, -0.026330169290304184, -0.03064584545791149, -0.014414659701287746, 0.0631762444972992, -0.02732273004949093, 0.0012386292219161987, 0.014365422539412975, 0.019999030977487564, -0.07544701546430588, 0.014141745865345001, -0.023869821801781654, 0.0314476378262043, -0.018959341570734978, 0.006892334204167128, 0.0009984461357817054, 0.029055649414658546, -0.011955268681049347, 0.05751165375113487, 0.02276395633816719, -0.018447916954755783, 0.02248808555305004, -0.0560726523399353, 0.1295790821313858, 0.07715769112110138, -0.03134569525718689, -0.01901317946612835, 0.008681329898536205, 0.00811904575675726, -0.0379033088684082, 0.025412803515791893, 0.014212760142982006, 0.020886383950710297, -0.061239875853061676, -0.01561576034873724, -0.02295602485537529, 0.06812134385108948, -0.03890643268823624, -0.0012384442379698157, 0.04073413833975792, 0.004197981674224138, 0.038861989974975586, -0.005830092821270227, -0.011927783489227295, 0.030147476121783257, -0.023485073819756508, -0.015404845587909222, -0.012612709775567055, -0.02979358285665512, 0.0005168035277165473, 0.0042447615414857864, 0.008874691091477871, -0.019637376070022583, -0.052087221294641495, -0.06509023904800415, -0.0032269114162772894, 0.05403174087405205, 0.03915199637413025, -0.0071006109938025475, 0.029141923412680626, 0.02822890691459179, -0.051685988903045654, -0.05544291064143181, -0.08629004657268524, -0.018216831609606743, -0.0020030606538057327, 0.010653385892510414, -0.010742517188191414, 0.07808176428079605, 0.05666937679052353, -0.01732977107167244, 0.012726097367703915, -0.008990753442049026, 0.0013882145285606384, 0.03917991369962692, -0.0008743148064240813, -0.051351629197597504, -0.04607914760708809, 0.03896520286798477, 0.0809658020734787, 0.03982773423194885, -0.0506095215678215, -0.020947042852640152, -0.0455852672457695, 0.004494226071983576, -0.02800810895860195, 0.011209102347493172, -0.023525983095169067, -0.09025035798549652, 0.0456136129796505, 0.009036427363753319, -0.030831852927803993, 0.0026956459041684866, 0.028456760570406914, -0.02474232204258442, 0.012644677422940731, -0.033933959901332855, 0.01882033422589302, -0.010812509804964066, -0.013448654673993587, -0.005535765551030636, 0.04763792082667351, -0.050161052495241165, 0.0001878005132311955, 0.00613893149420619, -0.029542207717895508, -0.308643639087677, 0.003397873369976878, 0.0437127910554409, -0.02440410666167736, -0.005263595376163721, 0.001375109888613224, 0.005491860210895538, -0.02233460173010826, -0.013963731937110424, -0.0363333486020565, -0.05045582354068756, 0.002843341790139675, -0.04867997020483017, -0.0013086770195513964, 0.040082935243844986, 0.010314724408090115, -0.017660466954112053, -0.01895046979188919, 0.03956198692321777, 0.036792729049921036, 0.010203974321484566, -0.07582342624664307, -0.024587083607912064, 0.03995061293244362, -0.004239107947796583, 0.00441526435315609, -0.044757869094610214, -0.010221351869404316, -0.03689965605735779, -0.007764050737023354, -0.04366130754351616, -0.03246641904115677, 0.0018869505729526281, -0.01934046298265457, 0.029821408912539482, -0.025407705456018448, 0.04385659098625183, -0.002429553074762225, 0.024590540677309036, -0.02897522784769535, 0.017414307221770287, 0.013551087118685246, -0.03260812163352966, 0.036801211535930634, 0.0643707886338234, 0.03077097237110138, -0.0663076639175415, 0.011017309501767159, -0.008395266719162464, 0.08398912847042084, -0.0070977467112243176, -0.02109229937195778, 0.02997637540102005, -0.022600173950195312, -0.028060883283615112, -0.04429027810692787, -0.03844007849693298, 0.0019966557156294584, -0.010550775565207005, 0.013487670570611954, -0.016525031998753548, -0.03233546018600464, -0.033876873552799225, -0.022590210661292076, 0.0027602689806371927, -0.028863897547125816, -0.05027531459927559, -0.037297315895557404, 0.04866435006260872, 0.029762528836727142, 0.023040276020765305, 0.04085855558514595, -0.03868189826607704, -0.1105460450053215, 0.03853372111916542, 0.008845156989991665, -0.009363205172121525, -0.056551724672317505, 0.01704271323978901, 0.015936490148305893, -0.05584614351391792, -0.020429270341992378, -0.00501603726297617, 0.022926798090338707, 0.013575050048530102, -0.041254922747612, 0.01835901103913784, 0.015562960878014565, -0.030004901811480522, -0.03150615096092224, 0.05227147415280342, -0.047918397933244705, -0.009147727862000465, -0.013151394203305244, 0.06843741983175278, -0.022900482639670372, 0.032049935311079025, -0.011222449131309986, 0.05358879268169403, -0.006075048819184303, 0.029178563505411148, -0.048284344375133514, 0.009256881661713123, -0.01699151284992695, -0.029447192326188087, 0.011309033259749413, -0.05867745354771614, -0.031098289415240288, 0.041148312389850616, 0.008526976220309734, -0.01277250424027443, -0.06518691778182983, 0.01663203537464142, -0.002612156793475151, 0.011725734919309616, -0.029296576976776123, 0.027143677696585655, 0.04052145034074783, 0.002956678159534931, -0.03770041465759277, -0.017270313575863838, 0.012529194355010986, -0.01908893510699272, -0.023008419200778008, -0.017580216750502586, 0.02131509594619274, -0.044799573719501495, 0.008013210259377956, -0.0133397551253438, 0.04064202681183815, -0.02607988379895687, 0.0031105829402804375, 0.03347098454833031, -0.01594475470483303, 0.006461963057518005, 0.02227766439318657, -0.07568301260471344, -0.021390968933701515, 0.03489774838089943, -0.008290743455290794, 0.04234062880277634, -0.0026842067018151283, 0.013576230965554714, -0.021986564621329308, 0.04346054419875145, 0.02337097004055977, -0.012654270976781845, 0.026207176968455315, -0.019895147532224655, 0.0038853222504258156, -0.015939734876155853, -0.030596783384680748, -0.014562374912202358, -0.04305838420987129, -0.03401540219783783, 0.02170363813638687, 0.017732350155711174, 0.016745001077651978, 0.010918661020696163, -0.049480922520160675, 0.021664094179868698, 0.020653534680604935, -0.029273783788084984, 0.003538142889738083, -0.026012394577264786, 0.08852364122867584, -0.001547071267850697, 0.06208929792046547, 0.003220145357772708, 0.004853160120546818, -0.024726349860429764, -0.028124665841460228, -0.045313652604818344, -0.010355126112699509, -0.04500877112150192, 0.04066041484475136, 0.027322642505168915, -0.08040866255760193, 0.013585190288722515, -0.0223812535405159, -0.006831894628703594, -0.02347903698682785, -0.02516591176390648, 0.04615141823887825, 0.051414839923381805, 0.013116080313920975, -0.03678380325436592, -0.04681045934557915, -0.0005038763047195971, -0.0025591664016246796, 0.04555755481123924, 0.015371500514447689, -0.05290995165705681, -0.006154992152005434, -0.00257322215475142, -0.05610836669802666, 0.004227013792842627, 0.036163412034511566, -0.021560728549957275, -0.02894848771393299, -0.009008340537548065, 4.551083839032799e-05, -0.03927147388458252, 0.024275081232190132, 0.03008382022380829, -0.08535558730363846, 0.006396685726940632, 0.03447757288813591, 0.014571157284080982, -0.010222576558589935, -0.020890802145004272, 0.0040631722658872604, -0.017287934198975563, 2.9973371056257747e-05, 0.017839627340435982, -0.019390711560845375, -0.01362693402916193, 0.002173235872760415, 0.012017342261970043, -0.013832584023475647, 0.0006734366179443896, 0.00862461980432272, -0.008107662200927734, -0.02289639227092266, -0.03290135785937309, -0.003153467085212469, -0.013941637240350246, 0.03010738641023636, 0.010065856389701366, -0.0048985909670591354, 0.015140945091843605, -0.06037520244717598, 0.044781215488910675, 0.024459434673190117, 0.024871088564395905, 0.0011820144718512893, -0.04173120856285095, 0.01622602716088295, -0.01006010826677084, 0.010154638439416885, 0.02016586996614933, -0.027186116203665733, -0.04708889499306679, 0.017611665651202202, -0.031399600207805634, 0.03772110119462013, 0.012862341478466988, 0.008252297528088093, -0.0195049736648798, 0.028589805588126183, 0.005422854796051979, 0.015875639393925667, -0.0030078652780503035, -0.061859335750341415, 0.08380953967571259, -0.020856978371739388, -0.0004935815231874585, -0.02913079410791397, -0.024155791848897934, 0.013360749930143356, -0.03950478136539459, -0.010276491753757, -0.07255478948354721, 0.03252764418721199, 0.03353500738739967, 0.04562892019748688, -0.006450639106333256, -0.06310949474573135, 0.025842789560556412, -0.06876266002655029, 0.02837653085589409, -0.04638192802667618, -0.0024368728045374155, -0.023569896817207336, 0.015914076939225197, 0.003785447683185339, -0.03598829358816147, -0.03918665274977684, 0.06412196904420853, -0.05972345918416977, -0.05644049495458603, -0.014102132990956306, -0.005263772793114185, -0.024509988725185394, 0.027871785685420036, -0.030524592846632004, 0.002146095735952258, 0.00463496008887887, -0.054237011820077896, -0.0036022565327584743, 0.018302105367183685, 0.05379316955804825, -0.03135596215724945, 0.007362005766481161, 0.02518480271100998, 0.04284738004207611, 0.044914670288562775, 0.018877213820815086, -0.03825376555323601, 0.03141770511865616, 0.004893446806818247, 0.07116125524044037, 0.07475026696920395, 0.017898952588438988, 0.07856752723455429, 0.007481866050511599, -0.02259107306599617, -0.02064742147922516, 0.07813368737697601, 0.008201218210160732, -0.043009158223867416, -0.03839157521724701, 0.04304821789264679, -0.010989364236593246, -0.05444113165140152, -0.01848490908741951, 0.036974258720874786, -0.03396759182214737, 0.008078143931925297, 0.003643529722467065, 0.02837684378027916, 0.015630610287189484, 0.05465777963399887, -0.021988816559314728, 0.0024458966217935085, 0.04661651328206062, 0.0050315517000854015, -0.01774643175303936, -0.02350706420838833, 0.05183771625161171, 0.06832315027713776, 0.007633341941982508, 0.016586242243647575, 0.06761852651834488, -0.01349059771746397, -0.03453902155160904, -0.012062817811965942, 0.01839180663228035, -0.031837016344070435, -0.0013729269849136472, 0.004559718072414398, 0.10099246352910995, 0.02508697286248207, 0.07937777787446976, -0.0038586067967116833, 0.024702509865164757, -0.0012631078716367483, 0.02903077006340027, -0.021845988929271698, 0.029706187546253204, 0.01975388266146183, 0.016691485419869423, -0.023214908316731453, -0.04027990996837616, -0.022682487964630127, -0.007020627148449421, 0.017463088035583496, -0.022483820095658302, -0.04266977310180664, 0.03153232857584953, -0.03740813955664635, 0.033793676644563675, 0.05991038307547569, -0.051673684269189835, -0.05378701165318489, -0.007897929288446903, -0.041494254022836685, -0.0315239243209362, 0.03417803719639778, -0.03081766702234745, 0.030518589541316032, 0.016185961663722992, -0.05263258144259453, 0.03683584928512573, -0.02116359770298004, 0.04488281533122063, 0.021173497661948204, -0.026354502886533737, 0.006518923211842775, 0.05809575319290161, 0.037208084017038345, -0.033497199416160583, -0.05680529400706291, -0.052225708961486816, -0.04092278331518173, -0.023295877501368523, 0.013895329087972641, 0.031822435557842255, -0.0017673393012955785, -0.020593594759702682, 0.049725789576768875, -0.025156088173389435, 0.009367518126964569, 0.051465295255184174, -0.08052478730678558, -0.0002911566407419741, 0.04250458627939224, 0.03934410959482193, -0.005980409681797028, 0.01791149191558361, 0.03511856496334076, -0.02560568042099476, -0.005454355385154486, 0.02926631271839142, -0.018170202150940895, 0.07580503821372986, 0.026058632880449295, 0.049974411725997925, -0.08126263320446014, 0.005839903373271227, 0.026213310658931732, -0.0037433237303048372, -0.05859871953725815, 0.01765904203057289, 0.013618914410471916, -0.007494691759347916, 0.024861125275492668, 0.02216276526451111, -0.0006352073978632689, -0.029457785189151764, -0.0582924410700798, -0.03519018739461899, -0.005915975663810968, 0.09200882166624069, -0.0013214913196861744, 0.05544425919651985, 0.00678283954039216, -0.025826992467045784, -0.0001778809673851356, -0.01447102427482605, 0.06015773117542267, -0.03822611644864082, -0.03626728057861328, 0.011721407063305378, -0.024032393470406532, -0.06839155405759811, -0.026339467614889145, 0.03406749665737152, -0.0063242786563932896, -0.05434797331690788, 0.0021352136973291636, 0.009178793989121914, 0.00043130930862389505, -0.027830032631754875, 0.005363180302083492, -0.00822452176362276, -0.0293628741055727, -0.04211864247918129, -0.03658595308661461, 0.012219330295920372, 0.026174167171120644, -0.030752984806895256, -0.008643453009426594, -0.08833607286214828, 0.032830458134412766, -0.0357024222612381, -0.0001352185063296929, 0.050456542521715164, 0.00926696602255106, -0.01063773687928915]}, "text_id_to_ref_doc_id": {"fd79a711-6e94-4437-9fc0-08453a765c3a": "7513fca6-94b8-4a52-b778-6b95900133bd", "1ce54e02-e908-4a11-b3c7-dc7a5d0e8fc0": "7513fca6-94b8-4a52-b778-6b95900133bd"}, "metadata_dict": {"fd79a711-6e94-4437-9fc0-08453a765c3a": {"file_path": "/media/d2/Sungwon_llm_CV/data/Sungwon_Kim_ML_DL.pdf", "file_name": "Sungwon_Kim_ML_DL.pdf", "file_type": "application/pdf", "file_size": 128552, "creation_date": "2024-04-28", "last_modified_date": "2024-04-28", "_node_type": "TextNode", "document_id": "7513fca6-94b8-4a52-b778-6b95900133bd", "doc_id": "7513fca6-94b8-4a52-b778-6b95900133bd", "ref_doc_id": "7513fca6-94b8-4a52-b778-6b95900133bd"}, "1ce54e02-e908-4a11-b3c7-dc7a5d0e8fc0": {"file_path": "/media/d2/Sungwon_llm_CV/data/Sungwon_Kim_ML_DL.pdf", "file_name": "Sungwon_Kim_ML_DL.pdf", "file_type": "application/pdf", "file_size": 128552, "creation_date": "2024-04-28", "last_modified_date": "2024-04-28", "_node_type": "TextNode", "document_id": "7513fca6-94b8-4a52-b778-6b95900133bd", "doc_id": "7513fca6-94b8-4a52-b778-6b95900133bd", "ref_doc_id": "7513fca6-94b8-4a52-b778-6b95900133bd"}}}
db/storage/docstore.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"docstore/metadata": {"7513fca6-94b8-4a52-b778-6b95900133bd": {"doc_hash": "e42d3c04d733e4daf2bd2c9ffef61035c802e42813a533fed3f4d23e9f4531ee"}, "fd79a711-6e94-4437-9fc0-08453a765c3a": {"doc_hash": "f1426006c4c5d222bfba4635f57abd781a7245ad44ac76a1b1a5cd94bf4f6d63", "ref_doc_id": "7513fca6-94b8-4a52-b778-6b95900133bd"}, "1ce54e02-e908-4a11-b3c7-dc7a5d0e8fc0": {"doc_hash": "1dc3bb46b08eddb6ae16d78d634f06d1881689b0b3f8213458acbd204999caf2", "ref_doc_id": "7513fca6-94b8-4a52-b778-6b95900133bd"}}, "docstore/data": {"fd79a711-6e94-4437-9fc0-08453a765c3a": {"__data__": {"id_": "fd79a711-6e94-4437-9fc0-08453a765c3a", "embedding": null, "metadata": {"file_path": "/media/d2/Sungwon_llm_CV/data/Sungwon_Kim_ML_DL.pdf", "file_name": "Sungwon_Kim_ML_DL.pdf", "file_type": "application/pdf", "file_size": 128552, "creation_date": "2024-04-28", "last_modified_date": "2024-04-28"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7513fca6-94b8-4a52-b778-6b95900133bd", "node_type": "4", "metadata": {"file_path": "/media/d2/Sungwon_llm_CV/data/Sungwon_Kim_ML_DL.pdf", "file_name": "Sungwon_Kim_ML_DL.pdf", "file_type": "application/pdf", "file_size": 128552, "creation_date": "2024-04-28", "last_modified_date": "2024-04-28"}, "hash": "e42d3c04d733e4daf2bd2c9ffef61035c802e42813a533fed3f4d23e9f4531ee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1ce54e02-e908-4a11-b3c7-dc7a5d0e8fc0", "node_type": "1", "metadata": {}, "hash": "82cf778e7cf6a88a48a3c566be6f545c7ad152e48dfe54f54218934765ff64f6", "class_name": "RelatedNodeInfo"}}, "text": "## Sungwon Kim\n\nAI Research Scientist\nIntel Corporation, Advanced Design\nHillsboro, OR 97124\n(503) 415-1675\nsorg20@gmail.com\nhttp://github.com/sorg20\nwww.linkedin.com/in/sungwon-kim-5b10276\n\n### Experience\n\n|July. 2020 \u2013 present|AI Research Scientist, Intel path finding group. Lead many AI/ML projects|\n|---|---|\n| |-Graph Neural Network model in EDA design Developed circuit design tools based on GNN. Present in 2021 Design Automation Conference|\n| |-Rotary Embedding Transformer based IP contents optimization|\n| |-Machine Learning based design technology co-optimization model|\n| |-Deep learning based computer vision/design-validation software development|\n|Jan. 2012 \u2013 July. 2020|Modeling Engineer, Intel Advanced Design|\n| |-Intel transistor compact model development|\n| |-Intel Dev Model/Calibration CAD software development (currently used in production line)|\n| |-Machine learning based device optimization tool development|\n| |-Machine learning based noise analysis and signal processing (owner of noise model)|\n|Jan. 2005 \u2013 Dec. 2011|Research Scientist, Intel Design Technology Solution|\n| |-Large scale CAD/Scientific software development|\n| |-Computational imaging/EM modeling and software development|\n| |-Computational geometry/Numerical optimization tool development|\n\n### Research Interests\n\n- Graph Neural Network based Circuit design (2021 DAC conference)\n- Computer vision and machine learning.\n- Machine learning based multi-scale optimization.\n\n### Education\n\n- Ph.D - Pennsylvania State University, PA\n- M.S - Korea Advanced Institute of Science and Technology, Korea\n- B.S - Yonsei University, Korea\n\n### Research Publications in Intel\n\n1. Dual Feature Vector Hetero Graph Neural Network (DFV-GNN) based Post-Layout Parasitic Estimation, 2021 Design Automation Conference.\n2. CMOS-based cryogenic control of silicon quantum circuits, Nature volume 593(2021), pp 205\u2013210\n---\n### Publications\n\n3. A Scalable Cryo-CMOS Controller for pe Wideband Frequency-Multiplexed Control of Spin-Qubits and Transmons, 2020 IEEE Journal of Solid State Circuits, Vol 55(2020), 11, pp 2930-2946\n4. A Scalable Cryo-CMOS 2-to-20GHz Digitally Intensive Controller for 4\u00d732 Frequency Multiplexed Spin Qubits/Transmons in 22nm FinFET Technology for Quantum Computers, 2020 IEEE International Solid-State Circuits Conference. Selected as pe ISSCC 2020 Jan Van Vessem Award for Outstanding European Paper\n5. Roy, Ananda; kim, Sungwon; Mudanai Siva; \u201cAn Improved Flicker Noise Model for Circuit Simulation\u201d, IEEE Transactions on Electron Devices, Vol 64 (2017), No 4, pp. 1689-1694\n\n### Other Publications\n\n1. Malkova, Sungwon Kim, and V. Gopalan \u201cSymmetrical analysis of pe defect level splitting in two-dimensional photonic crystals,\u201d Journal of Physics: Condensed Matter as a Topical review, 15, 4535 (2003)\n2. Kun-Wook Chung, Sungwon Kim, and Shizhuo Yin \u201cDesign of a highly nonlinear dispersion-shifted fiber wip a small effective area by use of pe beam propagation mepod wip pe Gaussian approximation mepod\u201d, Optics Letter. 28, 2031 (2003)\n3. D. Scrymgeour, N. Malkova, Sungwon Kim, and V. Gopalan \u201cElectro-Optic control of Superprism in Photonic Crystal\u201d, Appl. Phys. Lett, 82, 3176 (2003)\n4. N. Malkova, Sungwon Kim, and V. Gopalan \u201cStrain tunable light transmission prough a 90\u00b0 bend waveguide in a two-dimensional photonic crystal,\u201d Appl. Phys. Lett, 83, 1509 (2003)\n5. N. Malkova, Sungwon Kim, and V. Gopalan \u201cJahn-Teller Effect in Two-Dimensional Photonic Crystals,\u201d Physical Review B, 68, 045105 (2003)\n6. N. Malkova, Sungwon Kim, and V. Gopalan \u201cSymmetrical Analysis of Complex Two Dimensional Hexagonal Photonic Crystals,\u201d Physical Review B, 67, 125203 (2003)\n7.", "start_char_idx": 0, "end_char_idx": 3677, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "1ce54e02-e908-4a11-b3c7-dc7a5d0e8fc0": {"__data__": {"id_": "1ce54e02-e908-4a11-b3c7-dc7a5d0e8fc0", "embedding": null, "metadata": {"file_path": "/media/d2/Sungwon_llm_CV/data/Sungwon_Kim_ML_DL.pdf", "file_name": "Sungwon_Kim_ML_DL.pdf", "file_type": "application/pdf", "file_size": 128552, "creation_date": "2024-04-28", "last_modified_date": "2024-04-28"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7513fca6-94b8-4a52-b778-6b95900133bd", "node_type": "4", "metadata": {"file_path": "/media/d2/Sungwon_llm_CV/data/Sungwon_Kim_ML_DL.pdf", "file_name": "Sungwon_Kim_ML_DL.pdf", "file_type": "application/pdf", "file_size": 128552, "creation_date": "2024-04-28", "last_modified_date": "2024-04-28"}, "hash": "e42d3c04d733e4daf2bd2c9ffef61035c802e42813a533fed3f4d23e9f4531ee", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fd79a711-6e94-4437-9fc0-08453a765c3a", "node_type": "1", "metadata": {"file_path": "/media/d2/Sungwon_llm_CV/data/Sungwon_Kim_ML_DL.pdf", "file_name": "Sungwon_Kim_ML_DL.pdf", "file_type": "application/pdf", "file_size": 128552, "creation_date": "2024-04-28", "last_modified_date": "2024-04-28"}, "hash": "f1426006c4c5d222bfba4635f57abd781a7245ad44ac76a1b1a5cd94bf4f6d63", "class_name": "RelatedNodeInfo"}}, "text": "Phys. Lett, 82, 3176 (2003)\n4. N. Malkova, Sungwon Kim, and V. Gopalan \u201cStrain tunable light transmission prough a 90\u00b0 bend waveguide in a two-dimensional photonic crystal,\u201d Appl. Phys. Lett, 83, 1509 (2003)\n5. N. Malkova, Sungwon Kim, and V. Gopalan \u201cJahn-Teller Effect in Two-Dimensional Photonic Crystals,\u201d Physical Review B, 68, 045105 (2003)\n6. N. Malkova, Sungwon Kim, and V. Gopalan \u201cSymmetrical Analysis of Complex Two Dimensional Hexagonal Photonic Crystals,\u201d Physical Review B, 67, 125203 (2003)\n7. Sungwon Kim and Venkatraman Gopalan \u201cStrain-Tunable Photonic Bandgap Crystals,\u201d Appl. Phys. Lett. 78, 3015 (2001)\n\n### Skill Set\n\nSoftware: NLP/RAG/LangChain/LlamaIndex/C++/C/Python/Pytorch/Tensorflow/Java/Unix/OpenCV/Go/MIPS\n\nDeveloping mathematical AI/ML software for solving complex multi scale real world problems", "start_char_idx": 3169, "end_char_idx": 3995, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}}, "docstore/ref_doc_info": {"7513fca6-94b8-4a52-b778-6b95900133bd": {"node_ids": ["fd79a711-6e94-4437-9fc0-08453a765c3a", "1ce54e02-e908-4a11-b3c7-dc7a5d0e8fc0"], "metadata": {"file_path": "/media/d2/Sungwon_llm_CV/data/Sungwon_Kim_ML_DL.pdf", "file_name": "Sungwon_Kim_ML_DL.pdf", "file_type": "application/pdf", "file_size": 128552, "creation_date": "2024-04-28", "last_modified_date": "2024-04-28"}}}}
db/storage/graph_store.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"graph_dict": {}}
db/storage/image__vector_store.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"embedding_dict": {}, "text_id_to_ref_doc_id": {}, "metadata_dict": {}}
db/storage/index_store.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"index_store/data": {"6635a8bc-1348-43da-8ffe-07ebda0b3c04": {"__type__": "vector_store", "__data__": "{\"index_id\": \"6635a8bc-1348-43da-8ffe-07ebda0b3c04\", \"summary\": null, \"nodes_dict\": {\"fd79a711-6e94-4437-9fc0-08453a765c3a\": \"fd79a711-6e94-4437-9fc0-08453a765c3a\", \"1ce54e02-e908-4a11-b3c7-dc7a5d0e8fc0\": \"1ce54e02-e908-4a11-b3c7-dc7a5d0e8fc0\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}}
requirements.txt ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ aiohttp==3.9.5
2
+ aiosignal==1.3.1
3
+ altair==5.3.0
4
+ annotated-types==0.6.0
5
+ anyio==4.3.0
6
+ asgiref==3.8.1
7
+ async-timeout==4.0.3
8
+ attrs==23.2.0
9
+ backoff==2.2.1
10
+ bcrypt==4.1.2
11
+ blinker==1.8.1
12
+ build==1.2.1
13
+ cachetools==5.3.3
14
+ certifi==2024.2.2
15
+ charset-normalizer==3.3.2
16
+ chroma-hnswlib==0.7.3
17
+ chromadb==0.5.0
18
+ click==8.1.7
19
+ coloredlogs==15.0.1
20
+ dataclasses-json==0.6.5
21
+ Deprecated==1.2.14
22
+ dnspython==2.6.1
23
+ email_validator==2.1.1
24
+ exceptiongroup==1.2.1
25
+ fastapi==0.111.0
26
+ fastapi-cli==0.0.2
27
+ filelock==3.14.0
28
+ flatbuffers==24.3.25
29
+ frozenlist==1.4.1
30
+ fsspec==2024.3.1
31
+ gitdb==4.0.11
32
+ GitPython==3.1.43
33
+ google-auth==2.29.0
34
+ googleapis-common-protos==1.63.0
35
+ greenlet==3.0.3
36
+ grpcio==1.63.0
37
+ h11==0.14.0
38
+ httpcore==1.0.5
39
+ httptools==0.6.1
40
+ httpx==0.27.0
41
+ huggingface-hub==0.23.0
42
+ humanfriendly==10.0
43
+ idna==3.7
44
+ importlib-metadata==7.0.0
45
+ importlib_resources==6.4.0
46
+ Jinja2==3.1.3
47
+ jsonpatch==1.33
48
+ jsonpointer==2.4
49
+ jsonschema==4.22.0
50
+ jsonschema-specifications==2023.12.1
51
+ kubernetes==29.0.0
52
+ langchain==0.1.17
53
+ langchain-community==0.0.36
54
+ langchain-core==0.1.50
55
+ langchain-text-splitters==0.0.1
56
+ langsmith==0.1.54
57
+ markdown-it-py==3.0.0
58
+ MarkupSafe==2.1.5
59
+ marshmallow==3.21.2
60
+ mdurl==0.1.2
61
+ mmh3==4.1.0
62
+ monotonic==1.6
63
+ mpmath==1.3.0
64
+ multidict==6.0.5
65
+ mypy-extensions==1.0.0
66
+ numpy==1.26.4
67
+ oauthlib==3.2.2
68
+ onnxruntime==1.17.3
69
+ opentelemetry-api==1.24.0
70
+ opentelemetry-exporter-otlp-proto-common==1.24.0
71
+ opentelemetry-exporter-otlp-proto-grpc==1.24.0
72
+ opentelemetry-instrumentation==0.45b0
73
+ opentelemetry-instrumentation-asgi==0.45b0
74
+ opentelemetry-instrumentation-fastapi==0.45b0
75
+ opentelemetry-proto==1.24.0
76
+ opentelemetry-sdk==1.24.0
77
+ opentelemetry-semantic-conventions==0.45b0
78
+ opentelemetry-util-http==0.45b0
79
+ orjson==3.10.3
80
+ overrides==7.7.0
81
+ packaging==23.2
82
+ pandas==2.2.2
83
+ pillow==10.3.0
84
+ posthog==3.5.0
85
+ protobuf==4.25.3
86
+ pyarrow==16.0.0
87
+ pyasn1==0.6.0
88
+ pyasn1_modules==0.4.0
89
+ pydantic==2.7.1
90
+ pydantic_core==2.18.2
91
+ pydeck==0.9.0
92
+ Pygments==2.17.2
93
+ pypdf==4.2.0
94
+ PyPika==0.48.9
95
+ pyproject_hooks==1.1.0
96
+ pysqlite3-binary==0.5.2.post3
97
+ python-dateutil==2.9.0.post0
98
+ python-dotenv==1.0.1
99
+ python-multipart==0.0.9
100
+ pytz==2024.1
101
+ PyYAML==6.0.1
102
+ referencing==0.35.1
103
+ requests==2.31.0
104
+ requests-oauthlib==2.0.0
105
+ rich==13.7.1
106
+ rpds-py==0.18.0
107
+ rsa==4.9
108
+ shellingham==1.5.4
109
+ six==1.16.0
110
+ smmap==5.0.1
111
+ sniffio==1.3.1
112
+ SQLAlchemy==2.0.29
113
+ starlette==0.37.2
114
+ streamlit==1.34.0
115
+ sympy==1.12
116
+ tenacity==8.2.3
117
+ tokenizers==0.19.1
118
+ toml==0.10.2
119
+ tomli==2.0.1
120
+ toolz==0.12.1
121
+ tornado==6.4
122
+ tqdm==4.66.4
123
+ typer==0.12.3
124
+ typing-inspect==0.9.0
125
+ typing_extensions==4.11.0
126
+ tzdata==2024.1
127
+ ujson==5.9.0
128
+ urllib3==2.2.1
129
+ uvicorn==0.29.0
130
+ uvloop==0.19.0
131
+ watchdog==4.0.0
132
+ watchfiles==0.21.0
133
+ websocket-client==1.8.0
134
+ websockets==12.0
135
+ wrapt==1.16.0
136
+ yarl==1.9.4
137
+ zipp==3.18.1