{"schema_version":"onlylabs.public_analysis_evidence.v1","title":"Google (DeepMind / Gemini) analysis evidence pack","description":"Public onlylabs evidence pack for cited agent analysis: captured pages, ranked public signals, and stored web-search provenance used by the background analysis workflow.","url":"https://onlylabs.fyi/analysis/google-deepmind","json_url":"https://onlylabs.fyi/analysis/google-deepmind/evidence.json","generated_at":"2026-06-11T18:05:41.690Z","org":{"slug":"google-deepmind","name":"Google (DeepMind / Gemini)","category":"frontier-lab","category_label":"Frontier lab","dossier_url":"https://onlylabs.fyi/labs/google-deepmind"},"analysis":{"url":"https://onlylabs.fyi/analysis/google-deepmind","json_url":"https://onlylabs.fyi/analysis/google-deepmind/analysis.json","generated_at":"2026-06-08T15:59:08.768+00:00"},"workflow":{"version":"synthesize-analyses","provider":null,"model":null,"agent":null,"public_pack_mode":"local-pages-and-events","live_web_fetches":false,"note":"Public evidence exports do not trigger live Exa calls; stored Exa provenance is included when analysis metadata contains it."},"stats":{"pages":28,"events":140,"web":0,"evidence":88,"signal_desks":{"hiring":12,"forks":0,"releases":32,"talking":13,"repos":3},"data_radar_lanes":{"data":1,"evals":1,"infrastructure":2,"safety":1,"product":0},"data_radar_matches":5,"stored_analysis_evidence":null,"stored_analysis_web":null,"stored_analysis_signal_desks":null,"stored_analysis_data_radar_lanes":null,"stored_analysis_data_radar_matches":null},"stored_web_provenance":null,"evidence":[{"ref":"P1","kind":"page","title":"google-deepmind/llms_can_learn_rules repository metadata","date":"2026-06-11T04:00:40.745622+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/llms_can_learn_rules","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/llms_can_learn_rules\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 63\n\nForks: 12\n\nOpen issues: 1\n\nCreated: 2024-12-06T01:51:35Z\n\nPushed: 2024-12-06T01:54:21Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# llms_can_learn_rules\n\n![HtT prompting](asset/htt.svg)\n\nA major reason for failure of chain-of-thought prompting is its tendency to\nhallucinate rules in multi-step reasoning. Our work, Hypotheses-to-Theories (HtT),\nprompts LLMs to induce rules from training samples, build a rule library, and\napply it to solve reasoning problems.\n\nHtT can be viewed as a new paradigm of learning with LLMs. Instead of learning\nmodel parameters, HtT learns a rule library that transfers across different models\nand textual forms. It can be applied to black-box LLMs such as GPT-4 and Gemini-Pro.\n\n## Installation\n\nFirst, let's create a virtual environment:\n\nBelow we will use conda environment. If you haven't heard about conda, you can install the miniconda following https://docs.conda.io/projects/miniconda/en/latest/\n\n```bash\nconda create -n htt python=3.10\nconda activate htt\n```\n\nInstall dependencies through pip.\n\n```bash\npip install -r requirements.txt\n```\n\nIf it is your first time using nltk, please also download the necessary pieces:\n\n```python\n>>> import nltk\n>>> nltk.download('punkt')\n>>> nltk.download('punkt_tab')\n```\n\nExport your API keys as an environment variable.\n\n```bash\nexport OPENAI_API_KEY=your-open-ai-key\nexport GOOGLE_API_KEY=your-google-key\n```\n\n## 🛠️ Usage ##\n\n### Dataset ###\n\nPlease navigate to `artifacts/dataset` and run the `download.sh` script to prepare the datasets.\n\nUse `source/train.py` for training HtT and `source/test.py` for testing HtT and\nother methods. All the experiments will be logged in `experiment/`.\n\n### Training (Induction Stage) ###\n\nBelow are the command lines for training HtT. Note if you train HtT with GPT-4,\nit will incur substantial time (2-21 hours) and cost ($20-270 USD) per dataset.\nIf you only want to reproduce the results of HtT, we highly recommend you to use\nthe provided checkpoints of rule libraries.\n\n```bash\npython source/train.py -c artifacts/config/clutrr/symbolic/gpt-4_5-shot_cot_htt.yaml --num-iterat"},{"ref":"P2","kind":"page","title":"google-deepmind/cube repository metadata","date":"2026-06-11T04:00:39.463905+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/cube","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/cube\n\nDescription: Code for CUBE extraction and cultural diversity metric introduced in \"Beyond Aesthetics: Cultural Competence in Text-to-Image Models\"\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 7\n\nForks: 0\n\nOpen issues: 0\n\nCreated: 2025-01-18T18:12:27Z\n\nPushed: 2025-01-20T11:45:11Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n## Code for [Beyond Aesthetics: Cultural Competence in Text-to-Image Models](https://arxiv.org/abs/2407.06863) published in NeurIPS 2024 (Track on Datasets and Benchmarks)\n\nCurrent T2I benchmarks primarily focus on faithfulness, aesthetics, and realism of generated images, overlooking the critical dimension of cultural competence. In this work, we introduce a framework to evaluate cultural competence of T2I models along two crucial dimensions: cultural awareness and cultural diversity, and present a scalable approach using a combination of structured knowledge base (KB) and large language models (LLMs) to build a large dataset of cultural artifacts to enable this evaluation. In particular, we apply this approach to build CUBE (CUltural BEnchmark for Text-to-Image models), a first-of-its-kind benchmark to evaluate cultural competence of T2I models. CUBE covers cultural artifacts associated with 8 countries across different geo-cultural regions and along 3 concepts: cuisine, landmarks, and art. We also introduce cultural diversity as a novel T2I evaluation component, leveraging quality-weighted Vendi score. In this repository, we release the 1) code for CUBE extraction from WikiData, 2) a notebook [![Open In\nColab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/google-deepmind/cube/blob/master/cultural_diversity.ipynb) with the implementation of the cultural diversity evaluation aspect for T2I and 3) CUBE dataset containing CUBE CSpace and CUBE-1K prompts.\n\n## CUBE Extraction\n\n### Setup\n\n#### Fetching latest KB dump (redoing this will refresh latest Wikidata dump)\n\n```\npython3.8 -m venv wikidata\nsource wikidata/bin/activate\npip3 install https://ringgaard.com/data/dist/sling-3.0.0-py3-none-linux_x86_64.whl\npip install urllib3\npip install absl-py\npip install "},{"ref":"P3","kind":"page","title":"google-deepmind/proactive_t2i_agents repository metadata","date":"2026-06-11T04:00:39.353361+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/proactive_t2i_agents","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/proactive_t2i_agents\n\nDescription: Code release for the paper, \"Proactive Agents for Text-to-Image Generation under Uncertainty\"\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 71\n\nForks: 7\n\nOpen issues: 1\n\nCreated: 2024-12-07T05:35:11Z\n\nPushed: 2025-07-28T19:01:11Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# [Proactive Agents for Multi-Turn Text-to-Image Generation under Uncertainty](https://arxiv.org/abs/2412.06771)\n\nUser prompts for generative AI models are often underspecified or open-ended,\nwhich may lead to sub-optimal responses. This prompt underspecification problem\nis particularly evident in text-to-image (T2I) generation, where users commonly\nstruggle to articulate their precise intent. This disconnect between the user’s vision\nand the model’s interpretation often forces users to painstakingly and repeatedly\nrefine their prompts. To address this, we propose a design for proactive T2I agents\nequipped with an interface to actively ask clarification questions when uncertain,\nand present their understanding of user intent as an interpretable belief graph\nthat a user can edit. We build simple prototypes for such agents and verify their\neffectiveness through both human studies and automated evaluation. We observed\nthat at least 90% of human subjects found these agents and their belief graphs\nhelpful for their T2I workflow. Moreover, we use a scalable automated evaluation\napproach using two agents, one with a ground truth image and the other tries to\nask as few questions as possible to align with the ground truth. On DesignBench, a\nbenchmark we created for artists and designers, the COCO dataset (Lin et al., 2014)\nand ImageInWords ([Garg et al., 2024](https://arxiv.org/abs/2405.02793)), we observed that these T2I agents were able\nto ask informative questions and elicit crucial information to achieve successful\nalignment with at least 2 times higher VQAScore ([Lin et al., 2024](https://arxiv.org/abs/2404.01291)) than the standard\nsingle-turn T2I generation. Play with our agent demo [![Open In\nColab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/google-deepmind/proactive_t2i_age"},{"ref":"P4","kind":"page","title":"google-deepmind/physics-IQ-benchmark repository metadata","date":"2026-06-11T04:00:39.13066+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/physics-IQ-benchmark","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/physics-IQ-benchmark\n\nDescription: Benchmarking physical understanding in generative video models\n\nLanguage: Python\n\nLicense: NOASSERTION\n\nStars: 302\n\nForks: 33\n\nOpen issues: 3\n\nCreated: 2024-12-14T05:07:19Z\n\nPushed: 2026-05-27T13:13:57Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n<p align=\"center\">\n<img src=\"assets/duckie.png\" width=\"20%\" alt=\"logo\">\n</p>\n\n[Step A: Generating Videos](#step-a-generating-videos-for-physics-iq-test-cases-based-on-video-model) | [Step B: Evaluating Generated Videos](#step-b-evaluating-generated-videos-on-physics-iq-to-generate-benchmark-scores) | [Leaderboard](#leaderboard) | [Citation](#citation) | [License](#license-and-disclaimer)\n\n# Physics-IQ: Benchmarking physical understanding in generative video models\n\nPhysics-IQ is a high-quality, realistic, and comprehensive benchmark dataset for evaluating physical understanding in generative video models.\n\nProject website: [physics-iq.github.io](https://physics-iq.github.io/)\n\n### Key Features:\n- **Real-world videos**: All videos are captured with high-quality cameras, not rendered.\n- **Diverse scenarios**: Covers a wide range of physical phenomena, including collisions, fluid dynamics, gravity, material properties, light, shadows, magnetism, and more.\n- **Multiple perspectives**: Each scenario is filmed from 3 different angles.\n- **Variations**: Each scenario is recorded twice to capture natural physical variations.\n- **High resolution and frame rate**: Videos are recorded at 3840 × 2160 resolution and 30 frames per second.\n\n<p align=\"center\">\n<img src=\"assets/teaser1.gif\" width=\"23%\" alt=\"Teaser 1\">\n<img src=\"assets/teaser2.gif\" width=\"23%\" alt=\"Teaser 2\">\n<img src=\"assets/teaser3.gif\" width=\"23%\" alt=\"Teaser 3\">\n<img src=\"assets/teaser4.gif\" width=\"23%\" alt=\"Teaser 4\">\n<img src=\"assets/teaser5.gif\" width=\"23%\" alt=\"Teaser 5\">\n<img src=\"assets/teaser6.gif\" width=\"23%\" alt=\"Teaser 6\">\n<img src=\"assets/teaser7.gif\" width=\"23%\" alt=\"Teaser 7\">\n<img src=\"assets/teaser8.gif\" width=\"23%\" alt=\"Teaser 8\">\n</p>\n\n---\n\n## Leaderboard\nThe best possible score on Physics-IQ is 100.0%, this score would be achieved by physically realistic videos that differ only in physi"},{"ref":"P5","kind":"page","title":"google-deepmind/lm_act repository metadata","date":"2026-06-11T04:00:39.076311+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/lm_act","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/lm_act\n\nDescription: LMAct: A Benchmark for In-Context Imitation Learning with Long Multimodal Demonstrations\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 31\n\nForks: 6\n\nOpen issues: 0\n\nCreated: 2024-12-06T22:32:54Z\n\nPushed: 2025-05-21T12:59:14Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# LMAct: A Benchmark for In-Context Imitation Learning with Long Multimodal Demonstrations\n\n<p align=\"center\">\n<img src=\"https://raw.githubusercontent.com/google-deepmind/lm_act/master/overview.svg\" alt=\"Overview figure\"/>\n</p>\n\nThis repository provides an implementation of our ICML 2025 paper [LMAct: A Benchmark for In-Context Imitation Learning with Long Multimodal Demonstrations](https://arxiv.org/abs/2412.01441).\n\n> In this paper, we present a benchmark to pressure-test today’s frontier\nmodels’ multimodal decision-making capabilities in the very long-context regime\n(up to one million tokens) and investigate whether these models can learn from\nlarge numbers of expert demonstrations in their context.\nWe evaluate the performance of Claude 3.5 Sonnet, Gemini 1.5 Flash, Gemini 1.5\nPro, Gemini 2.0 Flash Experimental, GPT-4o, o1-mini, o1-preview, and o1 as\npolicies across a battery of simple interactive decision-making tasks: playing\ntic-tac-toe, chess, and Atari, navigating grid worlds, solving crosswords, and\ncontrolling a simulated cheetah.\nWe study increasing amounts of expert demonstrations in the context — from no\ndemonstrations to 512 full episodes.\nAcross our tasks, models rarely manage to fully reach expert performance, and\noften, presenting more demonstrations has little effect.\nSome models steadily improve with more demonstrations on a few tasks.\nWe investigate the effect of encoding observations as text or images and the\nimpact of chain-of-thought prompting.\nTo help quantify the impact of other approaches and future innovations, we open\nsource our benchmark that covers the zero-, few-, and many-shot regimes in a\nunified evaluation.\n\n## Contents\n\n```\n.\n|\n├── crafter - Crafter (needs to be downloaded)\n|\n├── data - Expert demonstrations (need to be downloaded)\n|\n├── src\n| ├── agents\n| │   ├── chess.py - Stockfish agent (chess expert)\n| │   ├─"},{"ref":"P6","kind":"page","title":"google-deepmind/md4 repository metadata","date":"2026-06-11T04:00:38.999218+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/md4","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/md4\n\nDescription: Official Jax Implementation of MD4 Masked Diffusion Models\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 160\n\nForks: 17\n\nOpen issues: 2\n\nCreated: 2024-12-09T18:34:11Z\n\nPushed: 2025-02-27T17:10:20Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# MD4: Simplified and Generalized Masked Diffusion for Discrete Data\n\n<img src=\"imgs/imagenet64.gif\" width=\"600\" />\n\n## Installation\n\n### Create Python environment\n\nplease use `requirements_gpu.txt` if your accelerator is GPUs, use\n`requirements_tpu`.txt when using Google Cloud TPUs.\n\n```\npython -m venv md4_venv\nsource md4_venv/bin/activate\npip install -r requirements_[gpu/tpu].txt\nexport PYTHONPATH=\"$PYTHONPATH:~/path/to/md4\"\n```\n\n## Usage\n\nprepare openwebtext for training (i.e., tokenize and pack examples)\n\n```\nmkdir data_dir\npython prepare_openwebtext_data.py\n```\n\ntrain a MD4-S model over text data (OpenWebText, Fineweb-EDU).\n\n```\npython md4/main.py --config=md4/configs/md4/openwebtext.py --sharded=false --workdir=./expt\n```\n\nalternatively, you can train a MD4-S model over image data (CIFAR-10,\nImageNet-64).\n\n```\npython md4/main.py --config=md4/configs/md4/cifar10.py --sharded=false --workdir=./expt\n```\n\n### choose batch size\n\nBatch size depends on your compute resource. For training a MD4-S model with\nsequence length 1024, eight `A100` GPUs can support a maximum batch size of\n`128`. If running on TPUs, eight `v5litepod` chips can support a maximum batch\nsize of `32`.\n\n## Citing this work\n\nAdd citation details here, usually a pastable BibTeX snippet:\n\n```\n@inproceedings{shi2024simplified,\ntitle={Simplified and Generalized Masked Diffusion for Discrete Data},\nauthor={Shi, Jiaxin and Han, Kehang and Wang, Zhe and Doucet, Arnaud and Titsias, Michalis K.},\nbooktitle={Advances in Neural Information Processing Systems},\nyear={2024}\n}\n```\n\n## License and disclaimer\n\nCopyright 2024 DeepMind Technologies Limited\n\nAll software is licensed under the Apache License, Version 2.0 (Apache 2.0);\nyou may not use this file except in compliance with the Apache 2.0 license.\nYou may obtain a copy of the Apache 2.0 license at:\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applica"},{"ref":"P7","kind":"page","title":"google-deepmind/librispeech-long repository metadata","date":"2026-06-11T04:00:38.256316+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/librispeech-long","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/librispeech-long\n\nDescription: LibriSpeech-Long is a benchmark dataset for long-form speech generation and processing. Released as part of \"Long-Form Speech Generation with Spoken Language Models\" (arXiv 2024).\n\nLicense: CC-BY-4.0\n\nStars: 98\n\nForks: 4\n\nOpen issues: 1\n\nCreated: 2024-12-21T00:50:08Z\n\nPushed: 2024-12-28T18:42:46Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# LibriSpeech-Long\n\n**[Download audio, ground-truth transcripts, and per-file durations for all splits (3GB).](https://storage.googleapis.com/librispeech_long/v0_1.tar.gz)** \n\nThis is a benchmark dataset for evaluating long-form variants of speech processing tasks such as speech continuation, speech recognition, and text-to-speech synthesis. It is derived from the [LibriSpeech](https://www.openslr.org/12) dev and test sets, whose utterances are reprocessed into contiguous examples of up to 4 minutes in length (in the manner of [LibriLight's `cut_by_vad.py` script](https://github.com/facebookresearch/libri-light/blob/main/data_preparation/cut_by_vad.py)).\n\n**For more details:** see \"Long-Form Speech Generation with Spoken Language Models\" ([paper](https://arxiv.org/abs/2412.18603), [website](https://google.github.io/tacotron/publications/speechssm/)).\n\n*This is part of a preprint that is work-in-progress; dataset may be subject to change.*\n\n## Citation\n\nWhen using this dataset, please cite the associated [paper](https://arxiv.org/abs/2412.18603):\n\n```\n@article{park2024long,\nauthor = {Se Jin Park and\nJulian Salazar and\nAren Jansen and\nKeisuke Kinoshita and\nYong Man Ro and\nR. J. Skerry{-}Ryan},\ntitle = {Long-Form Speech Generation with Spoken Language Models},\njournal = {CoRR},\nvolume = {abs/2412.18603},\nyear = {2024}\n}\n```\n\n## License and disclaimer\n\nCopyright 2024 DeepMind Technologies Limited\n\nThe software and materials, except for the underlying LibriSpeech data, are licensed under the Creative Commons Attribution 4.0 International License (CC-BY). You may obtain a copy of the CC-BY license at: https://creativecommons.org/licenses/by/4.0/legalcode, or in the LICENSE file.\n\nThe materials contain adapted material from the LibriSpeech dataset. LibriSpeech is also licens"},{"ref":"P8","kind":"page","title":"google-deepmind/inli repository metadata","date":"2026-06-11T04:00:38.164218+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/inli","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/inli\n\nLicense: CC-BY-SA-4.0\n\nStars: 5\n\nForks: 1\n\nOpen issues: 0\n\nCreated: 2025-01-09T22:38:48Z\n\nPushed: 2025-01-23T04:16:58Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# Implied NLI\n\nCode & resources for the paper [Entailed Between the Lines: Incorporating Implication into NLI](https://arxiv.org/abs/2501.07719)\n\n### Dataset Overview\n**Implied NLI**, or **INLI** is a corpus of 10k premises that mirror real-world communication and 40k hypotheses that are implied, explicit, neutral, and contradictory.\n\n* Number of examples: 40,000\n* Number of labels: 4 (implied entailment, explicit entailment, neutral, contradictory)\n\nOn top of the raw data, we also include all prompts used to generate INLI, all human annotations described in the paper, and the outputs of the LLM experiments described in the paper.\n\nFor more details on the design and content of the dataset, please see [our paper](https://arxiv.org/abs/2501.07719)\n\n### Data Format\nOur raw dataset is split into three csv files. \n\n* Size of training dataset: 32,000\n* Size of test dataset: 4,000\n* Size of validation dataset: 4,000\n\nIn each of these files, one row represents a premise and four corresponding hypotheses. These files include the following columns:\n\n* `dataset`: The original dataset containing the conversation or social norm used to create the premise\n* `premise`: A premise\n* `implied_entailment`: A hypothesis implicitly entailed in the premise\n* `explicit_entailment`: A hypothesis explicitly entailed in the premise\n* `neutral`: A hypothesis neither entailed nor contradicted by the premise\n* `contradiction`: A hypothesis contradicted by the premise\n\n## Citation\n```\n@misc{havaldar2025entailedlinesincorporatingimplication,\ntitle={Entailed Between the Lines: Incorporating Implication into NLI}, \nauthor={Shreya Havaldar and Hamidreza Alvari and John Palowitch and Mohammad Javad Hosseini and Senaka Buthpitiya and Alex Fabrikant},\nyear={2025},\neprint={2501.07719},\narchivePrefix={arXiv},\nprimaryClass={cs.CL},\nurl={https://arxiv.org/abs/2501.07719}, \n}\n```\n\n## Contact\n[Shreya Havaldar](https://shreyahavaldar.com/)\n\n## Disclaimer\nINLI may contain premises and hypotheses involving sensit"},{"ref":"P9","kind":"page","title":"google-deepmind/sustainable_behavior repository metadata","date":"2026-06-11T04:00:38.124814+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/sustainable_behavior","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/sustainable_behavior\n\nLanguage: Jupyter Notebook\n\nLicense: Apache-2.0\n\nStars: 15\n\nForks: 4\n\nOpen issues: 0\n\nCreated: 2024-12-31T03:57:50Z\n\nPushed: 2025-01-23T20:16:28Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# sustainable_behavior\n\nThis repository contains the code accompanying the publication\n**Deep reinforcement learning can promote sustainable human\nbehaviour in a common-pool resource problem**,\npublished in the Nature Communications, 2025.\n\n## Usage\n\n### Figures\n\nYou can load the dataset and the code used to produce the figures in the\nresearch article using Colab:\n[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/google-deepmind/sustainable_behavior/blob/main/notebooks/sustainable_behavior.ipynb)\n\nClone this repository with\n\n```sh\ngit clone https://github.com/google-deepmind/sustainable_behavior.git\n```\n\n## Citing this work\n\n```latex\n@article{kosterpislar2025sustainable,\ntitle={Deep reinforcement learning can promote sustainable human\nbehaviour in a common-pool resource problem},\nauthor={Koster, R AND\nPislar, M AND\nTacchetti, A AND\nBalaguer, J AND\nLiu, L AND\nElie, R AND\nHauser, OP AND\nTuyls, K AND\nBotvinick, M AND\nSummerfield, C},\njournal={Nature Communications},\nvolume={XXX},\nnumber={XX},\npages={X},\ndoi={XXX},\nURL={XXX},\npublisher={Nature Publishing Group UK London}\nyear={2025},\n}\n```\n\n## License and disclaimer\n\nCopyright 2024 DeepMind Technologies Limited\n\nAll software is licensed under the Apache License, Version 2.0 (Apache 2.0);\nyou may not use this file except in compliance with the Apache 2.0 license.\nYou may obtain a copy of the Apache 2.0 license at:\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nAll other materials are licensed under the Creative Commons Attribution 4.0\nInternational License (CC-BY). You may obtain a copy of the CC-BY license at:\nhttps://creativecommons.org/licenses/by/4.0/legalcode\n\nUnless required by applicable law or agreed to in writing, all software and\nmaterials distributed here under the Apache 2.0 or CC-BY licenses are\ndistributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\neither express or implied. See"},{"ref":"P10","kind":"page","title":"google-deepmind/questbench repository metadata","date":"2026-06-11T04:00:37.736155+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/questbench","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/questbench\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 40\n\nForks: 6\n\nOpen issues: 1\n\nCreated: 2025-01-10T20:15:10Z\n\nPushed: 2025-05-15T18:10:02Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# [QuestBench: Can LLMs ask the right question to acquire information in reasoning tasks?](https://arxiv.org/abs/2503.22674)\n\nRecently, a large amount of work has focused on improving large language models' (LLMs') performance on reasoning benchmarks such as math and logic. However, past work has largely assumed that tasks are well-defined. In the real world, queries to LLMs are often underspecified, only solvable through acquiring missing information. We formalize this as a constraint satisfaction problem (CSP) with missing variable assignments. Using a special case of this formalism where only one necessary variable assignment is missing, we can rigorously evaluate an LLM's ability to identify the minimal necessary question to ask and quantify axes of difficulty levels for each problem. We present QuestBench, a set of underspecified reasoning tasks solvable by asking at most one question, which includes: (1) Logic-Q: Logical reasoning tasks with one missing proposition, (2) Planning-Q: PDDL planning problems with initial states that are partially-observed, (3) GSM-Q: Human-annotated grade school math problems with one missing variable assignment, and (4) GSME-Q: a version of GSM-Q where word problems are translated into equations by human annotators. The LLM is tasked with selecting the correct clarification question(s) from a list of options. While state-of-the-art models excel at GSM-Q and GSME-Q, their accuracy is only 40-50% on Logic-Q and Planning-Q. Analysis demonstrates that the ability to solve well-specified reasoning problems may not be sufficient for success on our benchmark: models have difficulty identifying the right question to ask, even when they can solve the fully specified version of the problem. Furthermore, in the Planning-Q domain, LLMs tend not to hedge, even when explicitly presented with the option to predict ``not sure.'' This highlights the need for deeper investigation into models' information acquisition capabiliti"},{"ref":"P11","kind":"page","title":"google-deepmind/bbeh repository metadata","date":"2026-06-11T04:00:37.326762+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/bbeh","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/bbeh\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 121\n\nForks: 9\n\nOpen issues: 5\n\nCreated: 2025-02-25T19:47:19Z\n\nPushed: 2025-05-07T14:25:47Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n<!-- mdlint off(SNIPPET_INVALID_LANGUAGE) -->\n<!-- mdlint off(LINE_OVER_80) -->\n\n# BIG-Bench Extra Hard\n\n![BBEH_LOGO](images/bbeh_logo.png)\n\nLarge language models (LLMs) are increasingly deployed in everyday applications, demanding robust general reasoning capabilities and diverse reasoning skillset. However, current LLM reasoning benchmarks predominantly focus on mathematical and coding abilities, leaving a gap in evaluating broader reasoning proficiencies. One particular exception is the BIG-Bench dataset, which has served as a crucial benchmark for evaluating the general reasoning capabilities of LLMs, thanks to its diverse set of challenging tasks that allowed for a comprehensive assessment of general reasoning across various skills within a unified framework. However, recent advances in LLMs have led to saturation on BIG-Bench, and its harder version BIG-Bench Hard (BBH). State-of-the-art models achieve near-perfect scores on many tasks in BBH, thus diminishing its utility. To address this limitation, we introduce BIG-Bench Extra Hard (BBEH), a new benchmark designed to push the boundaries of LLM reasoning evaluation. BBEH replaces each task in BBH with a novel task that probes a similar reasoning capability but exhibits significantly increased difficulty.\n\n## Leaderboard\n\nBBEH has a full version with 4520 examples, and a mini version with 460 examples.\n\nClick [here](leaderboard.md) to see the leaderboard. Feel free to also contribute results for models not already on the leaderboard.\n\n## Evaluation\n\nFor the evaluation code, see the `evaluate.py` file under the `bbeh` folder.\n\n## Citing this work\n\nIf you use this dataset, we ask that you cite the following paper:\n\n```latex\n@article{bbeh,\ntitle={BIG-Bench Extra Hard},\nauthor={Mehran Kazemi, Bahare Fatemi, Hritik Bansal, John Palowitch, Chrysovalantis Anastasiou, Sanket Vaibhav Mehta, Lalit K. Jain, Virginia Aglietti, Disha Jindal, Peter Chen, Nishanth Dikkala, Gladys Tyen, Xin Liu, Uri Shalit, Si"},{"ref":"P12","kind":"page","title":"google-deepmind/recoglab repository metadata","date":"2026-06-11T04:00:37.124954+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/recoglab","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/recoglab\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 13\n\nForks: 2\n\nOpen issues: 8\n\nCreated: 2025-02-11T18:05:23Z\n\nPushed: 2026-05-19T18:32:30Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n<!-- mdlint off(LINE_OVER_80) -->\n<!-- mdlint off(SNIPPET_INVALID_LANGUAGE) -->\n# ReCogLab\n[[Paper]](https://openreview.net/pdf?id=yORSk4Ycsa) | [[Colab]](https://colab.sandbox.google.com/github/google-deepmind/recoglab/blob/main/colab/generate_dataset_v1.ipynb)\n\nThis codebase accompanies the paper:\n\n**ReCogLab: A Framework\nTesting Relational Reasoning & Cognitive Hypotheses on LLM** \\\nAndrew Liu, Henry Prior, Gargi Balasubramaniam, Rivka Moroshko, Amir Zait, Ilia Labzovsky, Danny Karmon, Ishita Dasgupta, Kim Stachenfeld, Kenneth Marino\n\nFor correspondence about this project, please contact {ahliu,hprior,gargisb,kmarino}@google.com\n\n## About\nReCogLab is a generative framework designed to allow researchers in cognitive science and NLP to\nquickly prototype language model experiments on a wide variety of relational\nreasoning. Our framework automatically generates relational reasoning word\nproblems that can be used to probe for cognitive effects and diagnosing reasoning capabilities in Large Language\nModels (LLMs). This includes generating more challenging examples along multiple\ndimensions such as the number of entities, length of reasoning, use of filler\nand flavor text.\n\nSeveral transitive inference capabilities of tasks that we can generate configurations for include:\n\n* **Basic Transitive Inference**: Generate problems that evaluate basic transitive inference reasoning skills.\n```\n# Question\nDog is bigger than Apple.\nDog is smaller than Fire truck.\nIs apple smaller than Fire truck?\n# Answer\nNo\n```\n* **Graph Traversal**: Generate problems that evaluate multi-hop reasoning skills.\n```\n# Question\nAnna is friends with Bob.\nBob is friends with Carl.\nBob is friends with Dana.\nIf a messsage can be exchanged between people who are friends, if Dana wants to pass a message to Anna, what's the exact path of friends that will receive the message?\n# Answer\n['Dana', 'Bob', 'Anna']\n```\n* **Consistency Detection**: Generate problems that evaluate detecting logic"},{"ref":"P13","kind":"page","title":"google-deepmind/simulation_streams repository metadata","date":"2026-06-11T04:00:37.114032+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/simulation_streams","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/simulation_streams\n\nDescription: Simulation Streams is a programming paradigm designed to efficiently control and leverage Large Language Models (LLMs) for complex, dynamic simulations and agentic workflows.\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 26\n\nForks: 6\n\nOpen issues: 0\n\nCreated: 2025-01-29T10:06:33Z\n\nPushed: 2025-03-13T10:25:08Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# simulation_streams\n\n[Simulation Streams Tech Report](https://arxiv.org/abs/2501.18668)\n\nA development platform for simulations with large language models.\nIt comes with an Entity-Component-Systems approach and graphical editor.\n\nThe platform is a flask app most easily used locally in a venv,\nwhich can be started with source setup.sh (on linux). This sets up all\ndependencies and ends with instructions for the different commands for\nlaunching the editor or command line running. The editor is displayed in a\nbrowser.\n\nA library of simulation configs can be found under configs,\nincluding a market economy, a social simulation and 6 tasks from\nthe classical reinforcement learning literature.\n\n## Usage examples\n\n1 **source setup.sh**\n\n2a **To create the local server that runs the web app:**\n\n```\npython app.py configs/social_catch_game.py --metrics=configs/metrics_social_catch_game.txt --web --model='gemini-2.0-flash-exp' --api_key='your_key'\n```\n\n2b **To run a number of steps from the command line and return the metrics:**\n\n```\npython app.py configs/social_catch_game.py --metrics=configs/metrics_social_catch_game.txt --steps=10 --model='gemini-2.0-flash-exp' --api_key='your_key'\n```\n\n2c **To open the editor with an empty config:**\n\n```\npython app.py --web --model='gemini-2.0-flash-exp' --api_key='your_key'\n```\n\n2d **To use the generic code_world config with task-specific functions:**\n\n```\npython app.py configs/code_world.py --web --model='gemini-2.0-pro-exp' --api_key='your_key' --task_name='maze'\n```\n\nThis example demonstrates using the generic code_world configuration to run\na maze task. The task_name parameter imports task-specific functions from\nthe corresponding Python module, allowing you to implement custom\nenvironments in pure Python while leveraging"},{"ref":"P14","kind":"page","title":"google-deepmind/personality_in_llms repository metadata","date":"2026-06-11T04:00:36.596551+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/personality_in_llms","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/personality_in_llms\n\nLanguage: Jupyter Notebook\n\nLicense: Apache-2.0\n\nStars: 46\n\nForks: 12\n\nOpen issues: 3\n\nCreated: 2025-01-30T01:54:27Z\n\nPushed: 2026-06-10T17:17:09Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# Personality Traits in Large Language Models\n\nThis project contains all the code necessary to verify the results of the paper\n> Serapio-García, G., Safdari, M., Crepy, C., Sun, L., Fitz, S., Romero, P.,\n> Abdulhai, M., Faust, A., & Matarić, M. \"Personality Traits in Large Language\n> Models.\" ArXiv.org. https://doi.org/10.48550/arXiv.2307.00184\n\n## Getting Started / Installation\n\nMost of the code needed to reproduce the results of the paper are shared here in\nthe form of Jupyter notebooks. The main notebooks and requirements for running\nthe paper's psychometric and statistical analyses are located in `analysis`.\n\nInference scripts and requirements for collecting psychometric test and\ndownstream task data from HuggingFace and OpenAI models are located in\n`inference_scripts`.\n\nThe main custom dependency of this project is the PsyBORGS psychometric test\nadministration framework\n(https://github.com/google-research/google-research/tree/master/psyborgs). This\nrepo comes with its own version of the PsyBORGS code, but if a more up-to-date\nversion is needed, it can be downloaded from the link above. PsyBORGS-related\npackage dependencies are specified in the `requirements.txt` file in its root\ndirectory. For any other dependencies, they are `pip install`ed in the notebooks\nthemselves.\n\n## Data\n\nAll the test admininistration sessions - which are input for most of the\nexperiments in the paper - are stored in the `admin_sessions/` directory. Some\nof the data used for visualization is stored in the `figures_data/` directory.\nAll other data are linked in the main paper and can be found on Google's\nopen source GCP repository:\n(https://storage.googleapis.com/personality_in_llms/index.html).\n\n## Citing this work\n\nPlease cite the Arxiv paper referenced above. The Bibtex is\n> @misc{serapiosafdari2023personality,\n> title={Personality Traits in Large Language Models},\n> author={Greg Serapio-García and Mustafa Safdari and Clément Crepy and\nLuning S"},{"ref":"P15","kind":"page","title":"google-deepmind/active_ptw repository metadata","date":"2026-06-11T04:00:36.526092+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/active_ptw","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/active_ptw\n\nLanguage: C++\n\nLicense: Apache-2.0\n\nStars: 2\n\nForks: 0\n\nOpen issues: 0\n\nCreated: 2025-01-31T11:05:16Z\n\nPushed: 2025-01-31T12:19:55Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# Partition Tree Weighting for Non-Stationary Stochastic Bandits: Source Code\n\n## Overview:\n\nThis is an implementation of the Partition Tree Weighting based algorithms introduced in [Partition Tree Weighting for Non-Stationary Stochastic Bandits](http://www.arxiv.org/fix_me), as well as some implementations of other popular algorithms designed for the non-stationary Bernoulli stochastic bandit setting, including [Sliding Window UCB][1] and [MALG][2].\n\n## Installation\n\nThe software provided compiles to a stand-alone C++ executable, and can be compiled using CMake to generate a build target for the platform of choice. The software has been compiled on recent versions (circa 2025) of gcc/clang/msvc.\n\nMake sure Git and CMake is installed. Then from the command line run:\n\n```\ngit clone https://github.com/google-deepmind/active_ptw\ncd active_ptw\nmkdir build\ncd build\ncmake ..\nmake\n```\n\nwhich will produce an executable in the build directory.\n\n## Usage\n\n```\nebcr [Arg1=Value1] [Arg2=Value2]...\n```\n\n### Arguments:\n\n- _Arms=N_, _N_ is an integer specifying the number of arms in the bandit problem\n- _Mode=[text/plot]_\n- _Agent=[ActivePTW/UCB/TS/MALG/KLUCB/SWUCB]_ : choice of bandit algorithm\n- _CptSchedule=[Geometric/Nasty]_\n- _Trials=N_, _N_ specifies the maximum number of arm pulls\n- _EnvSeed=N_, _N_ an integer, which determines the pseudo random behaviour of the environment\n- _AgentSeed=N_, _N_ an integer, which determines the pseudo random behaviour of the agent (if applicable)\n- _PlotRepeats=N_, when in plot mode, how many repeated runs are performed to estimate performance\n- _CptRate=F_, _F_ in _[0,1]_, determines the geometric spacing of changepoint intervals\n- _SWUCBWindow=N_, _N_ an integer, determines the size of the window used for sliding window UCB\n\nThere are two main modes of operation, text and plot.\nText mode runs a given configuration and outputs a textual summary to stdout.\nIn plot mode, the output to stdout is Python3 source code which can be"},{"ref":"P16","kind":"page","title":"google-deepmind/actionengine-ts repository metadata","date":"2026-06-11T04:00:35.989618+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/actionengine-ts","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/actionengine-ts\n\nLanguage: TypeScript\n\nLicense: Apache-2.0\n\nStars: 7\n\nForks: 2\n\nOpen issues: 0\n\nCreated: 2025-01-31T15:41:19Z\n\nPushed: 2025-05-15T21:14:23Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# Action Engine TypeScript\nAction Engine allows agentic streaming systems with well-defined representations for context, operations, and session management.\n\n🚧 This repository is under heavy development. Expect bugs and potentially breaking changes."},{"ref":"P17","kind":"page","title":"google-deepmind/mujoco_warp repository metadata","date":"2026-06-11T04:00:35.396334+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/mujoco_warp","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/mujoco_warp\n\nDescription: GPU-optimized version of the MuJoCo physics simulator, designed for NVIDIA hardware.\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 1286\n\nForks: 168\n\nOpen issues: 46\n\nCreated: 2025-03-17T22:35:01Z\n\nPushed: 2026-06-09T09:31:28Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/google-deepmind/mujoco_warp/ci.yml?branch=main)](https://github.com/google-deepmind/mujoco_warp/actions/workflows/ci.yml?query=branch%3Amain)\n[![Documentation](https://readthedocs.org/projects/mujoco/badge/?version=latest)](https://mujoco.readthedocs.io/en/latest/mjwarp/index.html)\n[![License](https://img.shields.io/github/license/google-deepmind/mujoco_warp)](https://github.com/google-deepmind/mujoco_warp/blob/main/LICENSE)\n[![Nightly Benchmarks](https://img.shields.io/badge/Nightly-Benchmarks-blue)](https://google-deepmind.github.io/mujoco_warp/nightly/)\n\n# MuJoCo Warp (MJWarp)\n\nMJWarp is a GPU-accelerated version of the [MuJoCo](https://github.com/google-deepmind/mujoco) physics simulator, designed for NVIDIA hardware. MJWarp delivers high-throughput, accurate simulation for robotics research.\n\nMJWarp is maintained by [Google DeepMind](https://deepmind.google/) and [NVIDIA](https://www.nvidia.com/) as part of the [Newton](https://github.com/newton-physics/newton) project.\n\n# Getting started\n\nMuJoCo Warp requires an NVIDIA GPU for fast simulation but supports CPU for development and debugging.\n\n**Try it now:** view a simulation of a dancing humanoid robot locally on your machine:\n\n```bash\ngit clone https://github.com/google-deepmind/mujoco_warp.git && cd mujoco_warp\npython benchmarks/run.py -f unitree_g1_flat --view\n```\n\nOr try out [a tutorial in your browser](https://colab.research.google.com/github/google-deepmind/mujoco_warp/blob/main/notebooks/tutorial.ipynb) (no local setup required).\n\nMJWarp is also available via PyPI:\n\n```bash\npip install mujoco-warp\n```\n\n# Examples\n\nMuJoCo Warp simulates many kinds of physical systems, from rigid bodies with contacts to soft bodies, cloth, signed distance fields, and more. Here are a few examples of what it can do:\n\n<table>\n<tr"},{"ref":"P18","kind":"page","title":"google-deepmind/geeflow repository metadata","date":"2026-06-11T04:00:35.393682+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/geeflow","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/geeflow\n\nDescription: GeeFlow - generate and process large-scale geospatial datasets with Google Earth Engine.\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 122\n\nForks: 15\n\nOpen issues: 2\n\nCreated: 2025-02-01T13:39:53Z\n\nPushed: 2026-05-28T07:25:58Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# GeeFlow\n\n<div style=\"text-align: left\">\n<img align=\"right\" src=\"https://raw.githubusercontent.com/google-deepmind/geeflow/main/docs/images/geeflow_logo_1.png\" width=\"100\">\n</div>\n\nGeeFlow is a library for generating large scale geospatial datasets using\n[Google Earth Engine](https://earthengine.google.com/) (GEE). It contains utils,\nconfigs, and pipeline launch scripts to generate geospatial datasets. The focus\nis on supporting geospatial AI research, and it does not aim to be a\nproduction-ready utility.\n\nThe datasets created conform to the TFDS format and can be directly used with\nTFDS `tf.data.Dataset` data pipelines.\n\nWhat can it be used for:\n\n- Creating small- and large-scale datasets, supervised and unsupervised, ready\nfor ingestion into geospatial AI model training (with standard and robust\nstatistics precomputed).\n- Creating inference maps, up to global scale, at any resolution.\n- Supporting any type of geospatial satellite and remote sensing data and\nlabel data from Google Earth Engine.\n- Arbitrary spatial and temporal resolution, and sampling of data sources.\n- Tooling for sampling and inference maps generation.\n\nWhat is out of scope:\n\n- Model training and inference. Pick your favorite framework, e.g. for\n[Jax](https://github.com/jax-ml/jax)/[Flax](https://github.com/google/flax)\nwe use [Jeo](https://github.com/google-deepmind/jeo), for\n[PyTorch](https://pytorch.org/), check out\n[TorchGeo](https://github.com/microsoft/torchgeo).\n- Google Earth Engine data interactive visualization and analysis. Check out\nfor example the amazing [geemap](https://geemap.org/) for python-based\nanalysis. Or explore GEE's own javascript-based\n[EE Code Editor](https://developers.google.com/earth-engine/guides/playground).\n- Datasets repository. Check out e.g.\n[Hugging Face](https://huggingface.co/datasets),\n[TFDS Catalog](https://www.tensorflow.org/datasets"},{"ref":"P19","kind":"page","title":"google-deepmind/amld_workshop_natural_interactions_with_llms repository metadata","date":"2026-06-11T04:00:34.804156+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/amld_workshop_natural_interactions_with_llms","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/amld_workshop_natural_interactions_with_llms\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 11\n\nForks: 1\n\nOpen issues: 0\n\nCreated: 2025-02-06T17:52:16Z\n\nPushed: 2026-04-17T12:01:16Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# AMLD Workshop - Natural Interactions with Foundation Models\n[![Open In\nColab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/google-deepmind/amld_workshop_natural_interactions_with_llms/blob/master/AMLD_Ink_Interactions.ipynb)\n\nThis repository contains the instructions and the code related to the\n[AMLD 2025 Workshop](https://2025.appliedmldays.org/) on natural interactions\nwith foundation models. The goal of the practical session is to highlight how\ndigital ink can be used as a novel manner to interact with visual large language\nmodels. More specifically, participants will first interact with a fine-tuned\nversion of [PaliGemma 2](https://arxiv.org/pdf/2412.03555) and see in\napplication how ink can be used for natural interactions. In the second part,\nparticipants will try prompting the model to understand the limitations of\nadding a new out-of-distribution gesture. Finally, participants will generate\nsynthetically a dataset for a new gesture and fine-tune the model to support\nit - the resulting model should have learned a new capability without forgetting\nthe previous ones.\n\nTo load, interact, and fine-tune PaliGemma 2, we will be using the\n[big_vision](https://github.com/google-research/big_vision) framework. The\nfine-tuned PaliGemma 2 has used ink data from\n[DeepWriting](https://github.com/emreaksan/deepwriting) and\n[IAM-OnDB](https://fki.tic.heia-fr.ch/databases/iam-handwriting-database)\\[1\\],\nand standard Wikipedia pages as documents.\n\nHelp us improve! Share your feedback on the workshop by using this [form](https://forms.gle/RQMvfcD4PaCv3HVv7).\n\n\\[1\\] U. Marti and H. Bunke. The IAM-database: An English Sentence Database for\nOff-line Handwriting Recognition. Int. Journal on Document Analysis and\nRecognition, Volume 5, pages 39 - 46, 2002.\n\n## Installation\n\nOpen up the following notebook [![Open In\nColab](https://colab.research.google.com/assets/colab-bad"},{"ref":"P20","kind":"page","title":"google-deepmind/autonumerics_zero repository metadata","date":"2026-06-11T04:00:34.423613+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/autonumerics_zero","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/autonumerics_zero\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 14\n\nForks: 9\n\nOpen issues: 5\n\nCreated: 2025-02-24T21:23:15Z\n\nPushed: 2026-05-25T09:54:48Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# autonumerics_zero\n\nAutoNumerics-Zero, a method to evolve programs that compute transcendental\nfunctions efficiently—searching from scratch and without knowledge of numerics.\n\n## Usage\n\nCompilation requires Clang.\n\nThe package contains an example experiment spec. To test it, run:\n\n```\nexport CC=clang++\nbazel run evolution/projects/graphs/joy:run_worker -- --logtostderr --worker=\"$(cat evolution/projects/graphs/joy/open_source_num_ops_config.textproto)\"\n```\n\n## Citing this work\n\nEsteban Real et al., \"AutoNumerics-Zero: Automated Discovery of State-of-the-Art\nMathematical Functions.\"\narXiv preprint arXiv:2312.08472 (2023).\n\n```\n@article{ereal2024autonumerics,\ntitle={AutoNumerics-Zero: Automated Discovery of State-of-the-Art\nMathematical Functions},\nauthor={Real, Esteban et al.},\njournal={arXiv preprint arXiv:2312.08472},\nyear={2023}}\n```\n\n## License and disclaimer\n\nCopyright 2024 DeepMind Technologies Limited\n\nAll software is licensed under the Apache License, Version 2.0 (Apache 2.0);\nyou may not use this file except in compliance with the Apache 2.0 license.\nYou may obtain a copy of the Apache 2.0 license at:\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nAll other materials are licensed under the Creative Commons Attribution 4.0\nInternational License (CC-BY). You may obtain a copy of the CC-BY license at:\nhttps://creativecommons.org/licenses/by/4.0/legalcode\n\nUnless required by applicable law or agreed to in writing, all software and\nmaterials distributed here under the Apache 2.0 or CC-BY licenses are\ndistributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\neither express or implied. See the licenses for the specific language governing\npermissions and limitations under those licenses.\n\nThis is not an official Google product."},{"ref":"P21","kind":"page","title":"google-deepmind/century repository metadata","date":"2026-06-11T04:00:33.735357+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/century","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/century\n\nLicense: Apache-2.0\n\nStars: 2\n\nForks: 0\n\nOpen issues: 0\n\nCreated: 2025-02-28T02:51:12Z\n\nPushed: 2025-02-28T22:43:30Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# Century\n\n#### [Century: A Framework and Dataset for Evaluating Historical Contextualisation of Sensitive Images (Akbulut et al. 2025)](https://openreview.net/forum?id=1KLBvrYz3V)\nTo better understand how multi-modal models describe and provide context on\nhistorical figures and events, we introduce Century – a novel dataset of\n1,500 sensitive historical images.\n\nThis dataset consists of images from recent history, created through an\nautomated method combining knowledge graphs and language models with quality\nand diversity criteria created from the practices of museums and digital\narchives.\n\n_Century_ contains images that depict events and figures that are diverse\nacross topics and represents all regions of the world.\n\nInstructions on replicating can be found in the [ICLR paper](https://openreview.net/forum?id=1KLBvrYz3V).\n\n## Data files\nWe release three datasets.\n\n### century_dataset_images_only.csv\nThis file contains the canonical Century dataset, with links to all images in\n_Century_ as Wikipedia links, alongside other metadata attributes. It has six\ncolumns:\n\n* `image_url` indicating the image’s location on Wikimedia Commons\n* `wikipedia_url` indicating where the image appears on Wikipedia\n* `wit_split ` indicating which split of the Wikipedia Text-Image Dataset the image was sourced from\n* `century_method` indicating which method was used to source the search term corresponding to the image\n* `is_starter_set` indicating if the image belongs to the “starter set” we recommend as a starting point for developers\n* `century_id` which contains a unique ID for each image\n\n### century_dataset_with_image_quality_labels.csv\nThis file contains the canonical Century dataset, with all image annotations\ncollected through human and auto-rater methods. It contains all of the columns\nlisted above, as well as:\n\n* `rating.method` indicating which evaluation method (human or automated) was used to assign quality and diversity ratings to the image\n* `rating.src` indicating the speci"},{"ref":"P22","kind":"page","title":"google-deepmind/fusion_surrogates repository metadata","date":"2026-06-11T04:00:33.694044+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/fusion_surrogates","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/fusion_surrogates\n\nDescription: A library of surrogate transport models for tokamak fusion.\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 38\n\nForks: 5\n\nOpen issues: 3\n\nCreated: 2025-02-26T18:46:26Z\n\nPushed: 2026-05-13T19:42:18Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# Fusion surrogates\n\nA library of surrogate models for tokamak fusion.\n\nThis library provides both inference code and model weights and metadata. It is\ndesigned to provide surrogate models for\n[TORAX](https://github.com/google-deepmind/torax), but\nthe models should be usable by other fusion simulators.\n\n## QLKNN_7_11\nCurrently, this library only holds the QLKNN_7_11 model. This model is a\nsurrogate of [Qualikiz](https://gitlab.com/qualikiz-group/QuaLiKiz), a\nquasilinear gyrokinetic code for turbulent transport in tokamaks.\n\nIt is based on the original QLKNN10D model by\n[Van de Plassche et al. PoP 2020](https://doi.org/10.1063/1.5134126)\n([also available on arxiv](https://arxiv.org/abs/1911.05617)).\nIt was trained by combining data for the\n[QLKNN11D dataset](https://zenodo.org/record/8017522) and\n[QLKNN7D-edge dataset](https://zenodo.org/record/8106431). A paper describing\nthe details of the model is in the works and should be published soon.\n\nThe model takes as input:\n<ul>\n<li>Normalized logarithmic heat and density gradients for electrons and main\nions ($$R/L_{Te}$$, $$R/L_{Ti}$$, $$R/L_{ne}$$, $$R/L_{ni}$$)</li>\n<li>Safety factor ($$q$$)</li>\n<li>Magnetic shear ($$\\hat{s}$$)</li>\n<li>Local inverse aspect ratio ($$r/R_{maj}$$)</li>\n<li>ion-electron temperature ratio ($$T_i/T_e$$)</li>\n<li>Logarithmic ion-electron normalized collisionality ($$\\mathrm{log}(\\nu^*)$$)</li>\n<li>Normalized density ($$n_i/n_e$$)</li>\n</ul>\n\nIt outputs ion and electron heat and particle fluxes for each transport mode\n(Ion Temperature Gradient [ITG], Electron Temperature Gradient [ETG], Trapped\nElectron Modes [TEM]), as well as the the maximum growth rate on ion gyroradius\nscales. Specifically, we output the leading flux for that mode\n(ion heat flux for ITG, electron heat flux for TEM and ETG),\nand ratios of the relevant secondary fluxes to the leading flux of that mode.\n\nMore details on th"},{"ref":"P23","kind":"page","title":"google-deepmind/implicit_diffusion repository metadata","date":"2026-06-11T04:00:33.473587+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/implicit_diffusion","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/implicit_diffusion\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 10\n\nForks: 0\n\nOpen issues: 0\n\nCreated: 2025-03-03T10:34:45Z\n\nPushed: 2025-03-03T10:55:17Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# Implicit Diffusion\n\nThis is an implementation of the Implicit Diffusion algorithm, reproducing some\nexperimental results from the paper ([Implicit Diffusion: Efficient Optimization\nthrough Stochastic Sampling](https://arxiv.org/abs/2402.05468), Marion et al.,\n2024).\n\nThe code is written in JAX, and reproduces the results of the paper on reward\ntraining of Langevin processes (section 5.1)\n\n## Usage\n\nIn order to run the code, you can copy these files to your local machine and run\nthe following command, with at least the two following required flags:\n\n```$ python main.py --file_path=your_file_path --expe_name=your_expe_name```\n\nThis will save the results in the folder `your_file_path/your_expe_name` (which\nshould already exist), in the form of three .npy files.\n\nThese files contain the following information:\n\n- `hist_reward.npy`, a Numpy array of shape `(steps,)` containing the value of\nthe reward at each step.\n- `hist_kl_grad.npy`, a Numpy array of shape `(steps,)` containing the value of\nthe norm of the gradient for the KL divergence at each step.\n- `hist_theta.npy`, a Numpy array of shape `(steps, 6)` containing the value of\nthe parameters of the Langevin process at each step.\n\n## Citing this work\n\nIn order to cite this work in your own work, you can use the following citation:\n\n```\n@article{implicitdiffusion,\ntitle={Implicit Diffusion: Efficient Optimization through Stochastic Sampling},\nauthor={Marion, Pierre and Korba, Anna and Bartlett, Peter and Blondel, Mathieu and De Bortoli, Valentin and Doucet, Arnaud and Llinares-L{\\'o}pez, Felipe and Paquette, Courtney and Berthet, Quentin},\nyear={2024},\n}\n```\n\n## License and disclaimer\n\nCopyright 2025 Google LLC\n\nAll software is licensed under the Apache License, Version 2.0 (Apache 2.0);\nyou may not use this file except in compliance with the Apache 2.0 license.\nYou may obtain a copy of the Apache 2.0 license at:\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nAll other materials are licensed"},{"ref":"P24","kind":"page","title":"google-deepmind/wyd-benchmark repository metadata","date":"2026-06-11T04:00:33.422002+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/wyd-benchmark","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/wyd-benchmark\n\nLicense: Apache-2.0\n\nStars: 28\n\nForks: 0\n\nOpen issues: 1\n\nCreated: 2025-03-03T11:08:07Z\n\nPushed: 2025-03-03T11:10:48Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# The ‘What Are You Doing?’ (WYD) benchmark\n\nTL;DR: ‘What Are You Doing?’ (WYD) is a new benchmark for fine-grained\nevaluation of controllable image-to-video generation of humans,\nas described in the paper:\n>Emanuele Bugliarello, Anurag Arnab, Roni Paiss, Pieter-Jan Kindermans,\n>Cordelia Schmid. (2025).\n>What Are You Doing? A Closer Look at Controllable Human Video Generation.\n\nWYD consists of 1,544 captioned videos that have been meticulously collected and\nannotated with 56 fine-grained categories. These allow us to systematically\nmeasure performance across 9 aspects of human generation, including actions,\ninteractions and motion. We also propose and validate automatic metrics that\nleverage our annotations and better capture human evaluations.\n\n![Overview figure of WYD](teaser.png \"Overview of WYD\")\n\n## Overview\n\nThis repository includes:\n\n- Dataset annotations in [`wyd.json`](wyd.json), detailed in [DATASET.md](DATASET.md).\n- Human-verified video segmentation masks for each actor in a video (<font color=\"red\">to be released</font>).\n- Code to reproduce our evaluation metrics (<font color=\"red\">to be released</font>).\n\n## Citing this work\n\nAdd citation details here, usually a pastable BibTeX snippet:\n\n```\n@article{bugliarello-etal-2025-wyd,\ntitle={What Are You Doing? A Closer Look at Controllable Human Video Generation},\nauthor={Bugliarello, Emanuele and Arnab, Anurag and Paiss, Roni and Kindermans, Pieter-Jan and Schmid, Cordelia},\nyear={2025},\n}\n```\n\n## License and disclaimer\n\nCopyright 2025 Google LLC\n\nAll software is licensed under the Apache License, Version 2.0 (Apache 2.0); you\nmay not use this file except in compliance with the Apache 2.0 license. You may\nobtain a copy of the Apache 2.0 license at:\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nAll other materials are licensed under the Creative Commons Attribution 4.0\nInternational License (CC-BY). You may obtain a copy of the CC-BY license at:\nhttps://creativecommons.org/licenses/by/4.0/legalcode\n\nUnl"},{"ref":"P25","kind":"page","title":"google-deepmind/tips repository metadata","date":"2026-06-11T04:00:32.561712+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/tips","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/tips\n\nDescription: TIPSv2 (CVPR'26) and TIPS (ICLR'25)\n\nLanguage: Jupyter Notebook\n\nLicense: Apache-2.0\n\nStars: 543\n\nForks: 36\n\nOpen issues: 1\n\nCreated: 2025-03-03T13:18:42Z\n\nPushed: 2026-06-01T23:42:16Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n[![Demo-Colab-Pytorch](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/google-deepmind/tips/blob/main/pytorch/TIPS_Demo.ipynb)\n[![Demo-HF](https://img.shields.io/badge/Demo-HF-orange)](https://huggingface.co/spaces/google/TIPSv2)\n[![Models-HF](https://img.shields.io/badge/Models-HF-orange)](https://huggingface.co/collections/google/tipsv2)\n[![HF downloads](https://img.shields.io/endpoint?url=https://gmberton.github.io/hf-downloads-trackers/tipsv2/badge.json)](https://huggingface.co/collections/google/tipsv2)\n[![Webpage](https://img.shields.io/badge/Webpage-darkgreen)](https://gdm-tipsv2.github.io/)\n[![Paper](https://img.shields.io/badge/TIPSv2-arXiv.2604.12012-B3181B.svg)](https://arxiv.org/abs/2604.12012)\n[![Paper](https://img.shields.io/badge/TIPSv1-arXiv.2410.16512-B3181B.svg)](https://arxiv.org/abs/2410.16512)\n<br/>\n\n# TIPS / TIPSv2\n\nThis repository contains the implementation and models introduced in:\n* TIPSv2: Advancing Vision-Language Pretraining with Enhanced Patch-Text Alignment, CVPR 2026\n* TIPS: Text-Image Pretraining with Spatial Awareness, ICLR 2025\n\n<p align=\"center\">\n<img\nsrc=\"./docs/images/overview.png\"\nstyle=\"width:75%;\"\n>\n</p>\n\nThe **TIPS** series of models (**T**ext-**I**mage **P**retraining with **S**patial Awareness) are foundational image-text encoders built for general-purpose computer vision and multimodal applications. Our models were validated on a comprehensive suite of 9 tasks and 20 datasets, displaying excellent performance that matches or exceeds other recent vision encoders, with particularly strong spatial awareness.\n\nWe recommend using the latest version, TIPSv2, but still provide the earlier TIPSv1 for completeness. For a more detailed overview, please visit the <a href=\"https://gdm-tipsv2.github.io/\">Project Webpage</a> and check out the papers:\n[![Paper](https://img.shields.io/badge/TIPSv2-arXiv.2604.12"},{"ref":"P26","kind":"page","title":"google-deepmind/simply repository metadata","date":"2026-06-11T04:00:32.509428+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/simply","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/simply\n\nDescription: Minimal and scalable research codebase in JAX, designed for rapid iteration on frontier research in LLM and other autoregressive models.\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 530\n\nForks: 63\n\nOpen issues: 16\n\nCreated: 2025-03-13T05:18:20Z\n\nPushed: 2026-06-03T23:21:41Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n<!-- mdlint off(LINE_OVER_80) -->\n# Simply: Minimal Code for End-to-End Frontier LLM Research\n\n*Simply* is a minimal and scalable research codebase in JAX, designed as an environment where both humans and AI agents can rapidly iterate on frontier LLM research.\n\n- *Quick to [fork and hack](#getting-started)* for fast iteration. We aim at minimizing the time to implement new ideas (e.g., optimizer, training loss, RL algorithms, etc) by humans and AI agents.\n- *Minimal abstractions and dependencies* for a simple and self-contained codebase. Learn [Jax](https://jax.readthedocs.io/en/latest/index.html), and you are ready to read and hack the code.\n- *An environment for automated AI research* — An AI agent, which can itself be powered by an LLM served with *Simply*, can read the code, propose new ideas, run experiments, and iterate autonomously or under the guidance of human researchers. See [automated AI research with agents](#automated-ai-research-with-agents) for some simple examples. More on the way.\n- That's it, *simply* [get started](#getting-started) with hacking now :)\n\n## Getting started\n### Example commands\n\n#### Local test for debug\n```shell\nEXP=simply_local_test_1; rm -rf /tmp/${EXP}; python -m simply.main --experiment_config lm_test --experiment_dir /tmp/${EXP} --alsologtostderr\n```\nOr if you want to debug by printing arrays like normal python code, you can disable `jit` and `use_scan` using the command below.\n\n```shell\nexport JAX_DISABLE_JIT=True; EXP=simply_local_test_1; rm -rf /tmp/${EXP}; python -m simply.main --experiment_config lm_no_scan_test --experiment_dir /tmp/${EXP} --alsologtostderr\n```\n\n#### Running on Google Cloud TPUs\nSee the [GCloud Quickstart](gcloud_quickstart.md) to run your first experiment on a Cloud TPU, or the [full GCloud guide](docs/gcloud.md) for multi-host trainin"},{"ref":"P27","kind":"page","title":"google-deepmind/video_comp repository metadata","date":"2026-06-11T04:00:32.486548+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/video_comp","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/video_comp\n\nLicense: Apache-2.0\n\nStars: 6\n\nForks: 0\n\nOpen issues: 1\n\nCreated: 2025-04-08T06:42:27Z\n\nPushed: 2025-04-09T01:36:34Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# VideoComp\n\nVideoComp provides a benchmark for training and evaluating fine-grained\nvideo-text compositionality. It tests a model's ability to capture compositional\nand temporal coherence in multi-event videos. It introduces subtle disruptions\nto standard video-text pairs, such as **temporal reordering**, **action word\nreplacement**, and **segment-level mismatch**, enabling evaluation of models’\nalignment capabilities.\n\nThis release includes two benchmark datasets:\n\n- ActivityNet-Comp\n- YouCook2-Comp\n\nThese datasets extend the dense video captioning datasets\n[ActivityNet-Captions](https://cs.stanford.edu/people/ranjaykrishna/densevid/)\nand [YouCook2](http://youcook2.eecs.umich.edu/), by generating LLM-rewritten\nmulti-event paragraphs for both positive (coherent) and negative (disrupted)\nvideo-text pairs.\n\nFor more details, see our [CVPR 2025 paper](https://arxiv.org/abs/2504.03970).\n\n## Dataset Format\n\nWe release `.json` annotation files for both training and validation splits.\nEach file contains a list of entries with the following fields.\n\nNOTE: For the \"segment-level mismatch\" task, the input video should be trimmed\nby sampling the interval `query_video/{start,end}_time` from\n`original_video/{start,end}_time`.\n\n- `key`: Unique identifier\n- `video_id`: YouTube video ID\n- `type`: Disruptuion type\n- `original_video/start_time`, `original_video/end_time`: Start/end time of the\noriginal video\n- `query_video/start_time`, `query_video/end_time`: Start/end time of the query\nvideo (for actual train/eval)\n- `positive_text`: LLM-rewritten paragraph with chronologically ordered events\n- `negative_text`: LLM-rewritten paragraph with a targeted disruption\n- `positive_text/start_time`, `positive_text/end_time`: Start/end time for positive text\n- `negative_text/start_time`, `negative_text/end_time`: Start/end time for negative text\n- `question`: Question (for LLM evaluation)\n- `answer`: Answer (for LLM evaluation)\n\n## Downloads\n\n- [ActivityNet-Comp Train](https://storage.goog"},{"ref":"P28","kind":"page","title":"google-deepmind/latent-multi-hop-reasoning repository metadata","date":"2026-06-11T04:00:32.365169+00:00","date_source":null,"source_url":"https://github.com/google-deepmind/latent-multi-hop-reasoning","signal_url":null,"signal_json_url":null,"text":"# google-deepmind/latent-multi-hop-reasoning\n\nDescription: [ACL 2024] Do Large Language Models Latently Perform Multi-Hop Reasoning?\n\nLanguage: Python\n\nLicense: Apache-2.0\n\nStars: 92\n\nForks: 9\n\nOpen issues: 1\n\nCreated: 2025-03-18T15:24:45Z\n\nPushed: 2025-03-18T15:34:51Z\n\nDefault branch: main\n\nFork: no\n\nArchived: no\n\nREADME:\n# latent-multi-hop-reasoning\n\nThis repository contains the code and datasets used in the following two papers:\n\n- Sohee Yang, Elena Gribovskaya, Nora Kassner, Mor Geva*, Sebastian Riedel*. [Do Large Language Models Latently Perform Multi-Hop Reasoning?](https://arxiv.org/abs/2402.16837). In ACL 2024.\n- Sohee Yang, Nora Kassner, Elena Gribovskaya, Sebastian Riedel*, Mor Geva*. [Do Large Language Models Perform Latent Multi-Hop Reasoning without Exploiting Shortcuts?](https://arxiv.org/abs/2411.16679). arXiv, 2024.\n\n## Installation\n```bash\n# Create and activate conda environment\nconda create -n reasoning python=3.10\nconda activate reasoning\n\n# Install dependencies\npip install -r requirements.txt\n\n# Set HuggingFace token environment variable (required for accessing certain models)\nexport HF_TOKEN=\"your_token_here\"\n```\n\n## Datasets\n\nThe datasets are under the `datasets` directory.\n\n### TwoHopFact\n\n- Introduced in [Do Large Language Models Latently Perform Multi-Hop Reasoning?](https://arxiv.org/abs/2402.16837)\n- Contains 45,595 pairs of one-hop and two-hop factual prompts of 52 fact composition types with balanced distribution, designed to probe the internal mechanism of latent multi-hop reasoning\n- `datasets/TwoHopFact.csv` (91MB)\n- TwoHopFact is also available in huggingface datasets as [soheeyang/TwoHopFact](https://huggingface.co/datasets/soheeyang/TwoHopFact).\n\n### SOCRATES (ShOrtCut-fRee lATent rEaSoning)\n\n- Introduced in [Do Large Language Models Perform Latent Multi-Hop Reasoning without Exploiting Shortcuts?](https://arxiv.org/abs/2411.16679)\n- Contains 7,232 pairs of one-hop and two-hop factual prompts of 17 fact composition types, carefully created to evaluate latent multi-hop reasoning ability of LLMs with accuracy-based metrics while minimizing the risk of shortcuts\n- `datasets/SOCRATES_v1.csv` (14MB): A cleaned-up version of the data"},{"ref":"E1","kind":"event","title":"AlphaEvolve: How our Gemini-powered coding agent is scaling impact across fields","date":"2026-05-07T00:00:00.000Z","date_source":"page.visible_date","source_url":"https://deepmind.google/blog/alphaevolve-impact/","signal_url":"https://onlylabs.fyi/signals/5cc4cd52-fe73-44d3-9adf-1337fa2de766","signal_json_url":"https://onlylabs.fyi/signals/5cc4cd52-fe73-44d3-9adf-1337fa2de766/signal.json","text":"post_published · AlphaEvolve: How our Gemini-powered coding agent is scaling impact across fields · signal_desk=talking · occurred_at=2026-05-07T00:00:00.000Z · url=https://deepmind.google/blog/alphaevolve-impact/ · hn=327 points/149 comments · data_radar_lanes=Infrastructure · data_radar_terms=infra, infrastructure, scaling · data_radar_reason=Google (DeepMind / Gemini) has a writing signal matching infrastructure. · raw={\"excerpt\":\"Explore how AlphaEvolve's Gemini-powered algorithms are driving impact across business, infrastructure, and science.\"}"},{"ref":"E2","kind":"event","title":"Reimagining the mouse pointer for the AI era","date":"2026-05-12T00:00:00.000Z","date_source":"page.visible_date","source_url":"https://deepmind.google/blog/ai-pointer/","signal_url":"https://onlylabs.fyi/signals/88ab0c15-fe35-4383-9581-2d598488b11a","signal_json_url":"https://onlylabs.fyi/signals/88ab0c15-fe35-4383-9581-2d598488b11a/signal.json","text":"post_published · Reimagining the mouse pointer for the AI era · signal_desk=talking · occurred_at=2026-05-12T00:00:00.000Z · url=https://deepmind.google/blog/ai-pointer/ · hn=252 points/213 comments · raw={\"excerpt\":\"Google DeepMind is transforming the mouse pointer into a context-aware AI partner. Move beyond the friction of traditional prompting with intuitive AI collaboration in Chrome and beyond.\"}"},{"ref":"E3","kind":"event","title":"Gemini Robotics-ER 1.6: Powering real-world robotics tasks through enhanced embodied reasoning","date":"2026-04-14T00:00:00.000Z","date_source":"page.visible_date","source_url":"https://deepmind.google/blog/gemini-robotics-er-1-6/","signal_url":"https://onlylabs.fyi/signals/d03c05ad-4033-4f78-a620-ebe0f20fc0a4","signal_json_url":"https://onlylabs.fyi/signals/d03c05ad-4033-4f78-a620-ebe0f20fc0a4/signal.json","text":"post_published · Gemini Robotics-ER 1.6: Powering real-world robotics tasks through enhanced embodied reasoning · signal_desk=talking · occurred_at=2026-04-14T00:00:00.000Z · url=https://deepmind.google/blog/gemini-robotics-er-1-6/ · hn=219 points/84 comments · raw={\"excerpt\":\"Gemini Robotics ER 1.6: Enhancing spatial reasoning and multi-view understanding for autonomous robotics.\"}"},{"ref":"E4","kind":"event","title":"google/gemma-4-12B-it","date":"2026-05-23T01:17:15+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-12B-it","signal_url":"https://onlylabs.fyi/signals/92fc70be-efa5-4056-bcf1-d4a7a773fbe1","signal_json_url":"https://onlylabs.fyi/signals/92fc70be-efa5-4056-bcf1-d4a7a773fbe1/signal.json","text":"model_released · google/gemma-4-12B-it · signal_desk=releases · occurred_at=2026-05-23T01:17:15+00:00 · url=https://huggingface.co/google/gemma-4-12B-it · hf_downloads=675936 · hf_likes=906 · hf_params=11959730224 · pipeline=any-to-any · license=apache-2.0 · raw={\"derived_reason\":\"first-party-finetune\"}"},{"ref":"E5","kind":"event","title":"google/gemma-4-12B","date":"2026-05-23T02:43:54+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-12B","signal_url":"https://onlylabs.fyi/signals/77187ecb-8ac8-47a1-9bcb-17c5ed9128d2","signal_json_url":"https://onlylabs.fyi/signals/77187ecb-8ac8-47a1-9bcb-17c5ed9128d2/signal.json","text":"model_released · google/gemma-4-12B · signal_desk=releases · occurred_at=2026-05-23T02:43:54+00:00 · url=https://huggingface.co/google/gemma-4-12B · hf_downloads=140221 · hf_likes=505 · hf_params=11959730224 · pipeline=any-to-any · license=apache-2.0"},{"ref":"E6","kind":"event","title":"google/diffusiongemma-26B-A4B-it","date":"2026-06-09T12:40:12+00:00","date_source":"source","source_url":"https://huggingface.co/google/diffusiongemma-26B-A4B-it","signal_url":"https://onlylabs.fyi/signals/dc3f7316-5b55-4076-b61a-9a8ffd7a39de","signal_json_url":"https://onlylabs.fyi/signals/dc3f7316-5b55-4076-b61a-9a8ffd7a39de/signal.json","text":"model_released · google/diffusiongemma-26B-A4B-it · signal_desk=releases · occurred_at=2026-06-09T12:40:12+00:00 · url=https://huggingface.co/google/diffusiongemma-26B-A4B-it · hf_likes=312 · hf_params=25823778864 · pipeline=image-text-to-text · model_type=diffusion_gemma · license=apache-2.0"},{"ref":"E7","kind":"event","title":"google/gemma-4-31B-it-assistant","date":"2026-04-23T18:55:29+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-31B-it-assistant","signal_url":"https://onlylabs.fyi/signals/f5f13d8a-21a6-42c3-9430-4ed4fdb8ba2a","signal_json_url":"https://onlylabs.fyi/signals/f5f13d8a-21a6-42c3-9430-4ed4fdb8ba2a/signal.json","text":"model_released · google/gemma-4-31B-it-assistant · signal_desk=releases · occurred_at=2026-04-23T18:55:29+00:00 · url=https://huggingface.co/google/gemma-4-31B-it-assistant · hf_downloads=381012 · hf_likes=299 · hf_params=469518596 · pipeline=any-to-any · license=apache-2.0"},{"ref":"E8","kind":"event","title":"Decoupled DiLoCo: A new frontier for resilient, distributed AI training","date":"2026-04-23T00:00:00.000Z","date_source":"page.visible_date","source_url":"https://deepmind.google/blog/decoupled-diloco/","signal_url":"https://onlylabs.fyi/signals/52fc4c01-b93a-4c73-bb74-779e2884f255","signal_json_url":"https://onlylabs.fyi/signals/52fc4c01-b93a-4c73-bb74-779e2884f255/signal.json","text":"post_published · Decoupled DiLoCo: A new frontier for resilient, distributed AI training · signal_desk=talking · occurred_at=2026-04-23T00:00:00.000Z · url=https://deepmind.google/blog/decoupled-diloco/ · hn=49 points/6 comments · data_radar_lanes=Infrastructure · data_radar_terms=training · data_radar_reason=Google (DeepMind / Gemini) has a writing signal matching infrastructure. · raw={\"excerpt\":\"\"}"},{"ref":"E9","kind":"event","title":"google/magenta-realtime-2","date":"2026-05-28T21:55:47+00:00","date_source":"source","source_url":"https://huggingface.co/google/magenta-realtime-2","signal_url":"https://onlylabs.fyi/signals/d2518865-3640-4b31-b489-a6df8c03b63e","signal_json_url":"https://onlylabs.fyi/signals/d2518865-3640-4b31-b489-a6df8c03b63e/signal.json","text":"model_released · google/magenta-realtime-2 · signal_desk=releases · occurred_at=2026-05-28T21:55:47+00:00 · url=https://huggingface.co/google/magenta-realtime-2 · hf_downloads=19806 · hf_likes=175 · pipeline=text-to-audio · license=cc-by-4.0"},{"ref":"E10","kind":"event","title":"google/gemma-4-26B-A4B-it-assistant","date":"2026-04-23T20:16:46+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-26B-A4B-it-assistant","signal_url":"https://onlylabs.fyi/signals/9e927ea2-d026-4b03-b840-197418c6a577","signal_json_url":"https://onlylabs.fyi/signals/9e927ea2-d026-4b03-b840-197418c6a577/signal.json","text":"model_released · google/gemma-4-26B-A4B-it-assistant · signal_desk=releases · occurred_at=2026-04-23T20:16:46+00:00 · url=https://huggingface.co/google/gemma-4-26B-A4B-it-assistant · hf_downloads=152531 · hf_likes=162 · hf_params=419711236 · pipeline=any-to-any · license=apache-2.0"},{"ref":"E11","kind":"event","title":"google/gemma-4-E4B-it-assistant","date":"2026-04-23T18:44:33+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-E4B-it-assistant","signal_url":"https://onlylabs.fyi/signals/4d6ecb17-3a75-463d-996b-e52836554f99","signal_json_url":"https://onlylabs.fyi/signals/4d6ecb17-3a75-463d-996b-e52836554f99/signal.json","text":"model_released · google/gemma-4-E4B-it-assistant · signal_desk=releases · occurred_at=2026-04-23T18:44:33+00:00 · url=https://huggingface.co/google/gemma-4-E4B-it-assistant · hf_downloads=87581 · hf_likes=108 · hf_params=78779908 · pipeline=any-to-any · license=apache-2.0"},{"ref":"E12","kind":"event","title":"google/tipsv2-b14","date":"2026-04-09T06:28:59+00:00","date_source":"source","source_url":"https://huggingface.co/google/tipsv2-b14","signal_url":"https://onlylabs.fyi/signals/e2db2580-0b41-44b1-8747-d40f084a1b12","signal_json_url":"https://onlylabs.fyi/signals/e2db2580-0b41-44b1-8747-d40f084a1b12/signal.json","text":"model_released · google/tipsv2-b14 · signal_desk=releases · occurred_at=2026-04-09T06:28:59+00:00 · url=https://huggingface.co/google/tipsv2-b14 · hf_downloads=16396 · hf_likes=107 · hf_params=195948288 · pipeline=zero-shot-image-classification · license=apache-2.0"},{"ref":"E13","kind":"event","title":"google/gemma-4-12B-it-assistant","date":"2026-05-23T01:17:47+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-12B-it-assistant","signal_url":"https://onlylabs.fyi/signals/17fdf1ca-1620-449e-ac95-34cbd68e26cc","signal_json_url":"https://onlylabs.fyi/signals/17fdf1ca-1620-449e-ac95-34cbd68e26cc/signal.json","text":"model_released · google/gemma-4-12B-it-assistant · signal_desk=releases · occurred_at=2026-05-23T01:17:47+00:00 · url=https://huggingface.co/google/gemma-4-12B-it-assistant · hf_downloads=22505 · hf_likes=81 · hf_params=422856964 · pipeline=any-to-any · license=apache-2.0"},{"ref":"E14","kind":"event","title":"google/gemma-4-E2B-it-assistant","date":"2026-04-23T18:35:40+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-E2B-it-assistant","signal_url":"https://onlylabs.fyi/signals/081c0046-2877-4281-a77c-f8add4460803","signal_json_url":"https://onlylabs.fyi/signals/081c0046-2877-4281-a77c-f8add4460803/signal.json","text":"model_released · google/gemma-4-E2B-it-assistant · signal_desk=releases · occurred_at=2026-04-23T18:35:40+00:00 · url=https://huggingface.co/google/gemma-4-E2B-it-assistant · hf_downloads=28623 · hf_likes=62 · hf_params=77993476 · pipeline=any-to-any · license=apache-2.0"},{"ref":"E15","kind":"event","title":"google/gemma-4-12B-it-qat-q4_0-unquantized","date":"2026-06-04T05:20:28+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-12B-it-qat-q4_0-unquantized","signal_url":"https://onlylabs.fyi/signals/84a69417-279f-40e1-8ebc-df721d885b16","signal_json_url":"https://onlylabs.fyi/signals/84a69417-279f-40e1-8ebc-df721d885b16/signal.json","text":"model_released · google/gemma-4-12B-it-qat-q4_0-unquantized · signal_desk=releases · occurred_at=2026-06-04T05:20:28+00:00 · url=https://huggingface.co/google/gemma-4-12B-it-qat-q4_0-unquantized · hf_downloads=7751 · hf_likes=40 · hf_params=11959730224 · pipeline=any-to-any · license=apache-2.0 · raw={\"derived_reason\":\"first-party-finetune\"}"},{"ref":"E16","kind":"event","title":"google/gemma-4-12B-it-qat-q4_0-unquantized-assistant","date":"2026-06-04T22:58:12+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-12B-it-qat-q4_0-unquantized-assistant","signal_url":"https://onlylabs.fyi/signals/f58bdfb9-0e0c-4b1a-bb6d-8a3624fac327","signal_json_url":"https://onlylabs.fyi/signals/f58bdfb9-0e0c-4b1a-bb6d-8a3624fac327/signal.json","text":"model_released · google/gemma-4-12B-it-qat-q4_0-unquantized-assistant · signal_desk=releases · occurred_at=2026-06-04T22:58:12+00:00 · url=https://huggingface.co/google/gemma-4-12B-it-qat-q4_0-unquantized-assistant · hf_downloads=1361 · hf_likes=16 · hf_params=422856964 · pipeline=any-to-any · license=apache-2.0 · raw={\"derived_reason\":\"first-party-finetune\"}"},{"ref":"E17","kind":"event","title":"google/gemma-4-31B-it-qat-q4_0-unquantized-assistant","date":"2026-05-29T19:19:43+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-31B-it-qat-q4_0-unquantized-assistant","signal_url":"https://onlylabs.fyi/signals/bdf07c85-5eb4-4573-b293-bc19df10e294","signal_json_url":"https://onlylabs.fyi/signals/bdf07c85-5eb4-4573-b293-bc19df10e294/signal.json","text":"model_released · google/gemma-4-31B-it-qat-q4_0-unquantized-assistant · signal_desk=releases · occurred_at=2026-05-29T19:19:43+00:00 · url=https://huggingface.co/google/gemma-4-31B-it-qat-q4_0-unquantized-assistant · hf_downloads=1499 · hf_likes=14 · hf_params=469518596 · pipeline=image-text-to-text · license=apache-2.0 · raw={\"derived_reason\":\"first-party-finetune\"}"},{"ref":"E18","kind":"event","title":"Strengthening Singapore’s AI Future: A New National Partnership","date":"2026-05-20T00:00:00.000Z","date_source":"page.visible_date","source_url":"https://deepmind.google/blog/strengthening-singapores-ai-future-a-new-national-partnership/","signal_url":"https://onlylabs.fyi/signals/776c96f8-a579-4ff9-8d39-ed1ed677ce69","signal_json_url":"https://onlylabs.fyi/signals/776c96f8-a579-4ff9-8d39-ed1ed677ce69/signal.json","text":"post_published · Strengthening Singapore’s AI Future: A New National Partnership · signal_desk=talking · occurred_at=2026-05-20T00:00:00.000Z · url=https://deepmind.google/blog/strengthening-singapores-ai-future-a-new-national-partnership/ · hn=3 points/0 comments · raw={\"excerpt\":\"Google DeepMind and Singapore partner to apply frontier AI to address complex challenges across health, education, and sustainability and more.\"}"},{"ref":"E19","kind":"event","title":"Co-Scientist: A multi-agent AI partner to accelerate research","date":"2026-05-19T00:00:00.000Z","date_source":"page.visible_date","source_url":"https://deepmind.google/blog/co-scientist-a-multi-agent-ai-partner-to-accelerate-research/","signal_url":"https://onlylabs.fyi/signals/59a5b24f-797e-444d-90f5-3bfb3db5e14f","signal_json_url":"https://onlylabs.fyi/signals/59a5b24f-797e-444d-90f5-3bfb3db5e14f/signal.json","text":"post_published · Co-Scientist: A multi-agent AI partner to accelerate research · signal_desk=talking · occurred_at=2026-05-19T00:00:00.000Z · url=https://deepmind.google/blog/co-scientist-a-multi-agent-ai-partner-to-accelerate-research/ · hn=3 points/0 comments · raw={\"excerpt\":\"Introducing Co-Scientist, a collaborative AI partner built with Gemini to help researchers accelerate scientific breakthroughs.\"}"},{"ref":"E20","kind":"event","title":"google/gemma-4-E4B-it-qat-q4_0-unquantized-assistant","date":"2026-05-29T19:19:00+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-E4B-it-qat-q4_0-unquantized-assistant","signal_url":"https://onlylabs.fyi/signals/a005e3c1-efd1-442c-9e6f-65ed49231271","signal_json_url":"https://onlylabs.fyi/signals/a005e3c1-efd1-442c-9e6f-65ed49231271/signal.json","text":"model_released · google/gemma-4-E4B-it-qat-q4_0-unquantized-assistant · signal_desk=releases · occurred_at=2026-05-29T19:19:00+00:00 · url=https://huggingface.co/google/gemma-4-E4B-it-qat-q4_0-unquantized-assistant · hf_downloads=290 · hf_likes=8 · hf_params=78779908 · pipeline=any-to-any · license=apache-2.0 · raw={\"derived_reason\":\"first-party-finetune\"}"},{"ref":"E21","kind":"event","title":"google/gemma-4-31B-it-qat-q4_0-unquantized","date":"2026-04-28T20:55:54+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-31B-it-qat-q4_0-unquantized","signal_url":"https://onlylabs.fyi/signals/301aa2a7-d0cb-4954-9bbf-e8cc43149b90","signal_json_url":"https://onlylabs.fyi/signals/301aa2a7-d0cb-4954-9bbf-e8cc43149b90/signal.json","text":"model_released · google/gemma-4-31B-it-qat-q4_0-unquantized · signal_desk=releases · occurred_at=2026-04-28T20:55:54+00:00 · url=https://huggingface.co/google/gemma-4-31B-it-qat-q4_0-unquantized · hf_downloads=2834 · hf_likes=23 · hf_params=32682372656 · pipeline=image-text-to-text · license=apache-2.0 · raw={\"derived_reason\":\"first-party-finetune\"}"},{"ref":"E22","kind":"event","title":"google/gemma-4-26B-A4B-it-qat-q4_0-unquantized-assistant","date":"2026-05-29T19:19:16+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-26B-A4B-it-qat-q4_0-unquantized-assistant","signal_url":"https://onlylabs.fyi/signals/bc524648-11ff-4365-8b3e-a7793a0d2d4d","signal_json_url":"https://onlylabs.fyi/signals/bc524648-11ff-4365-8b3e-a7793a0d2d4d/signal.json","text":"model_released · google/gemma-4-26B-A4B-it-qat-q4_0-unquantized-assistant · signal_desk=releases · occurred_at=2026-05-29T19:19:16+00:00 · url=https://huggingface.co/google/gemma-4-26B-A4B-it-qat-q4_0-unquantized-assistant · hf_downloads=489 · hf_likes=7 · hf_params=419711236 · pipeline=image-text-to-text · license=apache-2.0 · raw={\"derived_reason\":\"first-party-finetune\"}"},{"ref":"E23","kind":"event","title":"google/CircularNet","date":"2026-06-02T16:49:49+00:00","date_source":"source","source_url":"https://huggingface.co/google/CircularNet","signal_url":"https://onlylabs.fyi/signals/744d962a-8846-4465-8fd9-b9c10989c769","signal_json_url":"https://onlylabs.fyi/signals/744d962a-8846-4465-8fd9-b9c10989c769/signal.json","text":"model_released · google/CircularNet · signal_desk=releases · occurred_at=2026-06-02T16:49:49+00:00 · url=https://huggingface.co/google/CircularNet · hf_likes=5 · license=apache-2.0"},{"ref":"E24","kind":"event","title":"google/gemma-4-26B-A4B-it-qat-q4_0-unquantized","date":"2026-04-29T21:55:52+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-26B-A4B-it-qat-q4_0-unquantized","signal_url":"https://onlylabs.fyi/signals/984bf1de-fcbd-4968-8cae-035b86229c66","signal_json_url":"https://onlylabs.fyi/signals/984bf1de-fcbd-4968-8cae-035b86229c66/signal.json","text":"model_released · google/gemma-4-26B-A4B-it-qat-q4_0-unquantized · signal_desk=releases · occurred_at=2026-04-29T21:55:52+00:00 · url=https://huggingface.co/google/gemma-4-26B-A4B-it-qat-q4_0-unquantized · hf_downloads=2251 · hf_likes=21 · hf_params=26544131376 · pipeline=image-text-to-text · license=apache-2.0 · raw={\"derived_reason\":\"first-party-finetune\"}"},{"ref":"E25","kind":"event","title":"google/gemma-4-E2B-it-qat-q4_0-unquantized-assistant","date":"2026-05-29T19:18:42+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-E2B-it-qat-q4_0-unquantized-assistant","signal_url":"https://onlylabs.fyi/signals/3d176ed4-5050-4b74-8c14-fdea609a073d","signal_json_url":"https://onlylabs.fyi/signals/3d176ed4-5050-4b74-8c14-fdea609a073d/signal.json","text":"model_released · google/gemma-4-E2B-it-qat-q4_0-unquantized-assistant · signal_desk=releases · occurred_at=2026-05-29T19:18:42+00:00 · url=https://huggingface.co/google/gemma-4-E2B-it-qat-q4_0-unquantized-assistant · hf_downloads=222 · hf_likes=6 · hf_params=77993476 · pipeline=any-to-any · license=apache-2.0 · raw={\"derived_reason\":\"first-party-finetune\"}"},{"ref":"E26","kind":"event","title":"DiffusionGemma: 4x faster text generation","date":"2026-06-10T16:24:11+00:00","date_source":"rss.item_date","source_url":"https://deepmind.google/blog/diffusiongemma-4x-faster-text-generation/","signal_url":"https://onlylabs.fyi/signals/8dc3cb48-ca03-4c5e-b776-2febb36923ff","signal_json_url":"https://onlylabs.fyi/signals/8dc3cb48-ca03-4c5e-b776-2febb36923ff/signal.json","text":"post_published · DiffusionGemma: 4x faster text generation · signal_desk=talking · occurred_at=2026-06-10T16:24:11+00:00 · url=https://deepmind.google/blog/diffusiongemma-4x-faster-text-generation/ · raw={\"excerpt\":\"\"}"},{"ref":"E27","kind":"event","title":"Technical Program Manager, Agents Innovation - 12 Month FTC","date":"2026-06-10T15:46:58+00:00","date_source":"greenhouse.updated_at","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7839536","signal_url":"https://onlylabs.fyi/signals/a3728e0b-bb68-4a52-9b11-576c1dbfae89","signal_json_url":"https://onlylabs.fyi/signals/a3728e0b-bb68-4a52-9b11-576c1dbfae89/signal.json","text":"job_opened · Technical Program Manager, Agents Innovation - 12 Month FTC · signal_desk=hiring · occurred_at=2026-06-10T15:46:58+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7839536 · raw={\"location\":\"London, UK\",\"ats\":\"greenhouse\"}"},{"ref":"E28","kind":"event","title":"Fluid, natural voice translation with Gemini 3.5 Live Translate","date":"2026-06-09T15:16:25+00:00","date_source":"rss.item_date","source_url":"https://deepmind.google/blog/fluid-natural-voice-translation-with-gemini-35-live-translate/","signal_url":"https://onlylabs.fyi/signals/c3e1268c-6a62-4443-9861-8cc8b2fab2fa","signal_json_url":"https://onlylabs.fyi/signals/c3e1268c-6a62-4443-9861-8cc8b2fab2fa/signal.json","text":"post_published · Fluid, natural voice translation with Gemini 3.5 Live Translate · signal_desk=talking · occurred_at=2026-06-09T15:16:25+00:00 · url=https://deepmind.google/blog/fluid-natural-voice-translation-with-gemini-35-live-translate/ · raw={\"excerpt\":\"Gemini 3.5 Live Translate brings near real-time, natural speech translation to Google AI Studio, Google Translate and Google Meet.\"}"},{"ref":"E29","kind":"event","title":"Powering the future of robotics in Europe","date":"2026-06-09T14:02:33+00:00","date_source":"rss.item_date","source_url":"https://deepmind.google/blog/powering-the-future-of-robotics-in-europe/","signal_url":"https://onlylabs.fyi/signals/8458c661-c5f3-4fef-afc1-abe720ecd4d5","signal_json_url":"https://onlylabs.fyi/signals/8458c661-c5f3-4fef-afc1-abe720ecd4d5/signal.json","text":"post_published · Powering the future of robotics in Europe · signal_desk=talking · occurred_at=2026-06-09T14:02:33+00:00 · url=https://deepmind.google/blog/powering-the-future-of-robotics-in-europe/ · raw={\"excerpt\":\"\"}"},{"ref":"E30","kind":"event","title":"google-deepmind/alphafold3 v3.0.3","date":"2026-06-09T12:26:50+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/alphafold3/releases/tag/v3.0.3","signal_url":"https://onlylabs.fyi/signals/4b8fac6d-c061-4dd4-b729-7f7ee24537aa","signal_json_url":"https://onlylabs.fyi/signals/4b8fac6d-c061-4dd4-b729-7f7ee24537aa/signal.json","text":"release · google-deepmind/alphafold3 v3.0.3 · signal_desk=releases · occurred_at=2026-06-09T12:26:50+00:00 · url=https://github.com/google-deepmind/alphafold3/releases/tag/v3.0.3 · raw={\"repo\":\"google-deepmind/alphafold3\"}"},{"ref":"E31","kind":"event","title":"Measuring the impact of learning with AI in Sierra Leone and beyond","date":"2026-06-09T00:00:00.000Z","date_source":"page.visible_date","source_url":"https://deepmind.google/blog/measuring-the-impact-of-learning-with-ai-in-sierra-leone-and-beyond/","signal_url":"https://onlylabs.fyi/signals/136852e1-8df2-4a9d-9f2f-dd29e4038f1f","signal_json_url":"https://onlylabs.fyi/signals/136852e1-8df2-4a9d-9f2f-dd29e4038f1f/signal.json","text":"post_published · Measuring the impact of learning with AI in Sierra Leone and beyond · signal_desk=talking · occurred_at=2026-06-09T00:00:00.000Z · url=https://deepmind.google/blog/measuring-the-impact-of-learning-with-ai-in-sierra-leone-and-beyond/ · raw={\"excerpt\":\"Results from a randomized controlled trial show the potential of Gemini’s Guided Learning feature to boost engagement and accelerate learning.\"}"},{"ref":"E32","kind":"event","title":"google-deepmind/science-skills v1.0.4","date":"2026-06-08T18:00:01+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/science-skills/releases/tag/v1.0.4","signal_url":"https://onlylabs.fyi/signals/464373cf-1152-43ad-ad85-dcfb8d7401c5","signal_json_url":"https://onlylabs.fyi/signals/464373cf-1152-43ad-ad85-dcfb8d7401c5/signal.json","text":"release · google-deepmind/science-skills v1.0.4 · signal_desk=releases · occurred_at=2026-06-08T18:00:01+00:00 · url=https://github.com/google-deepmind/science-skills/releases/tag/v1.0.4 · raw={\"repo\":\"google-deepmind/science-skills\"}"},{"ref":"E33","kind":"event","title":"google-deepmind/xarray_jax v0.1.1","date":"2026-06-08T16:55:04+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/xarray_jax/releases/tag/v0.1.1","signal_url":"https://onlylabs.fyi/signals/2f70155a-e140-42c8-993a-9ddde2dba940","signal_json_url":"https://onlylabs.fyi/signals/2f70155a-e140-42c8-993a-9ddde2dba940/signal.json","text":"release · google-deepmind/xarray_jax v0.1.1 · signal_desk=releases · occurred_at=2026-06-08T16:55:04+00:00 · url=https://github.com/google-deepmind/xarray_jax/releases/tag/v0.1.1 · raw={\"repo\":\"google-deepmind/xarray_jax\"}"},{"ref":"E34","kind":"event","title":"google-deepmind/unpic","date":"2026-06-04T14:37:24+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/unpic","signal_url":"https://onlylabs.fyi/signals/02f8701d-7bfd-41b5-aabe-1ad72a880dfb","signal_json_url":"https://onlylabs.fyi/signals/02f8701d-7bfd-41b5-aabe-1ad72a880dfb/signal.json","text":"repo_new · google-deepmind/unpic · signal_desk=repos · occurred_at=2026-06-04T14:37:24+00:00 · url=https://github.com/google-deepmind/unpic · stars=1 · raw={\"repo\":\"google-deepmind/unpic\",\"description\":\"Implementation of unPIC from \\\"How to Spin an Object: First, Get the Shape Right\\\", a CVPRW 2026 paper.\",\"language\":\"Python\"}"},{"ref":"E35","kind":"event","title":"google-deepmind/seeing_without_pixels","date":"2026-06-03T04:04:52+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/seeing_without_pixels","signal_url":"https://onlylabs.fyi/signals/35320cac-ddbe-4f25-a3b5-384a0ca0030b","signal_json_url":"https://onlylabs.fyi/signals/35320cac-ddbe-4f25-a3b5-384a0ca0030b/signal.json","text":"repo_new · google-deepmind/seeing_without_pixels · signal_desk=repos · occurred_at=2026-06-03T04:04:52+00:00 · url=https://github.com/google-deepmind/seeing_without_pixels · stars=7 · raw={\"repo\":\"google-deepmind/seeing_without_pixels\",\"language\":\"Python\"}"},{"ref":"E36","kind":"event","title":"Introducing Gemma 4 12B: a unified, encoder-free multimodal model","date":"2026-06-03T00:00:00.000Z","date_source":"page.visible_date","source_url":"https://deepmind.google/blog/introducing-gemma-4-12b-a-unified-encoder-free-multimodal-model/","signal_url":"https://onlylabs.fyi/signals/91fc1de9-018b-4566-8d26-4287b86fc4d8","signal_json_url":"https://onlylabs.fyi/signals/91fc1de9-018b-4566-8d26-4287b86fc4d8/signal.json","text":"post_published · Introducing Gemma 4 12B: a unified, encoder-free multimodal model · signal_desk=talking · occurred_at=2026-06-03T00:00:00.000Z · url=https://deepmind.google/blog/introducing-gemma-4-12b-a-unified-encoder-free-multimodal-model/ · raw={\"excerpt\":\"\"}"},{"ref":"E37","kind":"event","title":"google-deepmind/onetwo v0.5.0","date":"2026-06-02T14:11:21+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/onetwo/releases/tag/v0.5.0","signal_url":"https://onlylabs.fyi/signals/5ee9849d-7783-4dc0-8125-1a76c733e79d","signal_json_url":"https://onlylabs.fyi/signals/5ee9849d-7783-4dc0-8125-1a76c733e79d/signal.json","text":"release · google-deepmind/onetwo v0.5.0 · signal_desk=releases · occurred_at=2026-06-02T14:11:21+00:00 · url=https://github.com/google-deepmind/onetwo/releases/tag/v0.5.0 · raw={\"repo\":\"google-deepmind/onetwo\"}"},{"ref":"E38","kind":"event","title":"google-deepmind/dm_pix v0.4.5","date":"2026-06-02T11:30:40+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/dm_pix/releases/tag/v0.4.5","signal_url":"https://onlylabs.fyi/signals/d008c947-8b4d-42c1-afa4-21c8629ea9e3","signal_json_url":"https://onlylabs.fyi/signals/d008c947-8b4d-42c1-afa4-21c8629ea9e3/signal.json","text":"release · google-deepmind/dm_pix v0.4.5 · signal_desk=releases · occurred_at=2026-06-02T11:30:40+00:00 · url=https://github.com/google-deepmind/dm_pix/releases/tag/v0.4.5 · raw={\"repo\":\"google-deepmind/dm_pix\"}"},{"ref":"E39","kind":"event","title":"Research Scientist, Material Intelligence ","date":"2026-06-01T13:32:14+00:00","date_source":"greenhouse.updated_at","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7353237","signal_url":"https://onlylabs.fyi/signals/bfca1c0e-7a58-41e9-97b4-803975ac431d","signal_json_url":"https://onlylabs.fyi/signals/bfca1c0e-7a58-41e9-97b4-803975ac431d/signal.json","text":"job_opened · Research Scientist, Material Intelligence  · signal_desk=hiring · occurred_at=2026-06-01T13:32:14+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7353237 · raw={\"location\":\"London, UK\",\"ats\":\"greenhouse\"}"},{"ref":"E40","kind":"event","title":"Staff Research Engineer, Applied AI ","date":"2026-06-01T06:43:52+00:00","date_source":"greenhouse.updated_at","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7219900","signal_url":"https://onlylabs.fyi/signals/6f708747-0967-40fe-98e3-52b8d5f88c34","signal_json_url":"https://onlylabs.fyi/signals/6f708747-0967-40fe-98e3-52b8d5f88c34/signal.json","text":"job_opened · Staff Research Engineer, Applied AI  · signal_desk=hiring · occurred_at=2026-06-01T06:43:52+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7219900 · raw={\"location\":\"Singapore \",\"ats\":\"greenhouse\"}"},{"ref":"E41","kind":"event","title":"google-deepmind/science-skills","date":"2026-05-13T16:17:41+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/science-skills","signal_url":"https://onlylabs.fyi/signals/e67b1d5f-ef62-4574-80df-a72a4bded705","signal_json_url":"https://onlylabs.fyi/signals/e67b1d5f-ef62-4574-80df-a72a4bded705/signal.json","text":"repo_new · google-deepmind/science-skills · signal_desk=repos · occurred_at=2026-05-13T16:17:41+00:00 · url=https://github.com/google-deepmind/science-skills · stars=1818 · data_radar_lanes=Data demand · data_radar_terms=data · data_radar_reason=Google (DeepMind / Gemini) has a repo signal matching data demand. · raw={\"repo\":\"google-deepmind/science-skills\",\"description\":\"GDM Science Skills to speed up agentic scientific workflows with better grounding and higher token efficiency. Integrate insights from AlphaGenome, AFDB, UniProt and 30+ other databases and tools.\",\"language\":\"Python\"}"},{"ref":"E42","kind":"event","title":"Enabling a new model for healthcare with AI co-clinician","date":"2026-04-30T12:14:15+00:00","date_source":"rss.item_date","source_url":"https://deepmind.google/blog/ai-co-clinician/","signal_url":"https://onlylabs.fyi/signals/c284ea7d-f6ad-4434-a9ca-2a1e0f81cd46","signal_json_url":"https://onlylabs.fyi/signals/c284ea7d-f6ad-4434-a9ca-2a1e0f81cd46/signal.json","text":"post_published · Enabling a new model for healthcare with AI co-clinician · signal_desk=talking · occurred_at=2026-04-30T12:14:15+00:00 · url=https://deepmind.google/blog/ai-co-clinician/ · hn=3 points/0 comments · raw={\"excerpt\":\"Researching the path to AI-augmented care and development of an AI co-clinician.\"}"},{"ref":"E43","kind":"event","title":"Research Engineer, Materials Science","date":"2026-05-28T21:11:29+00:00","date_source":"greenhouse.updated_at","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7339890","signal_url":"https://onlylabs.fyi/signals/2c956f55-6ed0-416e-b143-124ccddfc893","signal_json_url":"https://onlylabs.fyi/signals/2c956f55-6ed0-416e-b143-124ccddfc893/signal.json","text":"job_opened · Research Engineer, Materials Science · signal_desk=hiring · occurred_at=2026-05-28T21:11:29+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7339890 · raw={\"location\":\"Mountain View, California, US\",\"ats\":\"greenhouse\"}"},{"ref":"E44","kind":"event","title":"google-deepmind/science-skills v1.0.2","date":"2026-05-28T11:10:06+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/science-skills/releases/tag/v1.0.2","signal_url":"https://onlylabs.fyi/signals/e9fe814a-0ad3-4501-8284-9d7d6512b7d5","signal_json_url":"https://onlylabs.fyi/signals/e9fe814a-0ad3-4501-8284-9d7d6512b7d5/signal.json","text":"release · google-deepmind/science-skills v1.0.2 · signal_desk=releases · occurred_at=2026-05-28T11:10:06+00:00 · url=https://github.com/google-deepmind/science-skills/releases/tag/v1.0.2 · raw={\"repo\":\"google-deepmind/science-skills\"}"},{"ref":"E45","kind":"event","title":"google-deepmind/mujoco_warp v3.9.0.1","date":"2026-05-27T16:10:00+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/mujoco_warp/releases/tag/v3.9.0.1","signal_url":"https://onlylabs.fyi/signals/7399f28b-93c7-4e1c-9a96-a7b713e499da","signal_json_url":"https://onlylabs.fyi/signals/7399f28b-93c7-4e1c-9a96-a7b713e499da/signal.json","text":"release · google-deepmind/mujoco_warp v3.9.0.1 · signal_desk=releases · occurred_at=2026-05-27T16:10:00+00:00 · url=https://github.com/google-deepmind/mujoco_warp/releases/tag/v3.9.0.1 · raw={\"repo\":\"google-deepmind/mujoco_warp\"}"},{"ref":"E46","kind":"event","title":"google-deepmind/mujoco_warp v3.9.0","date":"2026-05-27T14:48:21+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/mujoco_warp/releases/tag/v3.9.0","signal_url":"https://onlylabs.fyi/signals/a4fc790a-b4ab-480b-ba39-c69b0fa03d57","signal_json_url":"https://onlylabs.fyi/signals/a4fc790a-b4ab-480b-ba39-c69b0fa03d57/signal.json","text":"release · google-deepmind/mujoco_warp v3.9.0 · signal_desk=releases · occurred_at=2026-05-27T14:48:21+00:00 · url=https://github.com/google-deepmind/mujoco_warp/releases/tag/v3.9.0 · raw={\"repo\":\"google-deepmind/mujoco_warp\"}"},{"ref":"E47","kind":"event","title":"google-deepmind/mujoco 3.9.0","date":"2026-05-27T14:46:14+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/mujoco/releases/tag/3.9.0","signal_url":"https://onlylabs.fyi/signals/93813fec-3c0e-4607-8bde-6ffef766da0d","signal_json_url":"https://onlylabs.fyi/signals/93813fec-3c0e-4607-8bde-6ffef766da0d/signal.json","text":"release · google-deepmind/mujoco 3.9.0 · signal_desk=releases · occurred_at=2026-05-27T14:46:14+00:00 · url=https://github.com/google-deepmind/mujoco/releases/tag/3.9.0 · raw={\"repo\":\"google-deepmind/mujoco\"}"},{"ref":"E48","kind":"event","title":"Technical Program Manager, Antigravity (Modeling & Evals)","date":"2026-05-26T18:17:33+00:00","date_source":"greenhouse.updated_at","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7477606","signal_url":"https://onlylabs.fyi/signals/0355a42d-d38c-42c4-be89-aeec9b95f48a","signal_json_url":"https://onlylabs.fyi/signals/0355a42d-d38c-42c4-be89-aeec9b95f48a/signal.json","text":"job_opened · Technical Program Manager, Antigravity (Modeling & Evals) · signal_desk=hiring · occurred_at=2026-05-26T18:17:33+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7477606 · data_radar_lanes=Evals and quality · data_radar_terms=eval, evals · data_radar_reason=Google (DeepMind / Gemini) has a job signal matching evals and quality. · raw={\"location\":\"Mountain View, California, US\",\"ats\":\"greenhouse\"}"},{"ref":"E49","kind":"event","title":"Technical Program Manager, Antigravity","date":"2026-05-26T18:17:00+00:00","date_source":"greenhouse.updated_at","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7473344","signal_url":"https://onlylabs.fyi/signals/ee6ff05c-d4c9-453d-a383-ddd1287e1f14","signal_json_url":"https://onlylabs.fyi/signals/ee6ff05c-d4c9-453d-a383-ddd1287e1f14/signal.json","text":"job_opened · Technical Program Manager, Antigravity · signal_desk=hiring · occurred_at=2026-05-26T18:17:00+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7473344 · raw={\"location\":\"Mountain View, California, US\",\"ats\":\"greenhouse\"}"},{"ref":"E50","kind":"event","title":"google/gemma-4-E2B-it-qat-q4_0-unquantized","date":"2026-04-29T23:37:13+00:00","date_source":"source","source_url":"https://huggingface.co/google/gemma-4-E2B-it-qat-q4_0-unquantized","signal_url":"https://onlylabs.fyi/signals/4f0ebb44-6044-4461-8b45-aa36c927cc59","signal_json_url":"https://onlylabs.fyi/signals/4f0ebb44-6044-4461-8b45-aa36c927cc59/signal.json","text":"model_released · google/gemma-4-E2B-it-qat-q4_0-unquantized · signal_desk=releases · occurred_at=2026-04-29T23:37:13+00:00 · url=https://huggingface.co/google/gemma-4-E2B-it-qat-q4_0-unquantized · hf_downloads=2872 · hf_likes=13 · hf_params=5104297539 · pipeline=any-to-any · license=apache-2.0 · raw={\"derived_reason\":\"first-party-finetune\"}"},{"ref":"E51","kind":"event","title":"google-deepmind/open_spiel v1.6.15","date":"2026-05-22T15:14:56+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/open_spiel/releases/tag/v1.6.15","signal_url":"https://onlylabs.fyi/signals/bae46a61-6a0a-4af1-89ed-4e5a2e733fb7","signal_json_url":"https://onlylabs.fyi/signals/bae46a61-6a0a-4af1-89ed-4e5a2e733fb7/signal.json","text":"release · google-deepmind/open_spiel v1.6.15 · signal_desk=releases · occurred_at=2026-05-22T15:14:56+00:00 · url=https://github.com/google-deepmind/open_spiel/releases/tag/v1.6.15 · raw={\"repo\":\"google-deepmind/open_spiel\"}"},{"ref":"E52","kind":"event","title":"Research Scientist: Multilingual, Multicultural and Multimodal LLM","date":"2026-05-22T04:41:28+00:00","date_source":"greenhouse.updated_at","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7672015","signal_url":"https://onlylabs.fyi/signals/5998908d-920b-404f-b661-02625ad858fb","signal_json_url":"https://onlylabs.fyi/signals/5998908d-920b-404f-b661-02625ad858fb/signal.json","text":"job_opened · Research Scientist: Multilingual, Multicultural and Multimodal LLM · signal_desk=hiring · occurred_at=2026-05-22T04:41:28+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7672015 · raw={\"location\":\"Tokyo, Japan\",\"ats\":\"greenhouse\"}"},{"ref":"E53","kind":"event","title":"We’re launching the Google DeepMind Accelerator program in Asia Pacific to tackle environmental risks","date":"2026-05-21T19:46:42+00:00","date_source":"rss.item_date","source_url":"https://deepmind.google/blog/were-launching-the-google-deepmind-accelerator-program-in-asia-pacific-to-tackle-environmental-risks/","signal_url":"https://onlylabs.fyi/signals/5623a86e-2349-4e54-b92a-c76c14059b83","signal_json_url":"https://onlylabs.fyi/signals/5623a86e-2349-4e54-b92a-c76c14059b83/signal.json","text":"post_published · We’re launching the Google DeepMind Accelerator program in Asia Pacific to tackle environmental risks · signal_desk=talking · occurred_at=2026-05-21T19:46:42+00:00 · url=https://deepmind.google/blog/were-launching-the-google-deepmind-accelerator-program-in-asia-pacific-to-tackle-environmental-risks/ · data_radar_lanes=Safety and policy · data_radar_terms=risk · data_radar_reason=Google (DeepMind / Gemini) has a writing signal matching safety and policy. · raw={\"excerpt\":\"\"}"},{"ref":"E54","kind":"event","title":"Research Scientist, HRI Research to Enable Collaborative Humanoid Robots","date":"2026-05-21T12:56:57+00:00","date_source":"source","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7576917","signal_url":"https://onlylabs.fyi/signals/f93473bb-68bd-4858-a8d5-0c2d4fe63d49","signal_json_url":"https://onlylabs.fyi/signals/f93473bb-68bd-4858-a8d5-0c2d4fe63d49/signal.json","text":"job_opened · Research Scientist, HRI Research to Enable Collaborative Humanoid Robots · signal_desk=hiring · occurred_at=2026-05-21T12:56:57+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7576917 · raw={\"location\":\"New York City, New York, US\",\"ats\":\"greenhouse\"}"},{"ref":"E55","kind":"event","title":"google-deepmind/gemma v4.0.1","date":"2026-05-20T15:37:55+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/gemma/releases/tag/v4.0.1","signal_url":"https://onlylabs.fyi/signals/0b873f8b-17dd-4d07-bcca-631102ead783","signal_json_url":"https://onlylabs.fyi/signals/0b873f8b-17dd-4d07-bcca-631102ead783/signal.json","text":"release · google-deepmind/gemma v4.0.1 · signal_desk=releases · occurred_at=2026-05-20T15:37:55+00:00 · url=https://github.com/google-deepmind/gemma/releases/tag/v4.0.1 · raw={\"repo\":\"google-deepmind/gemma\"}"},{"ref":"E56","kind":"event","title":"People & Experience Delivery Partner - 12 months FTC, MTV","date":"2026-05-20T13:25:42+00:00","date_source":"greenhouse.updated_at","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7761408","signal_url":"https://onlylabs.fyi/signals/f6285583-b6eb-4c81-a26a-40b5100cbde4","signal_json_url":"https://onlylabs.fyi/signals/f6285583-b6eb-4c81-a26a-40b5100cbde4/signal.json","text":"job_opened · People & Experience Delivery Partner - 12 months FTC, MTV · signal_desk=hiring · occurred_at=2026-05-20T13:25:42+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7761408 · raw={\"location\":\"Mountain View, California, US\",\"ats\":\"greenhouse\"}"},{"ref":"E57","kind":"event","title":"google-deepmind/science-skills v1.0.1","date":"2026-05-20T11:13:01+00:00","date_source":"source","source_url":"https://github.com/google-deepmind/science-skills/releases/tag/v1.0.1","signal_url":"https://onlylabs.fyi/signals/cf25a36b-cb7b-43ee-9a8d-fd603f5ecb72","signal_json_url":"https://onlylabs.fyi/signals/cf25a36b-cb7b-43ee-9a8d-fd603f5ecb72/signal.json","text":"release · google-deepmind/science-skills v1.0.1 · signal_desk=releases · occurred_at=2026-05-20T11:13:01+00:00 · url=https://github.com/google-deepmind/science-skills/releases/tag/v1.0.1 · raw={\"repo\":\"google-deepmind/science-skills\"}"},{"ref":"E58","kind":"event","title":"Senior Program Manager, Google DeepMind Impact Accelerator","date":"2026-05-19T14:08:43+00:00","date_source":"greenhouse.updated_at","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7389078","signal_url":"https://onlylabs.fyi/signals/77881be0-120a-4ef6-aeb0-11f38ce2fab7","signal_json_url":"https://onlylabs.fyi/signals/77881be0-120a-4ef6-aeb0-11f38ce2fab7/signal.json","text":"job_opened · Senior Program Manager, Google DeepMind Impact Accelerator · signal_desk=hiring · occurred_at=2026-05-19T14:08:43+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7389078 · raw={\"location\":\"London, UK\",\"ats\":\"greenhouse\"}"},{"ref":"E59","kind":"event","title":"Market Insights and Strategy Partner (12 month FTC)","date":"2026-05-15T17:21:10+00:00","date_source":"greenhouse.updated_at","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7786257","signal_url":"https://onlylabs.fyi/signals/44005796-378f-4bdf-bef8-435efc859c5c","signal_json_url":"https://onlylabs.fyi/signals/44005796-378f-4bdf-bef8-435efc859c5c/signal.json","text":"job_opened · Market Insights and Strategy Partner (12 month FTC) · signal_desk=hiring · occurred_at=2026-05-15T17:21:10+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7786257 · raw={\"location\":\"Mountain View, California, US\",\"ats\":\"greenhouse\"}"},{"ref":"E60","kind":"event","title":"UX Researcher Role - 12 Months  - FTC","date":"2026-05-12T10:49:04+00:00","date_source":"greenhouse.updated_at","source_url":"https://job-boards.greenhouse.io/deepmind/jobs/7913506","signal_url":"https://onlylabs.fyi/signals/d0c283ff-42d6-4e51-b85d-ca25b2a56a68","signal_json_url":"https://onlylabs.fyi/signals/d0c283ff-42d6-4e51-b85d-ca25b2a56a68/signal.json","text":"job_opened · UX Researcher Role - 12 Months  - FTC · signal_desk=hiring · occurred_at=2026-05-12T10:49:04+00:00 · url=https://job-boards.greenhouse.io/deepmind/jobs/7913506 · raw={\"location\":\"London, UK\",\"ats\":\"greenhouse\"}"}]}