AI SeedbankHelp preserve open and free AI for humanity's future

← All models

google_fnet-base

google · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


language: en tags:

  • fnet license: apache-2.0 datasets:
  • c4

FNet base model

Pretrained model on English language using a masked language modeling (MLM) and next sentence prediction (NSP) objective. It was introduced in this paper and first released in this repository. This model is cased: it makes a difference between english and English. The model achieves 0.58 accuracy on MLM objective and 0.80 on NSP objective.

Disclaimer: This model card has been written by gchhablani.

Model description

FNet is a transformers model with attention replaced with fourier transforms. Hence, the inputs do not contain an attention_mask. It is pretrained on a large corpus of English data in a self-supervised fashion. This means it was pretrained on the raw texts only, with no humans labelling them in any way (which is why it can use lots of publicly available data) with an automatic process to generate inputs and labels from those texts. More precisely, it was pretrained with two objectives:

  • Masked language modeling (MLM): taking a sentence, the model randomly masks 15% of the words in the input then run the entire masked sentence through the model and has to predict the masked words. This is different from traditional recurrent neural networks (RNNs) that usually see the words one after the other, or from autoregressive models like GPT which internally mask the future tokens. It allows the model to learn a bidirectional representation of the sentence.
  • Next sentence prediction (NSP): the models concatenates two masked sentences as inputs during pretraining. Sometimes they correspond to sentences that were next to each other in the original text, sometimes not. The model then has to predict if the two sentences were following each other or not.

This way, the model learns an inner representation of the English language that can then be used to extract features useful for downstream tasks: if you have a dataset of labeled sentences for instance, you can train a standard classifier using the features produced by the FNet model as inputs.

Intended uses & limitations

You can use the raw model for either masked language modeling or next sentence prediction, but it's mostly intended to be fine-tuned on a downstream task. See the model hub to look for fine-tuned versions on a task that interests you.

Note that this model is primarily aimed at being fine-tuned on tasks that use the whole sentence (potentially masked) to make decisions, such as sequence classification, token classification or question answering. For tasks such as text generation you should look at model like GPT2.

Training data

The FNet model was pretrained on C4, a cleaned version of the Common Crawl dataset.

Training procedure

Preprocessing

The texts are lowercased and tokenized using SentencePiece and a vocabulary size of 32,000. The inputs of the model are then of the form:

[CLS] Sentence A [SEP] Sentence B [SEP]

With probability 0.5, sentence A and sentence B correspond to two consecutive sentences in the original corpus and in the other cases, it's another random sentence in the corpus. Note that what is considered a sentence here is a consecutive span of text usually longer than a single sentence. The only constrain is that the result with the two "sentences" has a combined length of less than 512 tokens.

The details of the masking procedure for each sentence are the following:

  • 15% of the tokens are masked.
  • In 80% of the cases, the masked tokens are replaced by [MASK].
  • In 10% of the cases, the masked tokens are replaced by a random token (different) from the one they replace.
  • In the 10% remaining cases, the masked tokens are left as is.

Pretraining

FNet-base was trained on 4 cloud TPUs in Pod configuration (16 TPU chips total) for one million steps with a batch size of 256. The sequence length was limited to 512 tokens. The optimizer used is Adam with a learning rate of 1e-4, \(\beta_{1} = 0.9\) and \(\beta_{2} = 0.999\), a weight decay of 0.01, learning rate warmup for 10,000 steps and linear decay of the learning rate after.

Evaluation results

FNet-base was fine-tuned and evaluated on the validation data of the GLUE benchamrk. The results of the official model (written in Flax) can be seen in Table 1 on page 7 of the official paper.

For comparison, this model (ported to PyTorch) was fine-tuned and evaluated using the official Hugging Face GLUE evaluation scripts alongside bert-base-cased for comparison. The training was done on a single 16GB NVIDIA Tesla V100 GPU. For MRPC/WNLI, the models were trained for 5 epochs, while for other tasks, the models were trained for 3 epochs. A sequence length of 512 was used with batch size 16 and learning rate 2e-5.

The following table summarizes the results for fnet-base (called FNet (PyTorch) - Reproduced) and bert-base-cased (called Bert (PyTorch) - Reproduced) in terms of fine-tuning speed. The format is hour:min:seconds. Note that the authors compared pre-traning speed in the official paper instead.

Task/Model FNet-base (PyTorch) Bert-base (PyTorch)
MNLI-(m/mm) 06:40:55 09:52:33
QQP 06:21:16 09:25:01
QNLI 01:48:22 02:40:22
SST-2 01:09:27 01:42:17
CoLA 00:09:47 00:14:20
STS-B 00:07:09 00:10:24
MRPC 00:07:48 00:11:12
RTE 00:03:24 00:04:51
WNLI 00:02:37 00:03:23
SUM 16:30:45 24:23:56

On average the PyTorch version of FNet-base requires ca. 32% less time for GLUE fine-tuning on GPU.

The following table summarizes the results for fnet-base (called FNet (PyTorch) - Reproduced) and bert-base-cased (called Bert (PyTorch) - Reproduced) in terms of performance and compares it to the reported performance of the official FNet-base model (called FNet (Flax) - Official). Note that the training hyperparameters of the reproduced models were not the same as the official model, so the performance may differ significantly for some tasks (for example: CoLA).

Task/Model Metric FNet-base (PyTorch) Bert-base (PyTorch) FNet-Base (Flax - official)
MNLI-(m/mm) Accuracy or Match/Mismatch 76.75 84.10 72/73
QQP mean(Accuracy,F1) 86.5 89.26 83
QNLI Accuracy 84.39 90.99 80
SST-2 Accuracy 89.45 92.32 95
CoLA Matthews corr or Accuracy 35.94 59.57 69
STS-B Spearman corr. 82.19 88.98 79
MRPC mean(F1/Accuracy) 81.15 88.15 76
RTE Accuracy 62.82 67.15 63
WNLI Accuracy 54.93 46.48 -
Avg - 72.7 78.6 76.7

We can see that FNet-base achieves around 93% of BERT-base's performance on average.

For more details, please refer to the checkpoints linked with the scores. On overview of all fine-tuned checkpoints of the following table can be accessed here.

How to use

You can use this model directly with a pipeline for masked language modeling:

Note: The mask filling pipeline doesn't work exactly as the original model performs masking after converting to tokens. In masking pipeline an additional space is added after the [MASK].

>>> from transformers import FNetForMaskedLM, FNetTokenizer, pipeline
>>> tokenizer = FNetTokenizer.from_pretrained("google/fnet-base")
>>> model = FNetForMaskedLM.from_pretrained("google/fnet-base")
>>> unmasker = pipeline('fill-mask', model=model, tokenizer=tokenizer)
>>> unmasker("Hello I'm a [MASK] model.")

[
    {"sequence": "hello i'm a new model.", "score": 0.12073223292827606, "token": 351, "token_str": "new"},
    {"sequence": "hello i'm a first model.", "score": 0.08501081168651581, "token": 478, "token_str": "first"},
    {"sequence": "hello i'm a next model.", "score": 0.060546260327100754, "token": 1037, "token_str": "next"},
    {"sequence": "hello i'm a last model.", "score": 0.038265593349933624, "token": 813, "token_str": "last"},
    {"sequence": "hello i'm a sister model.", "score": 0.033868927508592606, "token": 6232, "token_str": "sister"},
]

Here is how to use this model to get the features of a given text in PyTorch:

Note: You must specify the maximum sequence length to be 512 and truncate/pad to the same length because the original model has no attention mask and considers all the hidden states during forward pass.

from transformers import FNetTokenizer, FNetModel
tokenizer = FNetTokenizer.from_pretrained("google/fnet-base")
model = FNetModel.from_pretrained("google/fnet-base")
text = "Replace me by any text you'd like."
encoded_input = tokenizer(text, return_tensors='pt', padding='max_length', truncation=True, max_length=512)
output = model(**encoded_input)

BibTeX entry and citation info

@article{DBLP:journals/corr/abs-2105-03824,
  author    = {James Lee{-}Thorp and
               Joshua Ainslie and
               Ilya Eckstein and
               Santiago Onta{\~{n}}{\'{o}}n},
  title     = {FNet: Mixing Tokens with Fourier Transforms},
  journal   = {CoRR},
  volume    = {abs/2105.03824},
  year      = {2021},
  url       = {https://arxiv.org/abs/2105.03824},
  archivePrefix = {arXiv},
  eprint    = {2105.03824},
  timestamp = {Fri, 14 May 2021 12:13:30 +0200},
  biburl    = {https://dblp.org/rec/journals/corr/abs-2105-03824.bib},
  bibsource = {dblp computer science bibliography, https://dblp.org}
}

Contributions

Thanks to @gchhablani for adding this model.

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:1077378b9791f08103f80857c112cc0ab56af91d&dn=google_fnet-base

Open magnet in torrent client · infohash 1077378b9791f08103f80857c112cc0ab56af91d

Files & hashes

PathSizesha1sha256
README.md12.3 KB (12,614 B)34663394d1f089f7044377ab42b809483562d29c5396a8d1c8526b6709387fc2817e7240909ebae2277612eb4dba2422ae5d6d4d
config.json626 B (626 B)a167e945e588690e7057143147b99ec07d0d5e21c83901cd5a1b1567fe12c985810f793f96905781add3303c3ef95319c8ca2dac
pytorch_model.bin318.5 MB (333,994,783 B)d057ad5c4c43bbd98f0e6cee2640b3bdb8925a9ea83d296a9a59b09e537a97d99b2fd58c1706f7137ede7ea6197ed122dbf713ae
rust_model.ot412.4 MB (432,416,926 B)11aa60d5a1a62b31595d7ad35e793f5279a0a6504250fdba9665beb27b66c310c479a5dc4640f2e33245ea1b8cded61673361519
special_tokens_map.json201 B (201 B)a32e505ef9c508678b883a2c6d20f42a6652adce447e507ea70c8b82c296b93486f9ab6a3090788e1e4516eed7f1c576c11ed149
spiece.model691.7 KB (708,295 B)1e0cff7f2e3286d28fe85054886c11af4aa47df70f848afb4cb35389f15819aad6b9b4bb65d8b6cec9613b6145bea94b4a045ab6
tokenizer.json1.1 MB (1,122,486 B)7faefe1bed01ca0895aa42035cc40bca8a6ca7eae19ac913a3dba26fc3aca52d60ae2a8e0b6a577b1c247de2f7cd6d192fa2dd05
tokenizer_config.json455 B (455 B)d8dbfa1d375f42bc955c35de9c441f641e239fe95c2802f6f0ad6eadcb966a643b4a4c5cf3b5da6c84cbec71209eceb21538fae7

Cite this release

Canonical URL
https://aiseedbank.org/models/google_fnet-base/
Slug
google_fnet-base
Infohash
1077378b9791f08103f80857c112cc0ab56af91d
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: google_fnet-base.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorygoogle/fnet-base
Revision (pinned)d89b6fad3cf5384848b783dc480f9685f49d008c
Fetched at2026-09-03T23:11:04Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-03T23:11:13Z

apache-2.0732.7 MB (768,256,386 bytes)transformerspytorchrustfnetpretrainingendpoints_compatible1 language (en)paper: 2105.03824