From ce7deb1e68e5ca176eeca4fc3e7da009a39545ff Mon Sep 17 00:00:00 2001 From: Oliver Kennedy Date: Thu, 2 May 2019 20:54:25 -0400 Subject: [PATCH] Kenny's students and formatting --- src/demoday/2019sp.erb | 57 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/demoday/2019sp.erb b/src/demoday/2019sp.erb index ab99b6b8..8147f043 100644 --- a/src/demoday/2019sp.erb +++ b/src/demoday/2019sp.erb @@ -232,6 +232,47 @@ classes: group: - name: Shubham Gulati email: sgulati3@buffalo.edu + - class: "Applied NLP and Computational Social Science (CSE 702)" + groups: + - title: "A Replication of Language Understanding for Text-based Games using Deep Reinforcement Learning" + group: + - name: Yuhao Du + - title: "A Replication of Fake news on Twitter during the 2016 U.S. presidential election" + group: + - name: Aamir Masood + - name: Sanjay B. + - title: "Seq2Seq machine translation and gender bias analysis" + group: + - name: Payraw Salih + email: payrawsa@buffalo.edu + - name: Parth Shah + email: parthnay@buffalo.edu + - title: "A Replication of Reducing Gender Bias Amplification using Corpus-level Constraints" + group: + - name: Nishi Mehta + - name: Pratik Kubal + - class: "Independent Study" + groups: + - title: "Anonymous public perception - An analysis of r/RoastMe and r/ToastMe" + group: + - name: Niharika Raut + - name: Gokul Premraj + - title: "Fake news in public WhatsApp groups during the 2019 Indian Election" + group: + - name: Abhishek Bhave + - name: Sidharth Pati + - name: Ateendra Ramesh + - title: "What's influencing the president?" + group: + - name: Akshada Chandrakant Bhor + - name: Ruturaj Tukaram Molawade + - title: "Explaining patterns in gender stereotypes associated with having a career" + group: + - name: Vikram Karthikeyan + - title: "What do people put in their twitter bios, and how does it vary by demographics?" + group: + - name: Krithika Srinivasan + ---

CSE Fall Departmental Demo Day

@@ -293,15 +334,15 @@ def render_student(data) txt = data["name"] tags = [ - ["github", "G", "https://github.com/"], - ["linkedin", "L", "https://www.linkedin.com/in/"], - ["email", "@", "mailto:"] + ["github", "github", "https://github.com/"], + ["linkedin", "linkedin", "https://www.linkedin.com/in/"], + ["email", "email", "mailto:"] ].map do |key, tag, prefix| "#{tag}" if data.include? key end.compact - txt += " ↦ #{tags.join(" | ")} " unless tags.empty? + txt += " (#{tags.join(" | ")})" unless tags.empty? - return "{ #{txt} }" + return "
[ #{txt} ]
" end project_id = 0 @@ -320,9 +361,9 @@ project_id = 0 project = "#{project}" if group_data.include? "url" team = group_data["group"] %> -
<%= project_id += 1 %>. <%= project %>
-
- +
<%= project_id += 1 %>. <%= project %>
+
+ <%= team.map { |t| render_student(t) }.join(" + ") %>
<%= group_data.fetch("description", "A really ☃ project")%>
<% end %>