Pith. sign in

REVIEW 4 major objections 5 minor 1 cited by

PA-RAG: RAG Alignment via Multi-Perspective Preference Optimization

T0 review · 4 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read The paper claims that training a RAG generator with three staged preference objectives—informativeness, noise robustness, and citation quality—can lift answer correctness and citation quality together while keeping the generator end-to-end.

desk verdict Staged DPO for RAG is a genuinely useful recipe, but the citation-quality gains are unverified because the same NLI model both labels and grades. read the letter →

arxiv 2412.14510 v1 pith:EQXYNRDS submitted 2024-12-19 cs.CL cs.AI

classification cs.CLcs.AI
keywords retrieval-augmentedgenerationpreferenceoptimizationdirectcitationqualityresponserobustnessinformativenessRAGalignmentLLMfine-tuning
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper is trying to establish that the weaknesses of retrieval-augmented generation—incomplete answers when context is noisy, and poor citation support—can be fixed by aligning the generator itself, not by adding retrieval or verification steps around it. It proposes PA-RAG, a training scheme that first teaches the model via instruction fine-tuning to use and cite documents, then runs three Direct Preference Optimization stages that reward making answers complete, ignoring irrelevant documents, and citing accurately. Across four question-answering datasets and three LLMs, the trained generators improve exact match by about 14 absolute points on average, with large gains in citation recall and precision. If the claim holds, RAG systems can get substantially more reliable answers and citations while keeping the generator a single end-to-end language model.

What carries the argument

The load-bearing mechanism is the pairing of a citation rewrite mechanism with staged Direct Preference Optimization (DPO). The rewrite mechanism uses an NLI model to verify whether each cited document entails the claim, searches over the powerset of prompt documents to find a supporting citation, and removes irrelevant citations; it produces both the chosen outputs for SFT and the chosen/rejected pairs for the citation-quality DPO stage. The staged DPO schedule first optimizes response informativeness (use golden documents), then response robustness (ignore noisy documents), then citation quality, an ordering the paper shows beats the reversed or mixed order.

What would settle it

Take a random sample of PA-RAG and baseline outputs, have human annotators mark each claim as supported, unsupported, or irrelevant-cited, and compute citation recall and precision from those human labels; if PA-RAG's margin over SFT-on-chosen shrinks to near zero, the central citation-quality claim fails. A second check is to rerun the pipeline with a different NLI model or with human-supplied citation labels and see whether the 49.77% average citation-recall gain survives.

Watch

Extended reading notes

Core claim

The paper claims that a general-purpose LLM used as a RAG generator can be aligned with the three central RAG requirements—informativeness, robustness, and citation quality—in a single end-to-end model, without adding reranking or verification components to the pipeline. The recipe is supervised fine-tuning on rewritten high-quality responses, followed by three sequential DPO stages, each targeting one requirement. On four QA datasets and three LLMs, this produces average absolute gains of 13.97% in exact match, 49.77% in citation recall, and 39.58% in citation precision over the base generators, and it outperforms both SFT-only training and pipeline baselines.

Load-bearing premise

The load-bearing premise is that the NLI judge used to check citations agrees with human judgment; that same judge both creates the training labels and measures the reported citation scores.

Editorial extensions

If this is right

  • RAG generators can be aligned to several partly conflicting requirements in one end-to-end model, so deployment needs no extra reranking or verification passes.
  • Direct Preference Optimization is a better training signal than SFT for these trade-offs: the paper shows SFT on the same chosen outputs degrades when asked to optimize robustness after informativeness, while DPO keeps improving.
  • Staged optimization order matters: informativeness before robustness beats the reverse or a single mixed objective, suggesting a curriculum over RAG skills.
  • The released 58.9k instruction-tuning instances and 48.7k preference-optimization instances are reusable for training other backbone LLMs.
  • Citation recall and precision can be improved simultaneously in practice, with the citation-quality stage mainly raising the balanced F1 score.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Editorial extension: because the same NLI oracle is used to build citation labels and to compute citation metrics, the reported citation gains should be read as upper bounds until confirmed by human or independent automatic evaluation.
  • Editorial extension: the preference-data construction relies on datasets that provide short golden answers; applying PA-RAG to open-ended generation without such answer supervision is untested.
  • Editorial extension: a natural next step is to replace the NLI oracle with a reward model trained on human citation judgments, or to reuse the staged DPO recipe for other multi-objective text-generation tasks.
  • Editorial extension: training uses a single retriever and document corpus, so the robustness improvements may not transfer unchanged to other retrievers or document collections.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper proposes PA-RAG, a multi-stage fine-tuning framework for retrieval-augmented generation (RAG) generators. After an instruction fine-tuning stage that uses ChatGPT-3.5 and a citation-rewrite mechanism to build high-quality responses, the generator is optimized with three sequential DPO stages targeting response informativeness, response robustness, and citation quality. The method is evaluated on ASQA, WebQuestions, Natural Questions, and TriviaQA using LLAMA 2-7B, LLAMA 2-13B, and LLAMA 3-8B as base generators. The authors report average absolute improvements of 13.97% in EM, 49.77% in citation recall, and 39.58% in citation precision, and they release their training data and code.

Significance. If the reported gains hold up, PA-RAG is a valuable contribution to RAG alignment: it shows that multi-perspective DPO training can improve an end-to-end generator along several dimensions, and the released 58.9k instruction instances and 48.7k preference instances are useful resources. The ablation study (Table 2) and the preference-order experiments (Table 3) provide informative evidence for the staged design. The EM improvements are substantial and are not affected by the evaluation circularity noted below. However, the citation-quality results, which form a major part of the contribution, are currently unverified because the same NLI model is used both as the label oracle for training and as the evaluation metric. The lack of variance estimates and significance tests also weakens the quantitative claims. With independent citation evaluation and more rigorous experimental statistics, this would be a solid paper.

major comments (4)
  1. [§3.1, §3.2.3, §4.1.2] The TRUE T5-11B NLI model is used both to construct the citation labels (citation verification, powerset citation construction, simplification, and the chosen/rejected pairs for the citation-quality DPO stage) and to compute the citation recall and precision numbers in Table 1. The reported citation gains are therefore at least partly self-referential: the generator is explicitly optimized to satisfy TRUE, and the same model is then used as the scoring oracle. The ALCE human-correlation result cited in §4.1.2 applies to off-the-shelf generators, not to a model that has been trained to game TRUE, so reward hacking remains a real risk. Please add an independent citation-quality evaluation, for example with a different NLI model or with human annotation on a sample, and report the agreement.
  2. [§4.2, Table 1] All headline numbers (13.97% EM, 49.77% citation recall, 39.58% citation precision) are single-run results with no error bars, no multiple seeds, and no significance tests. DPO training is known to be sensitive to random seed and hyperparameters, so the improvements may not be robust. Please report at least three seeds with mean and standard deviation, and add paired significance tests (e.g., bootstrap or approximate randomization) for the main comparisons, especially PA-RAG versus the SFT baseline.
  3. [§4.1.3, Table 4] The 'SFT on chosen' baseline is only run on LLAMA2-7B-CHAT and only for the response-informativeness and response-robustness stages. There is no SFT baseline for the citation-quality stage, nor for the other two backbones. Since one of the paper's central claims is that preference optimization outperforms SFT, this claim currently rests on a single backbone and a single data configuration. Please extend the SFT baseline to all backbones and to the citation-quality stage, or substantially qualify the claim.
  4. [§4.1.3, Table 1] The comparison with Self-RAG and RetRobust uses different backbone sizes (13B) and different training procedures, and the claim that PA-RAG 'significantly outperforms the baselines' is not backed by significance testing. Please restrict the claim to same-backbone comparisons or provide significance tests across the full table; otherwise the superiority over pipeline baselines is not established.
minor comments (5)
  1. [§4.5] The phrase 'lea to a significant performance decline' should be corrected to 'leads to a significant performance decline.'
  2. [Table 2] Some values in Table 2 are run together (e.g., '77.6868.32' in the LLAMA2-7B ASQA row), making the table hard to read; please add explicit separators between columns.
  3. [Figure 3] The figure labels contain typos: 'Constract' should be 'Construct' and 'Constuct' should be 'Construct.'
  4. [Appendix D] The ChatGPT prompt has a typo: 'Qustion' should be 'Question.'
  5. [§4.1.2] The paper says 'All generators were trained on the same dataset,' but the preference data for later stages is generated by LLAMA2-7B-CHAT at different stages of fine-tuning; please clarify whether the same generated preference data is reused for the 13B and 8B backbones, since this affects the interpretation of the cross-backbone generalization claim.

Circularity Check

1 steps flagged · score 6.0 of 10

Citation-quality gains are not independently measured: the same TRUE NLI model is used to create the training labels and to compute citation recall/precision.

  1. fitted input called prediction [§3.1, §3.2.3 vs §4.1.2]
    "we use the citation rewrite mechanism to identify incorrect citations that fail the NLI model verification or cite irrelevant documents as rejected output and than correct them as chosen output. ... For the NLI model of citation rewrite and citation quality evaluation, we follow the works of Gao et al. (2023a), Sun et al. (2023), and Huang et al. (2024), utilizing the NLI model TRUE (Honovich et al., 2022), a T5-11B model that is fine-tuned on a collection of NLI datasets."

    The citation-quality preference data are constructed by the citation rewrite mechanism, where the NLI model decides whether a citation supports a claim: chosen outputs are citations that pass the NLI check and rejected outputs are citations that fail it (§3.2.3, building on §3.1). The evaluation metrics, citation recall and citation precision, are then computed with the same NLI model, TRUE (§4.1.2). Thus the reported citation-gain numbers measure how well the generator learned to satisfy the very oracle that labeled its own training examples. The chosen/rejected pairs are by construction TRUE-positive/TRUE-negative, so the DPO stage directly optimizes the same function that is later used as the evaluation metric.

full rationale

The paper's central derivation chain for citation quality is: define support via an NLI oracle (TRUE), use that oracle to rewrite/construct training labels, train the generator with DPO on those labels, and then evaluate citation recall/precision with the same oracle. This is a genuine train/evaluation identity for the citation-quality claim. The EM improvements, in contrast, are computed against gold dataset answers and are not trained on directly, so they provide independent evidence of correctness gains. No load-bearing self-citation was found: the ALCE and TRUE citations are external and give some independent validity to TRUE as a proxy; however, they do not eliminate the circularity of using the same scorer as both label generator and evaluator. Overall score 6 reflects partial circularity: the citation-quality prediction reduces by construction to optimizing the evaluation metric, while the EM component remains an externally meaningful result.

Assumptions & free parameters 5 free parameters · 4 assumptions · 0 invented entities

The method introduces no new entities, but it relies on several unverified assumptions: the NLI model's validity as a citation oracle (which is also used for evaluation, creating a circular burden), the quality of ChatGPT-3.5 as a teacher, and the completeness of dataset short answers. The hyperparameters (learning rates, number of documents, number of epochs, and the unreported DPO beta) are hand-set choices rather than derived quantities.

free parameters (5)
  • Number of golden documents in prompt = up to 5
    The method selects up to five golden documents from retrieved candidates for instruction data and informativeness/robustness inputs (§3.1). The choice is a hand-set design decision.
  • Number of noisy documents in robustness stage = 4 (2 related, 2 unrelated)
    The robustness preference data adds four noisy documents to the prompt: two related but answerless and two irrelevant (§3.2.2). This number is chosen without an ablation.
  • Learning rates for each training stage = 2e-5 (IFT), 2e-6 (RI and RR), 2e-7 (CQ)
    Hyperparameters tuned for each of the four fine-tuning stages, reported in Appendix A. They are not derived from first principles.
  • Number of training epochs = 1 for all stages
    All fine-tuning stages use one epoch, a design choice that affects the trade-off between memorization and generalization.
  • DPO beta (temperature)
    The paper does not report the beta hyperparameter used in Direct Preference Optimization (DPO), which controls the deviation from the reference model. This is a missing experimental detail.
assumptions (4)
  • domain assumption The TRUE NLI model is a reliable oracle for whether a claim is supported by a cited document.
    Invoked in §3.1 (citation rewrite) and §4.1.2 (evaluation). The paper cites ALCE's human correlation study, but the same model is used for both labeling and evaluation, creating a self-referential loop.
  • domain assumption ChatGPT-3.5 can generate high-quality responses that are complete and correctly cited, serving as chosen outputs.
    Used throughout data construction (§3.1, §3.2). The quality of the teacher model directly determines the ceiling of the training signal.
  • domain assumption The short answers in ASQA, WebQuestions, Natural Questions, and TriviaQA are exhaustive ground truth for answer completeness.
    The EM evaluation and the filtering of training data both rely on the dataset-provided short answers being the complete set of correct answers (§4.1.1, Appendix I).
  • domain assumption The GTR retriever retrieves documents that contain the short answers, and the selected golden documents are sufficient.
    The paper uses GTR on the 2018 Wikipedia dump and filters top-100 documents to those containing short answers (§3.1). If the retriever misses the answer, the training data would be incomplete.

how reviews work

0 comments
Cite this review

Pith. "Pith review of PA-RAG: RAG Alignment via Multi-Perspective Preference Optimization." pith.science (2026). https://pith.science/paper/EQXYNRDS

@misc{pith2026241214510,
  author       = {Pith},
  title        = {Pith review of: PA-RAG: RAG Alignment via Multi-Perspective Preference Optimization},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/EQXYNRDS}},
  note         = {Machine review of arXiv:2412.14510}
}
read the original abstract

The emergence of Retrieval-augmented generation (RAG) has alleviated the issues of outdated and hallucinatory content in the generation of large language models (LLMs), yet it still reveals numerous limitations. When a general-purpose LLM serves as the RAG generator, it often suffers from inadequate response informativeness, response robustness, and citation quality. Past approaches to tackle these limitations, either by incorporating additional steps beyond generating responses or optimizing the generator through supervised fine-tuning (SFT), still failed to align with the RAG requirement thoroughly. Consequently, optimizing the RAG generator from multiple preference perspectives while maintaining its end-to-end LLM form remains a challenge. To bridge this gap, we propose Multiple Perspective Preference Alignment for Retrieval-Augmented Generation (PA-RAG), a method for optimizing the generator of RAG systems to align with RAG requirements comprehensively. Specifically, we construct high-quality instruction fine-tuning data and multi-perspective preference data by sampling varied quality responses from the generator across different prompt documents quality scenarios. Subsequently, we optimize the generator using SFT and Direct Preference Optimization (DPO). Extensive experiments conducted on four question-answer datasets across three LLMs demonstrate that PA-RAG can significantly enhance the performance of RAG generators. Our code and datasets are available at https://github.com/wujwyi/PA-RAG.

Figures

Figures reproduced from arXiv: 2412.14510 by the authors.

Figure 1
Figure 1. PA-RAG retains the end-to-end form of the [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Overview of instruction fine-tuning data construction. [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Overview of preference data construction. [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. RACE-Align: Retrieval-Augmented and Chain-of-Thought Enhanced Preference Alignment for Large Language Models

    cs.CL 2025-06 reject novelty 3.0 of 10

    RACE-Align generates preference pairs from RAG-grounded chain-of-thought answers and applies DPO to align a 1.7B model, showing improved reasoning scores in TCM QA but lacking statistical support.

Reference graph

Works this paper leans on

42 extracted references · 41 canonical work pages · cited by 1 Pith paper

  1. [1]

    Dr. Quinn

    she was featured throughout the sixth season, when her character fell in love with Jake Slicker. The role of Anthony (Grace and Robert E.’s adopted son) was played by Brenden Jefferson for four episodes in season four. He was replaced by Brandon Hammond, who continued in the role throughout seasons five and six. Jennifer Youngs did not begin playing Ingri...

  2. [2]

    Dr. Quinn, Medicine Woman

    Erika Flores Erika Flores (born November 22, 1979 in Grass Valley, Nevada County, California) is an American former child actress. She is known for her role as the first Colleen Cooper in the "Dr. Quinn, Medicine Woman" TV series; Flores left the role in 1995, in the middle of the third season, and the role was then recast with Jessica Bowman taking over ...

  3. [3]

    Slumber Party Massacre 2

    Heidi Kozak Heidi Karin Kozak (born June 22, 1963) is a Danish-born American actress. She is perhaps best known for her roles in several late-1980s horror films, including "Slumber Party Massacre 2", "" (both 1987), and "Society" (1989). She also starred in the first season of "Dr. Quinn Medicine Woman" in the supporting role of Emily Donovan. Although sh...

  4. [4]

    Dr. Quinn, Medicine Woman

    Jessica Bowman Jessica Robyn Bowman (born November 26, 1980) is an American actress known for her role as Colleen Cooper on "Dr. Quinn, Medicine Woman". Bowman was born in Walnut Creek, California. She began acting in community theater and commercials, and appeared as Darcy on "The Road Home". After guest appearances on "Boy Meets World", "NYPD Blue", and...

  5. [5]

    Claim2[1][3]

    [3] Table 8 The generator outputs an answer based on the question and the remaining documents: Claim1[2]. Claim2[1][3]. Since the citation numbers in the answer gener- ated by the generator are the new document num- bers, and the documents in the input part of the DPO training data are the old numbers, we need to revert the new numbers to the old ones usi...

  6. [7]

    Burger Beard

    [4] Table 9 ChatGPT outputs an answer based on the ques- tion and the remaining documents: Claim1[1][2]. Claim2[3][4]. Restore the new numbers to the old ones accord- ing to the table above. The restored answer is as follows: Claim1[1][3]. Claim2[4][7]. F Detailed Analysis of Why Rejecting Irrelevant Documents is a More Advanced Skill As shown in Table 3,...

  7. [8]

    not realistic at all,

    aunt and uncle where she attended West Anchorage High School. After returning to Wasilla, she attended and then graduated from Wasilla High School in May 2009. Palin first became the subject of media attention when her pregnancy was announced during her mother’s unsuccessful run for Vice President. In February 2009, she told Fox News that abstinence is "n...

  8. [9]

    Palin was born on October 18, 1990, in Wasilla, Alaska to parents Todd and Sarah (née Heath) Palin

    season, where she was eliminated in the fourth week of competition. Palin was born on October 18, 1990, in Wasilla, Alaska to parents Todd and Sarah (née Heath) Palin. She was named "Bristol" for the Bristol Inn where her mother Sarah was employed; Bristol, Connecticut, the headquarters city of ESPN, where her mother Sarah hoped to work as a sportscaster;...

Show all 42 references
  1. [10]

    The school is part of the Matanuska-Susitna Borough School District, with admission based primarily on the locations of students’ homes

    Wasilla High School Wasilla High School (WHS) is a public secondary school in Wasilla, Alaska, United States, serving students in grades 9–12. The school is part of the Matanuska-Susitna Borough School District, with admission based primarily on the locations of students’ home...

  2. [11]

    cross-town

    school (Palmer Jr. Middle School) and one high school (Palmer High School). Palmer High is of a modest size with about 900 students and approximately 60 staff members. In 1999, Palmer High became the first school in Alaska to offer the International Baccalaureate program. Abou...

  3. [12]

    She enrolled at the University of Idaho in Moscow for an academic year starting in August 1984 and then attended Matanuska-Susitna College in Alaska in the fall of 1985

    Pacific University in Honolulu for a semester in the fall of 1982 and then to North Idaho College, a community college in Coeur d’Alene, for the spring and fall semesters of 1983. She enrolled at the University of Idaho in Moscow for an academic year starting in August 1984 an...

  4. [13]

    activates

    the oocyte. Fusion between the oocyte plasma membranes and sperm follows and allows the sperm nucleus, the typical centriole, and atypical centriole that is attached to the flagellum, but not the mitochondria, to enter the oocyte. The protein CD9 likely mediates this fusion in...

  5. [14]

    in vitro

    fertilization process. Human fertilization Human fertilization is the union of a human egg and sperm, usually occurring in the ampulla of the fallopian tube. The result of this union is the production of a zygote cell, or fertilized egg, initiating prenatal development. Scient...

  6. [15]

    Additionally, once the fusion of the sperm and oocyte is complete, phospholipase C zeta is released from the sperm

    and once bound together, the sperm and the egg fuse together to form two pronuclei These pronuclei supply the zygote with the genetic material necessary for the formation of an embryo. Additionally, once the fusion of the sperm and oocyte is complete, phospholipase C zeta is r...

  7. [16]

    When a pollen grain makes contact with the female stigma, the pollen grain forms a pollen tube that grows down the style into the ovary

    (microgametophyte) containing two haploid generative (sperm) cells and a tube nucleus. When a pollen grain makes contact with the female stigma, the pollen grain forms a pollen tube that grows down the style into the ovary. In the act of fertilization, a male sperm nucleus fus...

  8. [17]

    in vitro

    Human fertilization Human fertilization is the union of a human egg and sperm, usually occurring in the ampulla of the fallopian tube. The result of this union is the production of a zygote cell, or fertilized egg, initiating prenatal development. Scientists discovered the dyn...

  9. [18]

    EastEnders

    Slater family (EastEnders) The Slater family are a fictional family from the BBC soap opera "EastEnders", that have appeared since episode 1997, first broadcast in September 2000. The family are introduced as a central family unit consisting of father Charlie Slater (Derek Mar...

  10. [19]

    Kat" Moon (also Slater) is a fictional character from the BBC soap opera

    Kat Slater Kathleen "Kat" Moon (also Slater) is a fictional character from the BBC soap opera "EastEnders", played by Jessie Wallace. She was also played by Kate Peck in a flashback in 2001. Kat is the daughter of Viv Slater and Charlie Slater (Derek Martin), and arrived with ...

  11. [20]

    Slater family (EastEnders) The Slater family are a fictional family from the BBC soap opera

    ends of the country, and in some cases beyond." Slater family (EastEnders) The Slater family are a fictional family from the BBC soap opera "EastEnders", that have appeared since episode 1997, first broadcast in September 2000. The family are introduced as a central family uni...

  12. [21]

    EastEnders

    Discussing the character’s death, Digital Spy’s Kris Green praised Crace’s acting. He compared Danielle’s revelation that Ronnie was her mother to the "EastEnders" storyline several years previously, when Kat Slater (Jessie Wallace) revealed she was actually the mother of her ...

  13. [22]

    EastEnders

    that she wants to get back together with him, but he tells her that he is not ready as he does not want to hurt her again. This causes Kat to reevaluate her life, so she visits the convent where she gave birth to Zoe to seek some answers, though it is now a nun’s care home. A ...

  14. [23]

    In the 98th minute, Hurst found himself on the scoresheet again; his shot hit the crossbar, bounced down onto the goal line, and was awarded as a goal

    the game went to extra time. In the 98th minute, Hurst found himself on the scoresheet again; his shot hit the crossbar, bounced down onto the goal line, and was awarded as a goal. Debate has long raged over whether the ball crossed the line, with the goal becoming part of Wor...

  15. [24]

    width:15em

    over France in their final group game. Roger Hunt scores both of England’s goals. 23 July 1966: England beat Argentina 1–0 in the World Cup quarter-final thanks to a goal by Geoff Hurst. 26 July 1966: England reach the World Cup final by beating Portugal 2–1 in the semi-final....

  16. [25]

    described at the time as a 4–4–2. The match is remembered for England’s only World Cup trophy, Geoff Hurst’s hat-trick – the first, and to date, only one ever scored in a FIFA World Cup Final – and the controversial third goal awarded to England by referee Gottfried Dienst and...

  17. [26]

    Ramsey confidently predicted that at the next tournament, England would win the trophy, and they did just that

    1962 FIFA World Cup. Ramsey confidently predicted that at the next tournament, England would win the trophy, and they did just that. The 1966 World Cup saw England win the World Cup in a controversial 4–2 victory over West Germany. The three goals scored by Geoff Hurst within ...

  18. [27]

    In that final, Moore was the team captain and a central defender, while Wilson served as full back alongside him

    over Germany in the final held on home soil, at the old 1923 built Wembley stadium (since replaced by the new Wembley Stadium opened in 2007). In that final, Moore was the team captain and a central defender, while Wilson served as full back alongside him. Peters in midfield, ...

  19. [28]

    Fifty-year rule

    used government papers in breach of the "Fifty-year rule" then in operation. Cabinet Secretary Sir Norman Brook persuaded the Prime Minister to demand amendments to conceal the degree of Cabinet involvement in the abdication of King Edward VIII (who was still alive in 1961) an...

  20. [29]

    Edward’s difficult relationship with his nephew exacerbated the tensions between Germany and Britain

    not like: Wilhelm II. Edward’s difficult relationship with his nephew exacerbated the tensions between Germany and Britain. In April 1908, during Edward’s annual stay at Biarritz, he accepted the resignation of British Prime Minister Sir Henry Campbell-Bannerman. In a break wi...

  21. [30]

    Until 1837 the death of a sovereign led to Parliament being dissolved within six months which led to a general election

    office of Prime Minister has coincided with the reigns of 11 British monarchs (including a Regency during the incapacity of George III from 1811 to his death in 1820), to whom the Prime Minister has been constitutionally head of government to the sovereign’s headship of state....

  22. [31]

    Edward was the eldest son of King George V and Queen Mary

    Edward VIII Edward VIII (Edward Albert Christian George Andrew Patrick David; 23 June 1894 – 28 May 1972) was King of the United Kingdom and the Dominions of the British Empire, and Emperor of India, from 20 January 1936 until his abdication on 11 December the same year, after...

  23. [32]

    invested by King Edward VII at Buckingham Palace on 8 August 1902. (He was the only prime minister to be knighted during his term of office until Robert Menzies in 1963; various others were knighted after leaving the office; Sir Earle Page was already a knight when he briefly ...

  24. [33]

    Smith was also part of the Great Britain team that took the bronze in the men’s artistic team all-around at the 2012 London Olympics

    2016 Rio Olympics, this time finishing behind teammate, and 2012 bronze medalist, Max Whitlock. Smith was also part of the Great Britain team that took the bronze in the men’s artistic team all-around at the 2012 London Olympics. He is the only British gymnast to win Olympic m...

  25. [34]

    Louis Smith (gymnast) Louis Antoine Smith, MBE (born 22 April 1989) is a retired British artistic gymnast. He received a bronze medal and two silver medals on the pommel horse at the 2008 Beijing Olympics, 2012 London Olympics and the 2016 Rio Olympics respectively, with the f...

  26. [35]

    Despite this, he still placed 3rd behind Krisztián Berki and Cyril Tommasone to win the Bronze medal — the only medal won by the British men and women at those championships

    but fell on his dismount, lowering his execution score. Despite this, he still placed 3rd behind Krisztián Berki and Cyril Tommasone to win the Bronze medal — the only medal won by the British men and women at those championships. In 2012, Smith won the silver medal in the pom...

  27. [36]

    Horse at the World Cup in Moscow. On 9 August 2008, Smith qualified in fifth place for the Olympic final of the men’s pommel horse, and on 17 August he won a bronze medal in the finals, becoming first British man to win a medal in the individual gymnastics at the Olympic Games...

  28. [37]

    was harder than Gymnastics as everything was a new challenge. I never expected to win – I just went out every week with the aim of doing my best." Smith subsequently participated in the 2014 Christmas special with guest professional, Aliona Vilani. The couple won after dancing...

  29. [38]

    Kranji Racecourse is run by the Singapore Turf Club and hosts several meetings per week, including international races—notably the Singapore Airlines International Cup

    the inaugural teams in the ASEAN Basketball League which was founded in October 2009. Kranji Racecourse is run by the Singapore Turf Club and hosts several meetings per week, including international races—notably the Singapore Airlines International Cup. Singapore began hostin...

  30. [39]

    It was the seventeenth round of the 2011 Formula One season and the first Formula One Grand Prix to take place in South Asia and first to take place in India

    2011 Indian Grand Prix The 2011 Indian Grand Prix, formally the 2011 Formula 1 Airtel Grand Prix of India, was a Formula One motor race that was held on 30 October 2011 at the Buddh International Circuit in Greater Noida, Uttar Pradesh, India. It was the seventeenth round of t...

  31. [40]

    It was the seventeenth round of the 2010 Formula One season and the first Korean Grand Prix

    2010 Korean Grand Prix The 2010 Korean Grand Prix (formally the 2010 Formula 1 Korean Grand Prix) was a Formula One motor race held on 24 October 2010 at the Korea International Circuit in Yeongam, South Jeolla, South Korea. It was the seventeenth round of the 2010 Formula One...

  32. [41]

    2011 Korean Grand Prix The 2011 Korean Grand Prix, formally the 2011 Formula 1 Korean Grand Prix was a Formula One motor race that was held on 16 October 2011 at the Korea International Circuit in Yeongam, South Jeolla, South Korea. It was the sixteenth round of the 2011 Formu...

  33. [42]

    Taehan-min’guk

    held later than usual, to avoid a clash with the 2006 Commonwealth Games. For the first time, Bahrain hosted the first Grand Prix. Brazil hosted the last race, while Japan and China swapped their original dates. In 2006, the FIA announced the Belgian Grand Prix would not be pa...

  34. [2023]

    Chosen” and “Rejected

    Direct preference optimization: Your language model is secretly a reward model. In Advances in Neural Information Processing Systems 36: Annual Conference on Neural Information Processing Sys- tems 2023, NeurIPS 2023, New Orleans, LA, USA, December 10 - 16, 2023. Ivan Stelmakh...

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.