7:00 – 7:00 ASRC GOES
- Dissertation
- Slides for human study – slow going…
- Voting – done
- Get dad – done
- ML group
- Doa’s practice proposal defense
7:00 – 7:00 ASRC GOES
7:00 – 4:00 ASRC GOES
7:00 – 4:00 PhD

import matplotlib.pyplot as plt
import numpy as np
from datetime import datetime
names = ['Le Bon', 'Arendt', 'Martindale', 'Moscovici & Doise', 'Grunbaum',
'Kauffman', 'Card & Pirolli', 'Bacharach', 'Olfati-Saber', 'Munson & Resnick', 'Stephens',
'Galotti', 'Bastos']
dates = ['1895', '1951', '1991', '1994', '1998', '1993', '1999', '2006', '2007', '2010', '2011', '2017', '2019']
namedates = []
for i in range(len(names)):
namedates.append("{} ({})".format(names[i], dates[i]))
# Convert date strings (e.g. 2014-10-18) to datetime
dates = [datetime.strptime(d, "%Y") for d in dates]
# Choose some nice levels
levels = np.tile([-5, 5, -4, 4, -3, 3, -2, 2, -1, 1],
int(np.ceil(len(dates)/6)))[:len(dates)]
# Create figure and plot a stem plot with the date
fig, ax = plt.subplots(figsize=(8.8, 4), constrained_layout=True)
ax.set(title="Literature")
markerline, stemline, baseline = ax.stem(dates, levels,
linefmt="C3-", basefmt="k-",
use_line_collection=True)
plt.setp(markerline, mec="k", mfc="w", zorder=3)
# Shift the markers to the baseline by replacing the y-data by zeros.
markerline.set_ydata(np.zeros(len(dates)))
# annotate lines
vert = np.array(['top', 'bottom'])[(levels > 0).astype(int)]
for d, l, r, va in zip(dates, levels, namedates, vert):
ax.annotate(r, xy=(d, l), xytext=(-3, np.sign(l)*3),
textcoords="offset points", va=va, ha="right")
# remove y axis and spines
ax.get_yaxis().set_visible(False)
for spine in ["left", "top", "right"]:
ax.spines[spine].set_visible(False)
ax.margins(y=0.1)
plt.subplots_adjust(left=0.1, right= 0.9)
plt.show()
7:00 – 5:00 ASRC GOES
7:00 – 8:00 ASRC GOES
Make appt. to pick up Dad on Friday after PhD day – done
This Interactive Guide to Protest Campaigns around the World uses data on all violent and nonviolent campaigns around the world with maximalist claims from 1945–2014 and is based on the NAVCO 1.2 database, recently released by Erica Chenoweth and Christopher Wiley Shay. The data extend on the NAVCO data project, which you can read about (and download) at the project’s Dataverse.
Here’s a bird’s eye view of six state-backed information operations on Twitter, and how they evolved over the last decade. This research was funded by the Mozilla Foundation by an Open Source Support Award.
7:00 – 5:00 ASRC GOES
7:00 – ASRC GOES

Cool bike accident map: rjfische.carto.com/viz/6ba7f7e8-3905-4d28-9596-2cc2d4d40b8b/embed_map
New NN?
Keeping all the cats aligned for the reading and defense
7:00 – 5:00 ASRC GOES
7:00 – 6:00 ASRC GOES
Check Copenhagen Wheel serial number for this recall
7:00 – 6:00 ASRC GOES
Check Copenhagen Wheel serial number for this recall
Contact Dreamhost about missing folders – done Fixed!
7:00 – 6:00 ASRC GOES
Dissertation
% for better underlining
\usepackage[outline]{contour}
\usepackage{ulem}
\normalem % use classical emph
\newcommand \myul[4]{%
\begingroup%
\renewcommand \ULdepth {#1}%
\renewcommand \ULthickness {#2}%
\contourlength{#3}%
\uline{\phantom{#4}}\llap{\contour{white}{#4}}%
\endgroup%
}
An ant colony has memories that its individual members don’t have
7:00 – ASRC
Optuna: An open source hyperparameter optimization framework to automate hyperparameter search
7:00 – 5:00 ASRC GOES
You must be logged in to post a comment.