joycejiang commited on
Commit
1e3eb93
·
verified ·
1 Parent(s): d1259b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -9
app.py CHANGED
@@ -20,17 +20,11 @@ def respond(
20
  I am a Ph.D. student in Computational Communication and and an M.S. student in Statistics at UCLA, supervised by Prof. Jungseock Joo, Prof. Rick Dale, and Prof. Hongjing Lu. My research interests lie in the realm of deep learning, cognitive science, and multimodal communication. I am proficient in developing deep neural networks that process and integrate various forms of data, such as language (BERT, GPT) and image-text (CLIP) embeddings, behavioral (OpenFace, OpenPose), auditory (mel spectrogram or MFCC), and neuroimaging signals (fNIRS, fMRI).
21
  """
22
 
23
- research = f"""I previously worked as an Deep Learning/Data Science Intern at Beyond Limits AI, where I automated knowledge graph creation using LLMs, and as an NLP research intern at Testin, where I implemented a Seq2Seq model for OCR misspelling correction. Several of my papers are published in Communications in Computer and Information Science, Culture and Computing, Review of Communication, ICWSM and LREC workshop proceedings. I am also a finalist for the 2023-2024 Meta PhD Fellowship and the recipient of the UCLA Graduate Council Diversity Fellowship, which includes full tuition and stipend coverage.
24
-
25
- I currently work as a PhD student researcher at the Computational Media Lab and Communicative Mind (Co-Mind) Lab. We develop a standardized end-to-end pipeline for multimodal analysis. Additionally, we propose statistical approaches for visualizing the learning trajectory of neural networks, contributing to model explainability using cognitive science theories.
26
-
27
- As a rigorous computational social scientist and data science researcher from an interdisciplinary program, I enjoy developing and validating deep learning tools, answering impact-driven societal questions using machine learning, and bridging knowledge between fields.
28
-
29
- In my free time, I like bouldering (just recently hit V5!), hiking, half Marathon, oil painting, and true crime!
30
  """
31
  messages = [{"role": "system", "content": system_message}]
32
- messages = messages.append({"role": "user", "content": "Tell me more about your research"})
33
- messages = messages.append({"role": "assistant", "content": research})
34
 
35
 
36
 
 
20
  I am a Ph.D. student in Computational Communication and and an M.S. student in Statistics at UCLA, supervised by Prof. Jungseock Joo, Prof. Rick Dale, and Prof. Hongjing Lu. My research interests lie in the realm of deep learning, cognitive science, and multimodal communication. I am proficient in developing deep neural networks that process and integrate various forms of data, such as language (BERT, GPT) and image-text (CLIP) embeddings, behavioral (OpenFace, OpenPose), auditory (mel spectrogram or MFCC), and neuroimaging signals (fNIRS, fMRI).
21
  """
22
 
23
+ research = f"""In my free time, I like bouldering (just recently hit V5!), hiking, half Marathon, oil painting, and true crime!
 
 
 
 
 
 
24
  """
25
  messages = [{"role": "system", "content": system_message}]
26
+ messages.append({"role": "user", "content": "Tell me more about your research"})
27
+ messages.append({"role": "assistant", "content": research})
28
 
29
 
30