arXiv ScienceSearch

arXiv subjects

Eric Butler

Publications and source records attributed to Eric Butler.

3 recordsLinked to original sources

Data Scout: Targeted Web Crawling for Domain-Specific Pretraining Corpora

The dominant approach to building domain-specific pretraining corpora is to filter large web archives such as CommonCrawl. This works well for popular domains but breaks down for specialized ones, where relevant content is sparse and often beyond the reach of popularity-driven crawlers. We present Data Scout, which inverts this: instead of filtering an archive, it directs a targeted crawl. An LLM expands a root topic into a taxonomy and thousands of search queries; the returned URLs (seeds) are grouped by subdomain and screened with a user-supplied classifier (the probe), admitting each subdomain on the basis of a small sample. This works because relevance has a sharp boundary at the subdomain level: in mathematics, a page is 21x more likely to be relevant than one on a sibling subdomain. With the FineMath classifier as the probe, 21.9% of crawled pages are high-quality math content, 70x the 0.31% rate from filtering a comparable web sample, so the crawl wastes far less effort. But the payoff is not just efficiency: 63.2% of these pages are missing from CommonCrawl altogether, yet just as useful for training. Continued pretraining of Llama-3.2-3B on 1.9B Data Scout tokens matches FineMath corpus on GSM8k. Because the probe is the only domain-specific component, Data Scout can in principle apply to any domain with such a classifier.

cs.LG

Crowded Field Photometry with Rubin: Exploring 47 Tucanae with Data Preview 1

We analyze imaging from Data Preview 1 of the Vera C. Rubin Observatory to explore the performance of early LSST pipelines in the 47 Tucanae field. The coadd-\texttt{object} catalog demonstrates the depth and precision possible with Rubin, recovering well-defined color magnitude diagrams for 47 Tuc Small Magellanic Cloud. Unfortunately, the existing pipelines fail to recover sources within $\sim$28 pc of the cluster center, due to the extreme source density. Using Rubin's forced photometry on stars identified via Difference Imaging, we can recover sources down to $\sim$14 pc from the cluster center, and find 14744 potential cluster members with this extended dataset. While this forced photometry has significant systematics, our analysis showcases the potential for detailed structural studies of crowded fields with the Rubin Observatory.

astro-ph.GA

A Resourceful Reframing of Behavior Trees

Designers of autonomous agents, whether in physical or virtual environments, need to express nondeterminisim, failure, and parallelism in behaviors, as well as accounting for synchronous coordination between agents. Behavior Trees are a semi-formalism deployed widely for this purpose in the games industry, but with challenges to scalability, reasoning, and reuse of common sub-behaviors. We present an alternative formulation of behavior trees through a language design perspective, giving a formal operational semantics, type system, and corresponding implementation. We express specifications for atomic behaviors as linear logic formulas describing how they transform the environment, and our type system uses linear sequent calculus to derive a compositional type assignment to behavior tree expressions. These types expose the conditions required for behaviors to succeed and allow abstraction over parameters to behaviors, enabling the development of behavior "building blocks" amenable to compositional reasoning and reuse.

cs.PL