Jason0214 commited on
Commit
0fe8600
1 Parent(s): 3d2b128

Upload folder using huggingface_hub

Browse files
__pycache__/configuration_btlm.cpython-311.pyc ADDED
Binary file (6.71 kB). View file
 
configuration_btlm.py CHANGED
@@ -22,9 +22,6 @@ from transformers.utils import logging
22
 
23
  logger = logging.get_logger(__name__)
24
 
25
- BTLM_PRETRAINED_CONFIG_ARCHIVE_MAP = {
26
- "cerebras/BTLM-2.7B": "https://huggingface.co/cerebras/BTLM-2.7B/resolve/main/config.json",
27
- }
28
 
29
  class BTLMConfig(PretrainedConfig):
30
  """
 
22
 
23
  logger = logging.get_logger(__name__)
24
 
 
 
 
25
 
26
  class BTLMConfig(PretrainedConfig):
27
  """
modeling_btlm.py CHANGED
@@ -49,11 +49,11 @@ from configuration_btlm import BTLMConfig
49
 
50
  logger = logging.get_logger(__name__)
51
 
52
- _CHECKPOINT_FOR_DOC = "cerebras/BTLM-2.7B"
53
  _CONFIG_FOR_DOC = "BTLMConfig"
54
 
55
  BTLM_PRETRAINED_MODEL_ARCHIVE_LIST = [
56
- "cerebras/BTLM-2.7B",
57
  # See all BTLM models at https://huggingface.co/models?filter=btlm
58
  ]
59
 
 
49
 
50
  logger = logging.get_logger(__name__)
51
 
52
+ _CHECKPOINT_FOR_DOC = "cerebras/BTLM-1.3B"
53
  _CONFIG_FOR_DOC = "BTLMConfig"
54
 
55
  BTLM_PRETRAINED_MODEL_ARCHIVE_LIST = [
56
+ "cerebras/BTLM-1.3B",
57
  # See all BTLM models at https://huggingface.co/models?filter=btlm
58
  ]
59