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
OpenDAS
Megatron-LM
Commits
463d1257
Commit
463d1257
authored
Apr 16, 2020
by
Mohammad
Browse files
changed licence 2019 to 2020
parent
39af7956
Changes
76
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
megatron/__init__.py
megatron/__init__.py
+1
-1
megatron/arguments.py
megatron/arguments.py
+1
-1
megatron/checkpointing.py
megatron/checkpointing.py
+1
-1
megatron/data/bert_dataset.py
megatron/data/bert_dataset.py
+1
-1
megatron/data/gpt2_dataset.py
megatron/data/gpt2_dataset.py
+1
-1
megatron/data/helpers.cpp
megatron/data/helpers.cpp
+1
-1
megatron/data/samplers.py
megatron/data/samplers.py
+1
-1
megatron/deprecated_data_utils/__init__.py
megatron/deprecated_data_utils/__init__.py
+1
-1
megatron/deprecated_data_utils/configure_data.py
megatron/deprecated_data_utils/configure_data.py
+1
-1
megatron/deprecated_data_utils/corpora.py
megatron/deprecated_data_utils/corpora.py
+1
-1
megatron/deprecated_data_utils/datasets.py
megatron/deprecated_data_utils/datasets.py
+1
-1
megatron/deprecated_data_utils/lazy_loader.py
megatron/deprecated_data_utils/lazy_loader.py
+1
-1
megatron/deprecated_data_utils/samplers.py
megatron/deprecated_data_utils/samplers.py
+1
-1
megatron/deprecated_data_utils/scripts/split_gpt2_json.py
megatron/deprecated_data_utils/scripts/split_gpt2_json.py
+1
-1
megatron/deprecated_data_utils/tf_dl.py
megatron/deprecated_data_utils/tf_dl.py
+1
-1
megatron/deprecated_data_utils/tokenization.py
megatron/deprecated_data_utils/tokenization.py
+1
-1
megatron/fp16/__init__.py
megatron/fp16/__init__.py
+1
-1
megatron/fp16/fp16.py
megatron/fp16/fp16.py
+1
-1
megatron/fp16/fp16util.py
megatron/fp16/fp16util.py
+1
-1
megatron/fp16/loss_scaler.py
megatron/fp16/loss_scaler.py
+1
-1
No files found.
megatron/__init__.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/arguments.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/checkpointing.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/data/bert_dataset.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/data/gpt2_dataset.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/data/helpers.cpp
View file @
463d1257
/*
coding=utf-8
Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
...
...
megatron/data/samplers.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/deprecated_data_utils/__init__.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/deprecated_data_utils/configure_data.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/deprecated_data_utils/corpora.py
View file @
463d1257
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/deprecated_data_utils/datasets.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/deprecated_data_utils/lazy_loader.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/deprecated_data_utils/samplers.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/deprecated_data_utils/scripts/split_gpt2_json.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/deprecated_data_utils/tf_dl.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/deprecated_data_utils/tokenization.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/fp16/__init__.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/fp16/fp16.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/fp16/fp16util.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
megatron/fp16/loss_scaler.py
View file @
463d1257
# coding=utf-8
# Copyright (c) 20
19
, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 20
20
, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
Prev
1
2
3
4
Next
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