Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
transformers
Commits
c11b6fd3
Commit
c11b6fd3
authored
Jan 13, 2020
by
Lysandre
Committed by
Lysandre Debut
Jan 14, 2020
Browse files
Update links in all configurations
parent
63268272
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
src/transformers/configuration_albert.py
src/transformers/configuration_albert.py
+1
-1
src/transformers/configuration_bert.py
src/transformers/configuration_bert.py
+1
-1
src/transformers/configuration_camembert.py
src/transformers/configuration_camembert.py
+1
-1
src/transformers/configuration_ctrl.py
src/transformers/configuration_ctrl.py
+1
-1
src/transformers/configuration_distilbert.py
src/transformers/configuration_distilbert.py
+1
-1
src/transformers/configuration_gpt2.py
src/transformers/configuration_gpt2.py
+1
-1
src/transformers/configuration_openai.py
src/transformers/configuration_openai.py
+1
-1
src/transformers/configuration_roberta.py
src/transformers/configuration_roberta.py
+1
-1
src/transformers/configuration_transfo_xl.py
src/transformers/configuration_transfo_xl.py
+1
-1
No files found.
src/transformers/configuration_albert.py
View file @
c11b6fd3
...
...
@@ -35,7 +35,7 @@ class AlbertConfig(PretrainedConfig):
This is the configuration class to store the configuration of an :class:`~transformers.AlbertModel`.
It is used to instantiate an ALBERT model according to the specified arguments, defining the model
architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of
the ALBERT xxlarge architecture.
the ALBERT
`
xxlarge
<https://huggingface.co/albert-xxlarge-v2>`__
architecture.
Configuration objects inherit from :class:`~transformers.PretrainedConfig` and can be used
to control the model outputs. Read the documentation from :class:`~transformers.PretrainedConfig`
...
...
src/transformers/configuration_bert.py
View file @
c11b6fd3
...
...
@@ -53,7 +53,7 @@ class BertConfig(PretrainedConfig):
This is the configuration class to store the configuration of a :class:`~transformers.BertModel`.
It is used to instantiate an BERT model according to the specified arguments, defining the model
architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of
the BERT bert-base-uncased architecture.
the BERT
`
bert-base-uncased
<https://huggingface.co/bert-base-uncased>`__
architecture.
Configuration objects inherit from :class:`~transformers.PretrainedConfig` and can be used
to control the model outputs. Read the documentation from :class:`~transformers.PretrainedConfig`
...
...
src/transformers/configuration_camembert.py
View file @
c11b6fd3
...
...
@@ -33,7 +33,7 @@ class CamembertConfig(RobertaConfig):
This is the configuration class to store the configuration of an :class:`~transformers.CamembertModel`.
It is used to instantiate an Camembert model according to the specified arguments, defining the model
architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of
the BERT bert-base-uncased architecture.
the BERT
`
bert-base-uncased
<https://huggingface.co/bert-base-uncased>`__
architecture.
Configuration objects inherit from :class:`~transformers.PretrainedConfig` and can be used
to control the model outputs. Read the documentation from :class:`~transformers.PretrainedConfig`
...
...
src/transformers/configuration_ctrl.py
View file @
c11b6fd3
...
...
@@ -30,7 +30,7 @@ class CTRLConfig(PretrainedConfig):
This is the configuration class to store the configuration of an :class:`~transformers.CTRLModel`.
It is used to instantiate an CTRL model according to the specified arguments, defining the model
architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of
the
CTRL
architecture from SalesForce.
the
`ctrl <https://huggingface.co/ctrl>`__
architecture from SalesForce.
Configuration objects inherit from :class:`~transformers.PretrainedConfig` and can be used
to control the model outputs. Read the documentation from :class:`~transformers.PretrainedConfig`
...
...
src/transformers/configuration_distilbert.py
View file @
c11b6fd3
...
...
@@ -35,7 +35,7 @@ class DistilBertConfig(PretrainedConfig):
This is the configuration class to store the configuration of a :class:`~transformers.DistilBertModel`.
It is used to instantiate a DistilBERT model according to the specified arguments, defining the model
architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of
the DistilBERT distilbert-base-uncased architecture.
the DistilBERT
`
distilbert-base-uncased
<https://huggingface.co/distilbert-base-uncased>`__
architecture.
Configuration objects inherit from :class:`~transformers.PretrainedConfig` and can be used
to control the model outputs. Read the documentation from :class:`~transformers.PretrainedConfig`
...
...
src/transformers/configuration_gpt2.py
View file @
c11b6fd3
...
...
@@ -37,7 +37,7 @@ class GPT2Config(PretrainedConfig):
This is the configuration class to store the configuration of a :class:`~transformers.GPT2Model`.
It is used to instantiate an GPT-2 model according to the specified arguments, defining the model
architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of
the GPT-2 small architecture.
the GPT-2
`
small
<https://huggingface.co/gpt2>`__
architecture.
Configuration objects inherit from :class:`~transformers.PretrainedConfig` and can be used
to control the model outputs. Read the documentation from :class:`~transformers.PretrainedConfig`
...
...
src/transformers/configuration_openai.py
View file @
c11b6fd3
...
...
@@ -33,7 +33,7 @@ class OpenAIGPTConfig(PretrainedConfig):
This is the configuration class to store the configuration of an :class:`~transformers.OpenAIGPTModel`.
It is used to instantiate an GPT model according to the specified arguments, defining the model
architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of
the GPT architecture from OpenAI.
the
`
GPT
<https://huggingface.co/openai-gpt>`__
architecture from OpenAI.
Configuration objects inherit from :class:`~transformers.PretrainedConfig` and can be used
to control the model outputs. Read the documentation from :class:`~transformers.PretrainedConfig`
...
...
src/transformers/configuration_roberta.py
View file @
c11b6fd3
...
...
@@ -38,7 +38,7 @@ class RobertaConfig(BertConfig):
This is the configuration class to store the configuration of an :class:`~transformers.RobertaModel`.
It is used to instantiate an RoBERTa model according to the specified arguments, defining the model
architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of
the BERT bert-base-uncased architecture.
the BERT
`
bert-base-uncased
<https://huggingface.co/bert-base-uncased>`__
architecture.
Configuration objects inherit from :class:`~transformers.PretrainedConfig` and can be used
to control the model outputs. Read the documentation from :class:`~transformers.PretrainedConfig`
...
...
src/transformers/configuration_transfo_xl.py
View file @
c11b6fd3
...
...
@@ -33,7 +33,7 @@ class TransfoXLConfig(PretrainedConfig):
This is the configuration class to store the configuration of an :class:`~transformers.TransfoXLModel`.
It is used to instantiate a Transformer XL model according to the specified arguments, defining the model
architecture. Instantiating a configuration with the defaults will yield a similar configuration to that of
the Transformer XL architecture.
the
`
Transformer XL
<https://huggingface.co/transfo-xl-wt103>`__
architecture.
Configuration objects inherit from :class:`~transformers.PretrainedConfig` and can be used
to control the model outputs. Read the documentation from :class:`~transformers.PretrainedConfig`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment