Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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"""
|
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
|
33 |
-
messages
|
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 |
|