Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Llama Recipes
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
meta-llama
Llama Recipes
Commits
19089269
Commit
19089269
authored
1 year ago
by
Hamid Shojanazeri
Browse files
Options
Downloads
Patches
Plain Diff
add gc
parent
ef810bbe
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/llama_recipes/finetuning.py
+4
-2
4 additions, 2 deletions
src/llama_recipes/finetuning.py
src/llama_recipes/utils/train_utils.py
+7
-1
7 additions, 1 deletion
src/llama_recipes/utils/train_utils.py
with
11 additions
and
3 deletions
src/llama_recipes/finetuning.py
+
4
−
2
View file @
19089269
...
...
@@ -3,8 +3,9 @@
import
os
from
pkg_resources
import
packaging
import
gc
import
fire
import
torch
import
torch.distributed
as
dist
import
torch.optim
as
optim
...
...
@@ -44,8 +45,9 @@ from llama_recipes.utils.train_utils import (
get_policies
)
import
gc
def
main
(
**
kwargs
):
gc
.
disable
()
# Update the configuration for the training and sharding process
update_config
((
train_config
,
fsdp_config
),
**
kwargs
)
...
...
This diff is collapsed.
Click to expand it.
src/llama_recipes/utils/train_utils.py
+
7
−
1
View file @
19089269
...
...
@@ -7,7 +7,7 @@ import yaml
from
pathlib
import
Path
from
pkg_resources
import
packaging
import
contextlib
import
gc
import
torch
import
torch.cuda.nccl
as
nccl
...
...
@@ -100,6 +100,9 @@ def train(model, train_dataloader,eval_dataloader, tokenizer, optimizer, lr_sche
pbar
=
tqdm
(
colour
=
"
blue
"
,
desc
=
f
"
Training Epoch:
{
epoch
+
1
}
"
,
total
=
total_length
,
dynamic_ncols
=
True
)
with
maybe_run_profiler
(
train_config
)
as
torch_profiler
:
for
step
,
batch
in
enumerate
(
train_dataloader
):
if
step
>
5
:
break
gc
.
collect
(
1
)
for
key
in
batch
.
keys
():
if
train_config
.
enable_fsdp
:
batch
[
key
]
=
batch
[
key
].
to
(
local_rank
)
...
...
@@ -285,6 +288,9 @@ def evaluation(model,train_config, eval_dataloader, local_rank, tokenizer):
eval_loss
=
0.0
# Initialize evaluation loss
with
MemoryTrace
()
as
memtrace
:
for
step
,
batch
in
enumerate
(
tqdm
(
eval_dataloader
,
colour
=
"
green
"
,
desc
=
"
evaluating Epoch
"
,
dynamic_ncols
=
True
)):
if
step
>
5
:
break
gc
.
collect
(
1
)
for
key
in
batch
.
keys
():
if
train_config
.
enable_fsdp
:
batch
[
key
]
=
batch
[
key
].
to
(
local_rank
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment