<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>WONG Jin Yung</title>
    <link>https://jinyung.github.io/</link>
      <atom:link href="https://jinyung.github.io/index.xml" rel="self" type="application/rss+xml" />
    <description>WONG Jin Yung</description>
    <generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator><language>en-us</language><copyright>©2026 Wong Jin Yung</copyright><lastBuildDate>Tue, 14 Jul 2026 00:00:00 +0000</lastBuildDate>
    <image>
      <url>https://jinyung.github.io/images/icon_hud9e986e855b8e3846c4fec80f7a61c84_40920_512x512_fill_lanczos_center_3.png</url>
      <title>WONG Jin Yung</title>
      <link>https://jinyung.github.io/</link>
    </image>
    
    <item>
      <title>Hydrodynamic effects of spines on zooplankton: how horns and tails alter flow and forces on barnacle nauplii</title>
      <link>https://jinyung.github.io/publication/will-2026-3d-printing/</link>
      <pubDate>Tue, 14 Jul 2026 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/publication/will-2026-3d-printing/</guid>
      <description></description>
    </item>
    
    <item>
      <title>DNA-DETR: Sequence representation matters in object detection for functional genomic elements</title>
      <link>https://jinyung.github.io/publication/tsai-2026-dnadetr/</link>
      <pubDate>Mon, 01 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/publication/tsai-2026-dnadetr/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Bioinformatics</title>
      <link>https://jinyung.github.io/courses/bioinformatics/</link>
      <pubDate>Fri, 08 May 2026 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/courses/bioinformatics/</guid>
      <description>&lt;h2 id=&#34;course-code&#34;&gt;Course code&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;MBR357&lt;/code&gt; (undergrad), under the Department of Marine Biotechnology and Resources.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;DO451&lt;/code&gt;(undergrad)/ &lt;code&gt;DO727&lt;/code&gt;(grad), under the Department of Oceanography.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;semesters-taught&#34;&gt;Semesters taught&lt;/h2&gt;
&lt;p&gt;115-1 (offered every year in the first semester)&lt;/p&gt;
&lt;h2 id=&#34;course-description&#34;&gt;Course description&lt;/h2&gt;
&lt;p&gt;Bioinformatics integrates biology, statistics and computer science.
This course is suitable for students who want to learn how to use computers to run
analysis by building pipelines from existing software, or by designing a new
algorithm. I will use some classical problems to demonstrate: sequence
alignment, phylogeny reconstruction, motif finding, etc. The focus is not on the topics &lt;em&gt;per se&lt;/em&gt;,
but rather on how we formulate them as computationally solvable problems. The course
is therefore designed to be general, with the hopes that the skills and concepts
learned will be transferable across the vast number of topics in bioinformatics,
and even outside of biology. Therefore, this course is also suitable for students with
little biology background.&lt;/p&gt;
&lt;p&gt;The first part of the course focuses on the practical data analysis. Students will learn how to work in a Linux virtual machine (using

&lt;a href=&#34;https://github.com/features/codespaces&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Github Codespaces&lt;/a&gt;):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;How to identify suitable software for a question&lt;/li&gt;
&lt;li&gt;How to install software for reproducible analysis&lt;/li&gt;
&lt;li&gt;How to format inputs and outputs so that different software tools can work together&lt;/li&gt;
&lt;li&gt;How to combine multiple software tools into a pipeline&lt;/li&gt;
&lt;li&gt;How to work with large files&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These basics are best taught in a command line interface, inside a Linux environment so that students can better understand how a computer works.&lt;/p&gt;
&lt;p&gt;The second part of the course focuses on learning the algorithms underlying these
software. Students will learn:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;How many possible solutions does this problem have?&lt;/li&gt;
&lt;li&gt;How can we score a solution?&lt;/li&gt;
&lt;li&gt;How can we find the solution with the best score using the least computation?&lt;/li&gt;
&lt;li&gt;When the number of possibilities is too large, how can we find an approximate best solution?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Specifically, I will focus on the concepts (or their simplifications)
of &lt;strong&gt;Dynamic Programming (DP)&lt;/strong&gt;, &lt;strong&gt;Maximum Likelihood Estimation (MLE)&lt;/strong&gt;,
and &lt;strong&gt;Expectation Maximization (EM)&lt;/strong&gt;, etc. I will spend a significant amount of time on DP, building from the basic concepts of recursion and graph representation.&lt;/p&gt;
&lt;p&gt;In the last part of the course, I will briefly introduce students to the concept of deep learning (DL),
as it has become increasingly important in bioinformatics. The goal here is to connect the
optimization methods students learned in the previous part to how DL models works with &lt;strong&gt;gradient descent&lt;/strong&gt;.&lt;/p&gt;
&lt;h2 id=&#34;prerequisite&#34;&gt;Prerequisite&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Biological knowledge&lt;/strong&gt;: Students only need to know that DNA is the genetic material of living organisms and that it consists of four letters: A, G, T, and C. That is all.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Programming experience&lt;/strong&gt;: Prior programming experience is &lt;strong&gt;NOT&lt;/strong&gt; required, but it will be helpful. In the first part of the course, I will teach the necessary computational skills from scratch. In the second part, the focus will shift toward problem-solving by hand. Coding is less central in the age of AI; problem formulation and understanding algorithms are more important.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;syllabus&#34;&gt;Syllabus&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;to be updated&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Advanced Scientific English</title>
      <link>https://jinyung.github.io/courses/advanced_scientific_eng/</link>
      <pubDate>Sat, 10 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/courses/advanced_scientific_eng/</guid>
      <description>&lt;h2 id=&#34;course-code&#34;&gt;Course code&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;DO405&lt;/code&gt; (undergrad) / &lt;code&gt;DO701&lt;/code&gt; (postgrad), under the Department of Oceanography&lt;/p&gt;
&lt;h2 id=&#34;semesters-taught&#34;&gt;Semesters taught&lt;/h2&gt;
&lt;p&gt;114-2 (offered every year in the second semester)&lt;/p&gt;
&lt;h2 id=&#34;course-description&#34;&gt;Course description&lt;/h2&gt;
&lt;p&gt;This course is designed for graduate students and students preparing to pursue graduate studies who wish to level up their scientific English skills. Students will learn to read and write with intent by adopting the perspectives of reviewers.&lt;/p&gt;
&lt;p&gt;In the first part of the course, students will be trained to read research papers not only as readers, but also as reviewers. By learning what reviewers look for when preparing an evaluation report, students will learn to read more efficiently and critically.&lt;/p&gt;
&lt;p&gt;In the second part of the course, students will apply this perspective to their own writing by developing a research proposal. They will revise their work through iterative, role-based feedback, alternating between the roles of author and reviewer to make their writing clear and easy to navigate for a potential reviewer. When teaching writing style, I recommend the 
&lt;a href=&#34;https://doi.org/10.1371/journal.pcbi.1005619&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&amp;ldquo;Context-Content-Conclusion&amp;rdquo;&lt;/a&gt; approach. It is one of many popular styles that make writing easy to read.&lt;/p&gt;
&lt;p&gt;Throughout the course, students will learn to use AI tools to support the processes of reading and writing, while maintaining control over their intent, rather than accepting everything from AI tools uncritically.&lt;/p&gt;
&lt;h2 id=&#34;prerequisite&#34;&gt;Prerequisite&lt;/h2&gt;
&lt;p&gt;This course is intended for students with at least upper-intermediate English proficiency.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Life sciences</title>
      <link>https://jinyung.github.io/courses/life_science/</link>
      <pubDate>Sat, 10 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/courses/life_science/</guid>
      <description>&lt;h2 id=&#34;course-code&#34;&gt;Course code&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;GEAE2514A&lt;/code&gt;/&lt;code&gt;GEAE2514B&lt;/code&gt; (undergrad), under general education courses&lt;/p&gt;
&lt;h2 id=&#34;semesters-taught&#34;&gt;Semesters taught&lt;/h2&gt;
&lt;p&gt;113-1, 113-2, 114-1, 114-2, 115-1 (offered regularly every semester)&lt;/p&gt;
&lt;h2 id=&#34;course-description&#34;&gt;Course description&lt;/h2&gt;
&lt;p&gt;I cover half of this general education course, focusing on the evolution of organisms and their interactions with each other and with the environments they inhabit.&lt;/p&gt;
&lt;p&gt;The class is designed for non-biology majors and introduces students to the fascinating world of living organisms. I aim to show that life sciences are highly relatable and touch on fundamental questions related to our own existence and daily life. I also connect life sciences to other disciplines, so students from different majors can see how these ideas connect with their fields.&lt;/p&gt;
&lt;p&gt;Here are some of the topics I will cover:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Evolution by natural selection is a big idea. Where did it come from?
Influences on Charles Darwin, including economic theories of resource competition.&lt;/li&gt;
&lt;li&gt;Why Charles Darwin&amp;rsquo;s theory of evolution is not just about &amp;ldquo;survival of the fittest&amp;rdquo;.&lt;/li&gt;
&lt;li&gt;Mutation can cause cancer, yet without it long term evolution is impossible.&lt;/li&gt;
&lt;li&gt;Survival of the luckiest: not all evolutionary changes are adaptations;
some are simply the outcome of random sampling.&lt;/li&gt;
&lt;li&gt;Nature vs. Nurture: If evolution acts only on genes, does choice still matter?&lt;/li&gt;
&lt;li&gt;To fight or not to fight? Peace benefits everyone, but why it is so hard to
maintain and why doesn&amp;rsquo;t aggression take over entirely in nature?&lt;/li&gt;
&lt;li&gt;If evolution acts on individual rather than group survival,
how can cooperation and even self-sacrificial behavior evolve?&lt;/li&gt;
&lt;li&gt;Why have peacocks evolved a large, colorful tail that handicaps them?
How sexual selection explains &amp;ldquo;illogical&amp;rdquo; mate choice in animals.&lt;/li&gt;
&lt;li&gt;Will the human population continue to grow? What limits it, and
how does it compare to other organisms?&lt;/li&gt;
&lt;li&gt;Why do animal populations cycle or fluctuate? The link to the &amp;ldquo;the butterfly effect&amp;rdquo;&lt;/li&gt;
&lt;li&gt;If extinction is natural, why should we save species? If survival of the fittest
rules nature, why save the losers?&lt;/li&gt;
&lt;li&gt;The race to resource exploitation: are we doomed,
or can we escape &amp;ldquo;the tragedy of the commons&amp;rdquo;? Is reducing consumption the answer?&lt;/li&gt;
&lt;li&gt;How close are we to climate tipping points? Why didn&amp;rsquo;t we notice them coming earlier?&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;prerequisite&#34;&gt;Prerequisite&lt;/h2&gt;
&lt;p&gt;None. My classes are quite different from high school biology. It doesn’t matter much whether you have studied biology before.&lt;/p&gt;
&lt;h2 id=&#34;syllabus&#34;&gt;Syllabus&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;The origin of species and the tree of life&lt;/li&gt;
&lt;li&gt;Principles of evolution&lt;/li&gt;
&lt;li&gt;Animal behavior, conflicts and cooperation&lt;/li&gt;
&lt;li&gt;Sexual selection and evolution summary&lt;/li&gt;
&lt;li&gt;Population and community ecology&lt;/li&gt;
&lt;li&gt;The Anthropocene and conservation biology&lt;/li&gt;
&lt;li&gt;Exam&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Machine Learning</title>
      <link>https://jinyung.github.io/courses/machine_learning/</link>
      <pubDate>Sat, 10 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/courses/machine_learning/</guid>
      <description>&lt;h2 id=&#34;course-code&#34;&gt;Course code&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;DO354&lt;/code&gt; (undergrad)/ &lt;code&gt;DO720&lt;/code&gt; (postgrad), under the Department of Oceanography&lt;/p&gt;
&lt;h2 id=&#34;semesters-taught&#34;&gt;Semesters taught&lt;/h2&gt;
&lt;p&gt;113-1, 114-1, 115-1 (offered every year in the first semester)&lt;/p&gt;
&lt;h2 id=&#34;course-description&#34;&gt;Course description&lt;/h2&gt;
&lt;p&gt;This course introduces students to machine learning and its applications.
Upon completion, students will be able to implement various ML models,
from simple linear models to deep learning models, and apply them to
problems in marine sciences.&lt;/p&gt;
&lt;p&gt;The first part of the course focuses on the basic machine learning concepts and
implementation with 
&lt;a href=&#34;https://scikit-learn.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;code&gt;scikit-learn&lt;/code&gt;&lt;/a&gt;.
More time is spent on coding than on theory in this part to help students become
confident with coding and familiar with the general workflow of model training.&lt;/p&gt;
&lt;p&gt;The second part focuses on the basics of deep learning and implementation
using 
&lt;a href=&#34;https://www.tensorflow.org/guide/keras&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;code&gt;Keras/TensorFlow&lt;/code&gt;&lt;/a&gt;.
More time is spent on conceptual understanding in this part, i.e.,
heavy use of blackboard explanations, to help students become confident in explaining
how each type of neural network model works.&lt;/p&gt;
&lt;p&gt;We will use examples in marine sciences throughout the course.&lt;/p&gt;
&lt;h2 id=&#34;prerequisite&#34;&gt;Prerequisite&lt;/h2&gt;
&lt;p&gt;We will use &lt;code&gt;Python&lt;/code&gt; for implementation (using 
&lt;a href=&#34;https://colab.research.google.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Google Colab&lt;/a&gt;), so students are required to have some programming experience in &lt;code&gt;Python&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&#34;syllabus&#34;&gt;Syllabus&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Introduction to machine learning&lt;/li&gt;
&lt;li&gt;Python crash course and data preprocessing&lt;/li&gt;
&lt;li&gt;Regression&lt;/li&gt;
&lt;li&gt;Classification&lt;/li&gt;
&lt;li&gt;Dimension reduction&lt;/li&gt;
&lt;li&gt;Clustering&lt;/li&gt;
&lt;li&gt;Part 1 summary&lt;/li&gt;
&lt;li&gt;Mid-term exam / Final project proposal&lt;/li&gt;
&lt;li&gt;Introduction to deep learning&lt;/li&gt;
&lt;li&gt;Multilayer perceptron (Part 1: forward propogation and loss function)&lt;/li&gt;
&lt;li&gt;Multilayer perceptron (Part 2: back propagation and gradient descent)&lt;/li&gt;
&lt;li&gt;Autoencoder&lt;/li&gt;
&lt;li&gt;Recurrent neural network&lt;/li&gt;
&lt;li&gt;Convolutional neural network&lt;/li&gt;
&lt;li&gt;Transfer learning&lt;/li&gt;
&lt;li&gt;Part 2 summary&lt;/li&gt;
&lt;li&gt;Final project presentation&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Marine life in moving fluids</title>
      <link>https://jinyung.github.io/courses/moving_fluids/</link>
      <pubDate>Sat, 10 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/courses/moving_fluids/</guid>
      <description>&lt;h2 id=&#34;course-code&#34;&gt;Course code&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;IGPM709&lt;/code&gt; (postgrad), under the International graduate program of marine sciences and technology&lt;/p&gt;
&lt;h2 id=&#34;semesters-taught&#34;&gt;Semesters taught&lt;/h2&gt;
&lt;p&gt;113-2, 114-1 (offered non-regularly)&lt;/p&gt;
&lt;h2 id=&#34;course-description&#34;&gt;Course description&lt;/h2&gt;
&lt;p&gt;This is an interdisciplinary graduate course based heavily on the book &lt;em&gt;
&lt;a href=&#34;https://press.princeton.edu/books/paperback/9780691026169/life-in-moving-fluids&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Life in moving fluids: the physical biology of flow&lt;/a&gt;&lt;/em&gt;,
and supplemented with a list of research papers for recent progress of the field.&lt;/p&gt;
&lt;p&gt;I aim to show that many aspects of the evolution and plasticity of marine organisms are shaped by interactions with their surrounding fluid environment, demonstrated by surprising adaptations and counterintuitive insights into how animals swim and feed.&lt;/p&gt;
&lt;p&gt;Students will learn key concepts in biological flows through discussion of the book chapters, as well as advanced methods and experimental designs used in biological flow research through discussion of the selected papers.&lt;/p&gt;
&lt;p&gt;By the end of the course, students are expected to be able to formulate biological questions from the perspective of flow interactions and to critically evaluate research papers in the field.&lt;/p&gt;
&lt;h2 id=&#34;prerequisite&#34;&gt;Prerequisite&lt;/h2&gt;
&lt;p&gt;Students with backgrounds in either biology or physics/ engineering are welcome.&lt;/p&gt;
&lt;h2 id=&#34;syllabus&#34;&gt;Syllabus&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Introduction: what is fluid?&lt;/li&gt;
&lt;li&gt;Drag, scale, and Reynolds number&lt;/li&gt;
&lt;li&gt;Flow visualization methods&lt;/li&gt;
&lt;li&gt;Flow field analysis&lt;/li&gt;
&lt;li&gt;Motion analysis&lt;/li&gt;
&lt;li&gt;Sessile systems&lt;/li&gt;
&lt;li&gt;Moving animals&lt;/li&gt;
&lt;li&gt;Midterm exam&lt;/li&gt;
&lt;li&gt;Life in velocity gradients and boundary layers&lt;/li&gt;
&lt;li&gt;Making and using vortices&lt;/li&gt;
&lt;li&gt;Lift and hydrofoils&lt;/li&gt;
&lt;li&gt;Thrust of swimming&lt;/li&gt;
&lt;li&gt;Life at low Reynolds number&lt;/li&gt;
&lt;li&gt;Advanced topics&lt;/li&gt;
&lt;li&gt;Final presentation&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Programming</title>
      <link>https://jinyung.github.io/courses/programming/</link>
      <pubDate>Sat, 10 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/courses/programming/</guid>
      <description>&lt;h2 id=&#34;course-code&#34;&gt;Course code&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;DO243A&lt;/code&gt; (undergrad), under the Department of Oceanography&lt;/p&gt;
&lt;h2 id=&#34;semesters-taught&#34;&gt;Semesters taught&lt;/h2&gt;
&lt;p&gt;113-2, 114-2 (offered every year in the second semester)&lt;/p&gt;
&lt;h2 id=&#34;course-description&#34;&gt;Course description&lt;/h2&gt;
&lt;p&gt;This course introduces students to basic programming concepts using &lt;code&gt;Python&lt;/code&gt;.
Upon completion, students will be able to write their own programs in &lt;code&gt;Python&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;The first part of the course focuses on the basics of programming and the &lt;code&gt;Python&lt;/code&gt; language.
Students will learn built-in data types and use conditionals and iterations to
write their first programs. We will use mostly &amp;ldquo;vanilla&amp;rdquo; &lt;code&gt;Python&lt;/code&gt; in this part within
the command line interface to build a strong foundation.&lt;/p&gt;
&lt;p&gt;The second part focuses on using popular external libraries. This part is useful
for students learning programming for data analysis. We will use &lt;code&gt;Google Colab&lt;/code&gt;
to demonstrate how data can be conveniently processed, analyzed and visualized
in a notebook format.&lt;/p&gt;
&lt;p&gt;Finally, students will be introduced to web app development to present their
ideas and let users to interact with their programs easily online.
We will use &lt;code&gt;Streamlit&lt;/code&gt; to demonstrate. For students planning to also take 
&lt;a href=&#34;https://jinyung.github.io/courses/machine_learning/&#34;&gt;Machine learning&lt;/a&gt; later,
this will equip them with the skills to build an interactive web app that allows users to use their model online.&lt;/p&gt;
&lt;h2 id=&#34;prerequisite&#34;&gt;Prerequisite&lt;/h2&gt;
&lt;p&gt;None.&lt;/p&gt;
&lt;h2 id=&#34;syllabus&#34;&gt;Syllabus&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Introduction to programming and Python basics&lt;/li&gt;
&lt;li&gt;Data types&lt;/li&gt;
&lt;li&gt;Logical operators and conditionals (if-else)&lt;/li&gt;
&lt;li&gt;Iterations (for loop, while loop, comprehensions, recursion)&lt;/li&gt;
&lt;li&gt;Function (arguments, variable scopes, testing)&lt;/li&gt;
&lt;li&gt;Randomization (sampling, simulation)&lt;/li&gt;
&lt;li&gt;Optional topics depending on progress: parallel processing, intro to programming paradigms (procedural, functional, object-oriented), regular expression&lt;/li&gt;
&lt;li&gt;Midterm exam and final project proposal&lt;/li&gt;
&lt;li&gt;Introduction to data analysis libraries and web app development&lt;/li&gt;
&lt;li&gt;Data frames processing with Pandas&lt;/li&gt;
&lt;li&gt;Data visualization&lt;/li&gt;
&lt;li&gt;Numerical analysis with NumPy&lt;/li&gt;
&lt;li&gt;Building interactive web app I&lt;/li&gt;
&lt;li&gt;Building interactive web app II&lt;/li&gt;
&lt;li&gt;Final project presentation&lt;/li&gt;
&lt;li&gt;Final project presentation&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;web-app-examples&#34;&gt;Web app examples&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;https://jinyung.github.io/DO243A/mnist.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hand written digit predictor&lt;/a&gt; (embedded below)&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;https://jinyung.github.io/DO243A/Typhoon_track_viewer.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Typhoon track viewer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;https://jinyung.github.io/DO243A/K_means.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;K-means clustering visualization&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;https://jinyung.github.io/DO243A/Ocean_current.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Ocean current viewer&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;outstanding-students-works&#34;&gt;Outstanding students&amp;rsquo; works&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href=&#34;https://eddielss96.github.io/earthquake_monitor&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Taiwan&amp;rsquo;s earthquake dashboard&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;https://kaiii1912.github.io/DP_Learning_Hub/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Dynamic Programming visualization&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;https://hsun0-ga-visualization-main-pro6oa.streamlit.app/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Genetic Algorithm visualization&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;figure&gt;
  &lt;div style=&#34;position: relative; padding-bottom: 75%; height: 0;&#34;&gt;
    &lt;iframe 
      src=&#34;https://jinyung.github.io/DO243A/mnist.html&#34;
      style=&#34;position:absolute; width:100%; height:250%; border:1px solid #ddd; border-radius:8px;&#34;&gt;
    &lt;/iframe&gt;
  &lt;/div&gt;
&lt;/figure&gt;
</description>
    </item>
    
    <item>
      <title>Deep Learning for Multimodal Data</title>
      <link>https://jinyung.github.io/join_us/phd_2026_dl/</link>
      <pubDate>Tue, 06 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/join_us/phd_2026_dl/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Status&lt;/strong&gt;: &lt;strong&gt;&lt;span style=&#34;color:red;&#34;&gt;closed&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Project title&lt;/strong&gt;:&lt;/p&gt;
&lt;p&gt;PhD Position: Deep Learning for Multimodal Biodiversity Data (Marine Larvae Focus)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;About the project&lt;/strong&gt;:&lt;/p&gt;
&lt;p&gt;We are seeking a motivated PhD student to develop a deep learning framework for
the comparative study of multimodal biodiversity data, with a focus on marine larvae.
The goal is to use modern deep learning methods to build a system that
supports efficient data exploration, meaningful interpretation,
and biologically plausible prediction across different data types.&lt;/p&gt;
&lt;p&gt;The position is part of a funded project that
involves both data collection and model development.
We will collect data from marine larvae for model training; however, the framework
will be applicable to multimodal data in general.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Required qualifications&lt;/strong&gt; :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Master&amp;rsquo;s degree (Bioinformatics, Data Science, Oceanography, Biology or other relevant fields)&lt;/li&gt;
&lt;li&gt;Demonstrated programming experience (through completed independent project)&lt;/li&gt;
&lt;li&gt;Strong interest in interdisciplinary research&lt;/li&gt;
&lt;li&gt;Good written and spoken English&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Desirable skills&lt;/strong&gt; :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Experience with deep learning frameworks (Pytorch or Tensorflow)&lt;/li&gt;
&lt;li&gt;Basic knowledge of databases or web application development&lt;/li&gt;
&lt;li&gt;Background in evolutionary biology, marine larvae, or geometric morphometrics&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;About the position&lt;/strong&gt; :&lt;/p&gt;
&lt;p&gt;The successful candidate will register as a PhD student under the 
&lt;a href=&#34;https://igpmst.nsysu.edu.tw/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;International Doctoral Program of Marine Science and Technology&lt;/a&gt; at
National Sun Yat-sen University, Kaohsiung, Taiwan.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Financial supports&lt;/strong&gt;:&lt;/p&gt;
&lt;p&gt;Various sources of 
&lt;a href=&#34;https://igpmst.nsysu.edu.tw/p/412-1314-27368.php?Lang=en&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;PhD scholarships&lt;/a&gt; are available. Additional financial support are available in the form of teaching assistantships and research assistantships.
Performance-based incentives is offered based on research output.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;About the lab&lt;/strong&gt;:&lt;/p&gt;
&lt;p&gt;We use interdisciplinary approaches to study problems in evolution and ecology
in marine environments, including experimental fluid dynamics and deep learning.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How to apply&lt;/strong&gt;:&lt;/p&gt;
&lt;p&gt;Please email your cover letter, CV, transcript, and contact details for referees in a single PDF file to Dr. Jin Yung Wong: 
&lt;a href=&#34;mailto:wongjinyung@mail.nsysu.edu.tw&#34;&gt;wongjinyung@mail.nsysu.edu.tw&lt;/a&gt;
. If you are unsure about your suitability for the project or are more interested in the experimental component,
you are welcome to contact for inquiry.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>A feature extraction free approach for protein interactome inference from co-elution data</title>
      <link>https://jinyung.github.io/publication/chen-2023-spiffed/</link>
      <pubDate>Fri, 16 Jun 2023 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/publication/chen-2023-spiffed/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Short human eccDNAs are predictable from sequences</title>
      <link>https://jinyung.github.io/publication/chang-2023-deep-circle/</link>
      <pubDate>Fri, 21 Apr 2023 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/publication/chang-2023-deep-circle/</guid>
      <description></description>
    </item>
    
    <item>
      <title>A tail’s tale: biomechanical roles of dorsal thoracic spine of barnacle nauplii</title>
      <link>https://jinyung.github.io/publication/branam-2021-tail/</link>
      <pubDate>Thu, 01 Apr 2021 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/publication/branam-2021-tail/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Swimming kinematics and hydrodynamics of barnacle larvae throughout development</title>
      <link>https://jinyung.github.io/publication/wong-2020-cyprid/</link>
      <pubDate>Wed, 14 Oct 2020 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/publication/wong-2020-cyprid/</guid>
      <description>&lt;h2 id=&#34;supplementary-videos&#34;&gt;Supplementary Videos&lt;/h2&gt;
&lt;h3 id=&#34;video-s1&#34;&gt;Video S1&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/24epw/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/24epw/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/24epw/?direct%26mode=render&#34;
    width = &#34;100%&#34;
    height=&#34;500px&#34;
    scrolling=&#34;yes&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
    class=&#34;myIframe&#34;
&gt;&lt;/iframe&gt;
--&gt;
&lt;p&gt;Movement tracking of swimming &lt;em&gt;Capitulum mitella&lt;/em&gt; nauplius VI from ventral view (50× slow motion).&lt;/p&gt;
&lt;h3 id=&#34;video-s2&#34;&gt;Video S2&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/56cdq/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/56cdq/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/56cdq/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;500px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
&lt;p&gt;Movement tracking of swimming &lt;em&gt;Capitulum mitella&lt;/em&gt; cyprid from dorsal view (100× slow motion).&lt;/p&gt;
&lt;h3 id=&#34;video-s3&#34;&gt;Video S3&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/z2jfn/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/z2jfn/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/z2jfn/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;500px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
&lt;p&gt;Velocity and vorticity fields around swimming &lt;em&gt;Capitulum mitella&lt;/em&gt; nauplius VI from ventral view (50× slow motion; same individual as in Video S1). Nauplius swam in Re of 2.6.&lt;/p&gt;
&lt;h3 id=&#34;video-s4&#34;&gt;Video S4&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/ufx6d/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/ufx6d/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/ufx6d/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;500px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
&lt;p&gt;Velocity and vorticity fields around swimming &lt;em&gt;Capitulum mitella&lt;/em&gt; cyprid from dorsal view (100× slow motion; same individual as in Video S2). Cyprid swam in Re of 4.8.&lt;/p&gt;
&lt;h3 id=&#34;video-s5&#34;&gt;Video S5&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/t23m5/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/t23m5/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/t23m5/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;500px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
&lt;p&gt;Separation of velocity stagnation points from vorticity maximums/ minimums in trailing viscous wake vortices of cyprid (1000x slow motion). Individual used is identical to the one in Video S4.&lt;/p&gt;
&lt;h3 id=&#34;video-s6&#34;&gt;Video S6&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/bre5g/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/bre5g/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/bre5g/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;500px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
&lt;p&gt;Velocity and vorticity fields around swimming &lt;em&gt;Capitulum mitella&lt;/em&gt; nauplius III from ventral view (50× slow motion). Nauplius swam in Re of 0.6.&lt;/p&gt;
&lt;h3 id=&#34;video-s7&#34;&gt;Video S7&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/ms4xq/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/ms4xq/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/ms4xq/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;500px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
&lt;p&gt;Velocity and vorticity fields around swimming &lt;em&gt;Capitulum mitella&lt;/em&gt; cyprid from dorsal view (100× slow motion). Cyprid swim in Re of 1.8.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Evolution of feeding shapes swimming kinematics of barnacle naupliar larvae: a comparison between trophic modes</title>
      <link>https://jinyung.github.io/publication/wong-2020-trophicmode/</link>
      <pubDate>Fri, 17 Apr 2020 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/publication/wong-2020-trophicmode/</guid>
      <description>&lt;h2 id=&#34;supplementary-videos&#34;&gt;Supplementary Videos&lt;/h2&gt;
&lt;h3 id=&#34;video-s1&#34;&gt;Video S1&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/548qt/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/548qt/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/548qt/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;800px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
&lt;p&gt;High speed video of swimming barnacle nauplii at 100× slow motion. &lt;strong&gt;Top&lt;/strong&gt;, nauplius of common intertidal barnacle, &lt;em&gt;Tetraclita japonica&lt;/em&gt;; &lt;strong&gt;bottom&lt;/strong&gt;, nauplius of the parasitic Rhizocephalan barnacle, &lt;em&gt;Polyascus planus&lt;/em&gt;&lt;/p&gt;
&lt;h3 id=&#34;video-s2&#34;&gt;Video S2&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/nqr7s/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/nqr7s/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/nqr7s/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;280px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
&lt;p&gt;Kinematics analysis on appendage movements of the planktotrophic &lt;em&gt;Tetraclita&lt;/em&gt; nauplius&lt;/p&gt;
&lt;h3 id=&#34;video-s3&#34;&gt;Video S3&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/ktw6x/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/ktw6x/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/ktw6x/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;280px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
&lt;p&gt;Kinematics analysis on appendage movements of the lecithotrophic &lt;em&gt;Polyascus&lt;/em&gt; nauplius&lt;/p&gt;
&lt;h3 id=&#34;video-s4&#34;&gt;Video S4&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/m952x/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/m952x/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/m952x/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;800px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
&lt;p&gt;Velocity and vorticity fields around swimming nauplii from dorsal view (100× slow motion)&lt;/p&gt;
&lt;h3 id=&#34;video-s5&#34;&gt;Video S5&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/nfh2b/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/nfh2b/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/nfh2b/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;800px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
Velocity and vorticity fields around swimming nauplii from lateral view (100× slow motion)
&lt;h3 id=&#34;video-s6&#34;&gt;Video S6&lt;/h3&gt;
&lt;video controls width=&#34;100%&#34; preload=&#34;metadata&#34;&gt;
  &lt;source src=&#34;https://osf.io/download/z3chv/?direct%26mode=render&#34; type=&#34;video/mp4&#34;&gt;
  Your browser cannot play this video.
  &lt;a href=&#34;https://osf.io/download/z3chv/?direct%26mode=render&#34;&gt;Download video from OSF&lt;/a&gt;.
&lt;/video
&lt;p&gt;Animation of particle tracking during recovery strokes from side view (200× slow motion)&lt;/p&gt;
&lt;!--
&lt;iframe src=&#34;https://mfr.osf.io/render?url=https://osf.io/download/z3chv/?direct%26mode=render&#34;
    width=&#34;100%&#34;
    scrolling=&#34;yes&#34;
    height=&#34;360px&#34;
    marginheight=&#34;0&#34;
    frameborder=&#34;0&#34;
    allowfullscreen
    webkitallowfullscreen
&gt;&lt;/iframe&gt;
--&gt;
</description>
    </item>
    
    <item>
      <title>Phylogenetic, ecological and biomechanical constraints on larval form: a comparative morphological analysis of barnacle nauplii</title>
      <link>https://jinyung.github.io/publication/wong-2018-naupliimorph/</link>
      <pubDate>Thu, 01 Nov 2018 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/publication/wong-2018-naupliimorph/</guid>
      <description>&lt;h2 id=&#34;interactive-plots&#34;&gt;Interactive plots&lt;/h2&gt;
&lt;h3 id=&#34;figure-1&#34;&gt;Figure 1&lt;/h3&gt;
&lt;h4 id=&#34;b&#34;&gt;B&lt;/h4&gt;


&lt;div id=&#34;/json/fig1.json&#34; class=&#34;plotly&#34; style=&#34;height:500px;&#34;&gt;&lt;/div&gt;
&lt;script&gt;
  d3.json(&#34;/json/fig1.json&#34;).then(function (fig) {
      Plotly.newPlot(&#39;\/json\/fig1.json&#39;, fig.data, fig.layout, { responsive: true });
  });
&lt;/script&gt;

&lt;p&gt;Outline reconstructed from elliptic Fourier analysis. &lt;strong&gt;Drag the slider&lt;/strong&gt; to view
reconstructed outlines using different number of harmonics. Note how quickly the
outlines change in the first 20 harmonics but little improvement after that.&lt;/p&gt;
&lt;h3 id=&#34;figure-2&#34;&gt;Figure 2&lt;/h3&gt;
&lt;h4 id=&#34;a&#34;&gt;A&lt;/h4&gt;
&lt;p&gt;

&lt;div id=&#34;/json/fig2_1.json&#34; class=&#34;plotly&#34; style=&#34;height:500px;&#34;&gt;&lt;/div&gt;
&lt;script&gt;
  d3.json(&#34;/json/fig2_1.json&#34;).then(function (fig) {
      Plotly.newPlot(&#39;\/json\/fig2_1.json&#39;, fig.data, fig.layout, { responsive: true });
  });
&lt;/script&gt;

Plot of first two principal component scores from principal component analysis
(PCA) on outline shape of stage II barnacle nauplii. &lt;strong&gt;Mouse over&lt;/strong&gt; to see species
name and other information of data points.&lt;/p&gt;
&lt;h3 id=&#34;figure-3&#34;&gt;Figure 3&lt;/h3&gt;
&lt;h4 id=&#34;b-1&#34;&gt;B&lt;/h4&gt;
&lt;p&gt;

&lt;div id=&#34;/json/fig3_1.json&#34; class=&#34;plotly&#34; style=&#34;height:500px;&#34;&gt;&lt;/div&gt;
&lt;script&gt;
  d3.json(&#34;/json/fig3_1.json&#34;).then(function (fig) {
      Plotly.newPlot(&#39;\/json\/fig3_1.json&#39;, fig.data, fig.layout, { responsive: true });
  });
&lt;/script&gt;

Shape score associated with size estimated from multivariate regression of shape
of nauplii outlines on size. &lt;strong&gt;Mouse over&lt;/strong&gt; to see species
name and other information of data points.&lt;/p&gt;
&lt;h4 id=&#34;c&#34;&gt;C&lt;/h4&gt;
&lt;p&gt;

&lt;div id=&#34;/json/fig3_2.json&#34; class=&#34;plotly&#34; style=&#34;height:500px;&#34;&gt;&lt;/div&gt;
&lt;script&gt;
  d3.json(&#34;/json/fig3_2.json&#34;).then(function (fig) {
      Plotly.newPlot(&#39;\/json\/fig3_2.json&#39;, fig.data, fig.layout, { responsive: true });
  });
&lt;/script&gt;

Predicted shapes from regression of shape on size. &lt;strong&gt;Drag the slider&lt;/strong&gt; to view
predicted shapes at different percentiles of size.&lt;/p&gt;
&lt;h3 id=&#34;figure-4&#34;&gt;Figure 4&lt;/h3&gt;
&lt;h4 id=&#34;a-1&#34;&gt;A&lt;/h4&gt;
 &lt;iframe width=&#34;100%&#34; height=&#34;500&#34; frameborder=&#34;0&#34; scrolling=&#34;no&#34; src=&#34;//plotly.com/~jinyung/1.embed?showlink=false&#34;&gt;&lt;/iframe&gt; 
&lt;p&gt;&lt;strong&gt;Drag the slider&lt;/strong&gt; to view what allometry adjustment does to the PCA morphospace.&lt;/p&gt;
&lt;h3 id=&#34;figure-5&#34;&gt;Figure 5&lt;/h3&gt;


&lt;div id=&#34;/json/fig5.json&#34; class=&#34;plotly&#34; style=&#34;height:500px;&#34;&gt;&lt;/div&gt;
&lt;script&gt;
  d3.json(&#34;/json/fig5.json&#34;).then(function (fig) {
      Plotly.newPlot(&#39;\/json\/fig5.json&#39;, fig.data, fig.layout, { responsive: true });
  });
&lt;/script&gt;

&lt;p&gt;&lt;strong&gt;Use drop down menu&lt;/strong&gt; to view the sub-plots: A) phylomorphospace and adult habitats; B) larval habitats; and C) nauplius duration.
&lt;strong&gt;Mouse over&lt;/strong&gt; to see species name and other information of data points.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Automated otolith image classification with multiple views: an evaluation on Sciaenidae</title>
      <link>https://jinyung.github.io/publication/wong-2016-sciaenidotolith/</link>
      <pubDate>Fri, 01 Jan 2016 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/publication/wong-2016-sciaenidotolith/</guid>
      <description></description>
    </item>
    
    <item>
      <title>A combined morphological and molecular approach in identifying barnacle cyprids from the Matang Mangrove Forest Reserve in Malaysia: essentials for larval ecology studies</title>
      <link>https://jinyung.github.io/publication/wong-2014-cypridid/</link>
      <pubDate>Wed, 01 Jan 2014 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/publication/wong-2014-cypridid/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Gallery</title>
      <link>https://jinyung.github.io/gallery/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://jinyung.github.io/gallery/</guid>
      <description>&lt;h2 id=&#34;animals&#34;&gt;Animals&lt;/h2&gt;

 
 
 
 
 
 
 
   
   
 
 
 &lt;div class=&#34;gallery&#34;&gt;
 
   
   
   
   
     
     
     
     
     
       
         
       
     
   &lt;a data-fancybox=&#34;gallery-animals&#34; href=&#34;https://jinyung.github.io/gallery/animals/amphitrite1.gif&#34; data-caption=&#34;&amp;lt;i&amp;gt;Amphibalanus amphitrite&amp;lt;/i&amp;gt;&#34;&gt;
   &lt;img data-src=&#34;https://jinyung.github.io/gallery/animals/amphitrite1_hufcbf73965dbca7e7c43e9bb764eea7bb_3996659_0x190_resize_lanczos_1.gif&#34; class=&#34;lazyload&#34; alt=&#34;&#34; width=&#34;339&#34; height=&#34;190&#34;&gt;
   &lt;/a&gt;
   
     
     
     
     
     
       
         
       
     
   &lt;a data-fancybox=&#34;gallery-animals&#34; href=&#34;https://jinyung.github.io/gallery/animals/lepas1.gif&#34; data-caption=&#34;&amp;lt;i&amp;gt;Lepas anatifera&amp;lt;/i&amp;gt;&#34;&gt;
   &lt;img data-src=&#34;https://jinyung.github.io/gallery/animals/lepas1_hu394bf11133053e80f7b2ade4d05609b3_8477110_0x190_resize_lanczos_1.gif&#34; class=&#34;lazyload&#34; alt=&#34;&#34; width=&#34;339&#34; height=&#34;190&#34;&gt;
   &lt;/a&gt;
   
     
     
     
     
     
       
         
       
     
   &lt;a data-fancybox=&#34;gallery-animals&#34; href=&#34;https://jinyung.github.io/gallery/animals/octolasmis1.gif&#34; data-caption=&#34;&amp;lt;i&amp;gt;Octolasmis warwickii&amp;lt;/i&amp;gt; and &amp;lt;i&amp;gt;Chelonibia testudinaria&amp;lt;/i&amp;gt;&#34;&gt;
   &lt;img data-src=&#34;https://jinyung.github.io/gallery/animals/octolasmis1_hu8627f5f78891e9acba895f697663c2c7_15189064_0x190_resize_lanczos_1.gif&#34; class=&#34;lazyload&#34; alt=&#34;&#34; width=&#34;339&#34; height=&#34;190&#34;&gt;
   &lt;/a&gt;
   
     
     
     
     
     
       
         
       
     
   &lt;a data-fancybox=&#34;gallery-animals&#34; href=&#34;https://jinyung.github.io/gallery/animals/rhizo.gif&#34; data-caption=&#34;Crab infested by parasitic Rhizocephalan barnacles&#34;&gt;
   &lt;img data-src=&#34;https://jinyung.github.io/gallery/animals/rhizo_hu20cadf7fea0f20ff7ba92c520e79d8ec_7801467_0x190_resize_lanczos_1.gif&#34; class=&#34;lazyload&#34; alt=&#34;&#34; width=&#34;341&#34; height=&#34;190&#34;&gt;
   &lt;/a&gt;
   
 
   
 &lt;/div&gt;
</description>
    </item>
    
  </channel>
</rss>
