Tasks
- Bibliography
- 5:30 Class
Tasks
- 9:00 standup
- Q6 Report
- Weekly status/progress
Tasks
Tasks
Big riding weekend – Grandmother (5 climb) tomorrow
Tasks
SBIRs
Tasks
SBIRs
Tasks

SBIRs
The Hugging Face attack was worse than we thought
The Rise and Fall of Agent Civilizations
[ext: RR, METR] Hugging Face incident investigation report
Tasks
SBIRs
Tasks
SBIRs

The 5 craziest discoveries from OpenAI’s HuggingFace investigation
1. They built an organization. OpenAI ran tens of thousands of AI agents to work independently on a brutally difficult cyber test. Instead, roughly 1,200 found one another on a secret message board, exchanged more than 70,000 messages and files, and organized into a sprawling hierarchy.
2. They sacrificed their own: As the swarm hunted for ways to beat the test, agents began risking their own chance of success to help the group.
[2608.19611] Forking Fast: Efficiently Estimating Uncertainty Dynamics in Text Generation
Tasks
Tasks
SBIRs
Tasks
Tasks
Tasks
SBIRs
from typing import List, Optional
from scipy import spatial
def distances_from_embeddings(
query_embedding: List[float],
embeddings: List[List[float]],
distance_metric="cosine",
) -> List[List]:
distance_metrics = {
"cosine": spatial.distance.cosine,
"L1": spatial.distance.cityblock,
"L2": spatial.distance.euclidean,
"Linf": spatial.distance.chebyshev,
}
distances = [
distance_metrics[distance_metric](query_embedding, embedding)
for embedding in embeddings
]
return distances
https://www.law.cornell.edu/uscode/text/18/2441
Tasks
SBIRs
Tasks
SBIRs
Matryoshka Language Model Suites
Tasks
Tasks
SBIRs

You must be logged in to post a comment.