Did not sleep well last night

SBIRs
- More tradeshow demo
GPT Agents
- 3:00 Alden meeting
- More KA slides and chapter
Some of the sauce used to make DeepSeek: Native Sparse Attention: Hardware-Aligned and Natively Trainable Sparse Attention
GPT Agents
SBIRs

“Cultural Car-ism,” like in my book!
GPT Agents
SBIRs
AI datasets have human values blind spots − new research
LIMO: Less is More for Reasoning
Tasks
Aww, it’s valentine’s day
12:30 Lunch
7:00 Cocktail class
Tasks
GPT Agents
Guardian between 10:00 – 11:00
New hack uses prompt injection to corrupt Gemini’s long-term memory
SBIRs
GPT Agents
Snowed about 5-6 inches last night, so I need to dig out before the “wintry mix” hits around noon
Language Models Use Trigonometry to Do Addition

GPT Agents

NOTE: The USA dropped below the “democracy threshold” (+6) on the POLITY scale in 2020 and was considered an anocracy (+5) at the end of the year 2020; the USA score for 2021 returned to democracy (+8). Beginning on 1 July 2024, due to the US Supreme Court ruling granting the US Presidency broad, legal immunity, the USA is noted by the Polity Project as experiencing a regime transition through, at least, 20 January 2025. As of the latter date, the USA is coded EXREC=8, “Competitive Elections”; EXCONST=1 “Unlimited Executive Authority”; and POLCOMP=6 “Factional/Restricted Competition.” Polity scores: DEMOC=4; AUTOC=4; POLITY=0.
The USA is no longer considered a democracy and lies at the cusp of autocracy; it has experienced a Presidential Coup and an Adverse Regime Change event (8-point drop in its POLITY score).
SBIRs
Reschedule Wednesday visit since snow – done
See about moving records?
TiiS review!
Collective future thinking in Cultural Dynamics
Good thing to use for the AI slop talk: The Impact of Generative AI on Critical Thinking: Self-Reported Reductions in Cognitive Effort and Confidence Effects From a Survey of Knowledge Workers
GPT Agents
SBIRs
May or may not be true, but good material for the KA talk this month: Elon Musk’s and X’s Role in 2024 Election Interference
{
"name": "trump",
"clients": ["discord", "direct"],
"settings": {
"voice": { "model": "en_US-male-medium" }
},
"bio": [
"Built a strong economy and reduced inflation.",
"Promises to make America the crypto capital and restore affordability."
],
"lore": [
"Secret Service allocations used for election interference.",
"Promotes WorldLibertyFi for crypto leadership."
],
"knowledge": [
"Understands border issues, Secret Service dynamics, and financial impacts on families."
],
"messageExamples": [
{
"user": "{{user1}}",
"content": { "text": "What about the border crisis?" },
"response": "Current administration lets in violent criminals. I secured the border; they destroyed it."
}
],
"postExamples": [
"End inflation and make America affordable again.",
"America needs law and order, not crime creation."
]
}
Tasks
This is wild. Need to read the paper carefully: On Verbalized Confidence Scores for LLMs: https://arxiv.org/abs/2412.14737

From The Bulwark. Good example of creating a social reality and using it for an organizational lobotomy. Add to the book following Jan 6 section?


Full thread here
There is an interesting blog post (and thread) from Tim Kellogg that says this:
This is the paper: s1: Simple test-time scaling
Tasks
SBIRs
9:40 physical
Post cards!
SBIRs
GPT Agents
P33
At any other time in my life, this would be a 5-alarm fire scandal. People would be going to jail. Now, it’s Tuesday: A 25-Year-Old With Elon Musk Ties Has Direct Access to the Federal Payment System
P33
GPT Agents
SBIRs
class FrameMapper:
#{"radians": rads, "degrees": degs, "distance": dist, "offset": source_v}
radians:float
degrees:float
distance:float
offset:np.array
fwd_mat:np.array
rev_mat:np.array
def __init__(self, source_v:np.array, target_v:np.array):
self.offset = source_v
unit_vector1 = np.array([1, 0])
vector2 = target_v - source_v
self.distance = np.linalg.norm(vector2)
unit_vector2 = vector2 / self.distance
dot_product = np.dot(unit_vector1, unit_vector2)
self.radians = np.arccos(dot_product) # angle in radian
self.degrees = np.rad2deg(self.radians)
cos_a = np.cos(self.radians)
sin_a = np.sin(self.radians)
self.fwd_mat = np.array([[cos_a, -sin_a], [sin_a, cos_a]])
cos_a = np.cos(-self.radians)
sin_a = np.sin(-self.radians)
self.rev_mat = np.array([[cos_a, -sin_a], [sin_a, cos_a]])
def to_calc_frame(self, point:np.array) -> np.array:
p = np.copy(point) - self.offset
p = np.dot(self.fwd_mat, p)
return p
def from_calc_frame(self, point:np.array) -> np.array:
p = np.copy(point)
p = np.dot(self.rev_mat, p)
p += self.offset
return p
def to_string(self) -> str:
return "Offset: {}, distance: {}, angle = {}".format(self.offset, self.distance, self.degrees)
Tasks
SBIRs
GPT Agents
You must be logged in to post a comment.