nielsr HF Staff commited on
Commit
8406bfd
·
verified ·
1 Parent(s): 2e1fb00

Improve model card: Add pipeline tag, library name, paper abstract, and explicit links

Browse files

This PR enhances the model card for the Deep Ignorance model suite by:

* Adding `pipeline_tag: text-generation` to the metadata, ensuring the model appears in relevant searches on the Hugging Face Hub and enables the interactive inference widget.
* Adding `library_name: transformers` to the metadata, which activates the "how to use" section with direct code snippets for the `transformers` library.
* Including the paper abstract for a quick overview of the research directly in the model card.
* Adding explicit links to the paper (using the Hugging Face Papers URL), the project page, and the GitHub repository for easier navigation and access to further resources.
* Correcting the misleading paper link in the introductory paragraph to point to the actual paper.

Please review and merge if these updates are satisfactory!

Files changed (1) hide show
  1. README.md +17 -10
README.md CHANGED
@@ -1,6 +1,14 @@
1
  ---
 
 
 
 
 
2
  language:
3
  - en
 
 
 
4
  tags:
5
  - pytorch
6
  - causal-lm
@@ -25,19 +33,21 @@ tags:
25
  - safety-research
26
  - model-diffing
27
  - training-dynamics
28
- license: apache-2.0
29
- datasets:
30
- - EleutherAI/deep-ignorance-pretraining-mix
31
- - EleutherAI/deep-ignorance-annealing-mix
32
- base_model:
33
- - EleutherAI/deep-ignorance-pretraining-stage-unfiltered
34
  ---
35
 
36
  # Deep Ignorance Model Suite
37
 
38
  We explore an intuitive yet understudied question: Can we prevent LLMs from learning unsafe technical capabilities (such as CBRN) by filtering out enough of the relevant pretraining data before we begin training a model? Research into this question resulted in the **Deep Ignorance Suite**. In our experimental setup, we find that filtering pretraining data prevents undesirable knowledge, doesn't sacrifice general performance, and results in models that are resistant to tampering.
39
 
40
- Deep Ignorance is a collection of 6.9B models developed to facilitate research into pretraining, interpretability, training data, and unlearning [(see paper)](https://deepignorance.ai). It contains 18 models composing of a baseline model trained on unfiltered data, and 17 models trained on filtered datasets or with other safety interventions being applied. Pretraining stage models have 101 checkpoints and annealing stage have 11.
 
 
 
 
 
 
 
 
41
 
42
  > **Support:**
43
  > The #release-discussion channel in the [EleutherAI Discord](https://discord.gg/eleutherai) is the best place to ask questions. Questions asked in other channels are less likely to be answered. The community section on HuggingFace is less actively monitored. Tag Kyle O'Brien in the EleutherAI Discord for faster response times.
@@ -51,9 +61,6 @@ Our research and model suite open up multiple avenues for future work. For insta
51
 
52
  We are also excited for the community to stress test data filtering to determine whether there are some situations where it is less tamper-resistant than our experiments suggest! While we went to great lengths to build confidence in our experiment design and results, red-teaming our models is an excellent way to improve open-weight safety. This is especially important now due to the lack of standardized tamper-resistance benchmarks.
53
 
54
-
55
-
56
-
57
  ## Uses and Limitations
58
 
59
  ### Quickstart
 
1
  ---
2
+ base_model:
3
+ - EleutherAI/deep-ignorance-pretraining-stage-unfiltered
4
+ datasets:
5
+ - EleutherAI/deep-ignorance-pretraining-mix
6
+ - EleutherAI/deep-ignorance-annealing-mix
7
  language:
8
  - en
9
+ license: apache-2.0
10
+ library_name: transformers
11
+ pipeline_tag: text-generation
12
  tags:
13
  - pytorch
14
  - causal-lm
 
33
  - safety-research
34
  - model-diffing
35
  - training-dynamics
 
 
 
 
 
 
36
  ---
37
 
38
  # Deep Ignorance Model Suite
39
 
40
  We explore an intuitive yet understudied question: Can we prevent LLMs from learning unsafe technical capabilities (such as CBRN) by filtering out enough of the relevant pretraining data before we begin training a model? Research into this question resulted in the **Deep Ignorance Suite**. In our experimental setup, we find that filtering pretraining data prevents undesirable knowledge, doesn't sacrifice general performance, and results in models that are resistant to tampering.
41
 
42
+ This model suite is described in the paper [Deep Ignorance: Filtering Pretraining Data Builds Tamper-Resistant Safeguards into Open-Weight LLMs](https://huggingface.co/papers/2508.06601).
43
+
44
+ **Paper Abstract:**
45
+ Open-weight AI systems offer unique benefits, including enhanced transparency, open research, and decentralized access. However, they are vulnerable to tampering attacks which can efficiently elicit harmful behaviors by modifying weights or activations. Currently, there is not yet a robust science of open-weight model risk management. Existing safety fine-tuning methods and other post-training techniques have struggled to make LLMs resistant to more than a few dozen steps of adversarial fine-tuning. In this paper, we investigate whether filtering text about dual-use topics from training data can prevent unwanted capabilities and serve as a more tamper-resistant safeguard. We introduce a multi-stage pipeline for scalable data filtering and show that it offers a tractable and effective method for minimizing biothreat proxy knowledge in LLMs. We pretrain multiple 6.9B-parameter models from scratch and find that they exhibit substantial resistance to adversarial fine-tuning attacks on up to 10,000 steps and 300M tokens of biothreat-related text -- outperforming existing post-training baselines by over an order of magnitude -- with no observed degradation to unrelated capabilities. However, while filtered models lack internalized dangerous knowledge, we find that they can still leverage such information when it is provided in context (e.g., via search tool augmentation), demonstrating a need for a defense-in-depth approach. Overall, these findings help to establish pretraining data curation as a promising layer of defense for open-weight AI systems.
46
+
47
+ **Project Page:** [https://deepignorance.ai/](https://deepignorance.ai/)
48
+ **GitHub Repository:** [https://github.com/EleutherAI/deep-ignorance](https://github.com/EleutherAI/deep-ignorance)
49
+
50
+ Deep Ignorance is a collection of 6.9B models developed to facilitate research into pretraining, interpretability, training data, and unlearning. It contains 18 models composing of a baseline model trained on unfiltered data, and 17 models trained on filtered datasets or with other safety interventions being applied. Pretraining stage models have 101 checkpoints and annealing stage have 11.
51
 
52
  > **Support:**
53
  > The #release-discussion channel in the [EleutherAI Discord](https://discord.gg/eleutherai) is the best place to ask questions. Questions asked in other channels are less likely to be answered. The community section on HuggingFace is less actively monitored. Tag Kyle O'Brien in the EleutherAI Discord for faster response times.
 
61
 
62
  We are also excited for the community to stress test data filtering to determine whether there are some situations where it is less tamper-resistant than our experiments suggest! While we went to great lengths to build confidence in our experiment design and results, red-teaming our models is an excellent way to improve open-weight safety. This is especially important now due to the lack of standardized tamper-resistance benchmarks.
63
 
 
 
 
64
  ## Uses and Limitations
65
 
66
  ### Quickstart