Tesla sees a truck carrying traffic lights (via Twitter):

Ping Tim!
Send David money!
GPT Agents
- Finish slides
- 3:30 Walkthrough
Book
- Started the “Do you see yourself here” section. Thought a lot about John 1:1
- 2:00 Meeting with Michelle
Tesla sees a truck carrying traffic lights (via Twitter):

Ping Tim!
Send David money!
GPT Agents
Book
Decision Transformer: Reinforcement Learning via Sequence Modeling
Book
SBIR
GPT-Agents
GPT Agents


Book
SBIR
JuryRoom
7:00 Meeting
June!
This looks quite interesting:
SBIR
Book
GPT-Agents,
Adding an incrementing value to an existing table in MySQL
I’ve been working on the Yelp dataset, and realized that I had forgotten to have some simple way to order the table. There is a review ID and date, but those can take a lot of time to work with. I wanted to add a row_id field, after creating the table, and then fill it with incrementing numbers. That took a little work to figure out, but here’s a full toy example based on this stackoverflow post. The table is very simple:

I initially populate it with only str values:
insert into table_test(str) values ('qwerty'), ('asdfgh'), ('zxcvbn'), ('qwerty');
That sets values in the table:

I then create the procedure with a delimiter:
/* set delimiter */
DELIMITER $$
/* remove procedure if exists... */
DROP PROCEDURE IF EXISTS insert_it $$
/* create procedure */
CREATE PROCEDURE insert_it ()
BEGIN
DECLARE varcount INT DEFAULT 1;
DECLARE varmax INT DEFAULT 4;
WHILE varcount <= varmax DO
UPDATE table_test set row_id = varcount where row_id IS NULL LIMIT 1;
SET varcount = varcount + 1;
END WHILE;
END $$
/* reset delimiter back to normal */
DELIMITER ;
Then you can run it and check the results
/* call procedure */
CALL insert_it();
select * from table_test;
Which fills out the row_id in the table!

Martin Vargic has a new map of the internet (available here)

Automatic detection of influential actors in disinformation networks
The geometry of decision-making
Book
SBIR

GPT Agents
On vacation, but still keeping track of a few things
Truth, Lies, and Automation How Language Models Could Change Disinformation
A quick thought about organizing topics from the GPT-3.
Another big writing day
GPT-Agents
SBIR
Book
Another big writing day
GPT-Agents
SBIR

Book
Big writing day
GPT-Agents
SBIR
Book
Flynn successfully defended yesterday!
I am fascinated by this Flyby chart from Strava from the Giro yesterday:

It shows Thomas De Gendt’s ride, who stayed with the main peloton (The black line), and how others diverged from that. You can see the breakaway (green line at the top), “nature breaks” (the small, sharp drops that then rise back), the attack by Bora–Hansgrohe on the final climb, the people getting dropped (then forming the autobus), and the high-speed run-in at the end of the race. It’s the whole race in a single chart.

GPT Agents
def save_selected(self, n_clicks, nodes_index_list):
ctx = dash.callback_context
prop_id = ctx.triggered[0]['prop_id']
if nodes_index_list == None:
nodes_index_list = []
if 'save-selected-btn' in prop_id:
for i in nodes_index_list:
d = self.checkbox_list[int(i)]
print(d)
self.seed_list.append(d['label'])
# return the updated seed text, and clear out the checkboxes
return ", ".join(self.seed_list), []
return ", ".join(self.seed_list), nodes_index_list

SBIR

We lost power on Thursday when a tree lost a GIANT limb that fell on a power line, and took out the Verizon lines as well. I got some things back up when the power was restored, though that took longer than just turning on the house. The current spike took out some hardware, including a power strip (yay! Not the computer!), but I didn’t have a spare strip (Boo!). And Friday afternoon I was using the phone as a hotspot.
Anyway, everything’s mostly back to normal
GPT-Agents
def save_selected(self, n_clicks, nodes_index_list):
if nodes_index_list == None:
nodes_index_list = []
if n_clicks == self.save_selected_clicks:
return ", ".join(self.seed_list), nodes_index_list
self.save_selected_clicks = n_clicks
for i in nodes_index_list:
d = self.checkbox_list[int(i)]
print(d)
self.seed_list.append(d['label'])
return ", ".join(self.seed_list), []
SBIR
5:30 – 7:00 Meeting with Andreea. We talked about a lot, but the idea of training a Transformer to translate between English and Maori-English slang seems particularly interesting. Also some exploration about how the GPT-3 might afford some insight into perceptions about this. Here’s an example (prompt is in bold)
Normally, I’d be doing my plots of COVID deaths for the month of April, but the disease is now working its way through countries that are not accurately reporting counts. I heard today on the BBC that India’s counts could be 2-8 times higher than reported.
GPT Agents
SBIR
SBIR
GPT Agents





JuryRoom
Deep Learning applications for COVID-19
This survey explores how Deep Learning has battled the COVID-19 pandemic and provides directions for future research on COVID-19. We cover Deep Learning applications in Natural Language Processing, Computer Vision, Life Sciences, and Epidemiology. We describe how each of these applications vary with the availability of big data and how learning tasks are constructed. We begin by evaluating the current state of Deep Learning and conclude with key limitations of Deep Learning for COVID-19 applications. These limitations include Interpretability, Generalization Metrics, Learning from Limited Labeled Data, and Data Privacy. Natural Language Processing applications include mining COVID-19 research for Information Retrieval and Question Answering, as well as Misinformation Detection, and Public Sentiment Analysis. Computer Vision applications cover Medical Image Analysis, Ambient Intelligence, and Vision-based Robotics. Within Life Sciences, our survey looks at how Deep Learning can be applied to Precision Diagnostics, Protein Structure Prediction, and Drug Repurposing. Deep Learning has additionally been utilized in Spread Forecasting for Epidemiology. Our literature review has found many examples of Deep Learning systems to fight COVID-19. We hope that this survey will help accelerate the use of Deep Learning for COVID-19 research.
Word embeddings quantify 100 years of gender and ethnic stereotypes
Word embeddings are a powerful machine-learning framework that represents each English word by a vector. The geometric relationship between these vectors captures meaningful semantic relationships between the corresponding words. In this paper, we develop a framework to demonstrate how the temporal dynamics of the embedding helps to quantify changes in stereotypes and attitudes toward women and ethnic minorities in the 20th and 21st centuries in the United States. We integrate word embeddings trained on 100 y of text data with the US Census to show that changes in the embedding track closely with demographic and occupation shifts over time. The embedding captures societal shifts—e.g., the women’s movement in the 1960s and Asian immigration into the United States—and also illuminates how specific adjectives and occupations became more closely associated with certain populations over time. Our framework for temporal analysis of word embedding opens up a fruitful intersection between machine learning and quantitative social science
How to make a racist AI without really trying
SBIR
create or replace view view_combined as
select distinct e.id, e.name, e.description, s1.value as dimension_size, s2.value as layers,
r1.value as avg_cos_loss, r2.value as avg_l1_loss from
table_experiment e
join table_settings s1 on e.id = s1.experiment_id and s1.name = 'dimension_size'
join table_settings s2 on e.id = s2.experiment_id and s2.name = 'layers'
join table_results r1 on e.id = r1.experiment_id and r1.name = 'avg cosine loss'
join table_results r2 on e.id = r2.experiment_id and r2.name = 'avg l1 loss';
select * from view_combined where id = 100;
GPT-Agents
You must be logged in to post a comment.