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
f6c3ffd4
Unverified
Commit
f6c3ffd4
authored
1 year ago
by
Geeta Chauhan
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Plain Diff
Inference updates (#12)
parents
18ea0a62
557e881f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
inference/chat_completion.py
+3
-5
3 additions, 5 deletions
inference/chat_completion.py
inference/inference.py
+7
-7
7 additions, 7 deletions
inference/inference.py
llama_finetuning.py
+5
-7
5 additions, 7 deletions
llama_finetuning.py
with
15 additions
and
19 deletions
inference/chat_completion.py
+
3
−
5
View file @
f6c3ffd4
...
@@ -62,13 +62,11 @@ def main(
...
@@ -62,13 +62,11 @@ def main(
tokenizer
=
LlamaTokenizer
.
from_pretrained
(
model_name
)
tokenizer
=
LlamaTokenizer
.
from_pretrained
(
model_name
)
tokenizer
.
add_special_tokens
(
tokenizer
.
add_special_tokens
(
{
{
"
eos_token
"
:
"
</s>
"
,
"
bos_token
"
:
"
</s>
"
,
"
pad_token
"
:
"
<PAD>
"
,
"
unk_token
"
:
"
</s>
"
,
"
pad_token
"
:
"
[PAD]
"
,
}
}
)
)
chats
=
format_tokens
(
dialogs
,
tokenizer
)
chats
=
format_tokens
(
dialogs
,
tokenizer
)
with
torch
.
no_grad
():
with
torch
.
no_grad
():
...
...
This diff is collapsed.
Click to expand it.
inference/inference.py
+
7
−
7
View file @
f6c3ffd4
...
@@ -7,6 +7,7 @@ import fire
...
@@ -7,6 +7,7 @@ import fire
import
torch
import
torch
import
os
import
os
import
sys
import
sys
import
time
from
typing
import
List
from
typing
import
List
from
transformers
import
LlamaTokenizer
from
transformers
import
LlamaTokenizer
...
@@ -49,15 +50,13 @@ def main(
...
@@ -49,15 +50,13 @@ def main(
# Set the seeds for reproducibility
# Set the seeds for reproducibility
torch
.
cuda
.
manual_seed
(
seed
)
torch
.
cuda
.
manual_seed
(
seed
)
torch
.
manual_seed
(
seed
)
torch
.
manual_seed
(
seed
)
model
=
load_model
(
model_name
,
quantization
)
model
=
load_model
(
model_name
,
quantization
)
tokenizer
=
LlamaTokenizer
.
from_pretrained
(
model_name
)
tokenizer
=
LlamaTokenizer
.
from_pretrained
(
model_name
)
tokenizer
.
add_special_tokens
(
tokenizer
.
add_special_tokens
(
{
{
"
eos_token
"
:
"
</s>
"
,
"
bos_token
"
:
"
</s>
"
,
"
pad_token
"
:
"
<PAD>
"
,
"
unk_token
"
:
"
</s>
"
,
"
pad_token
"
:
"
[PAD]
"
,
}
}
)
)
...
@@ -88,7 +87,7 @@ def main(
...
@@ -88,7 +87,7 @@ def main(
batch
=
tokenizer
(
user_prompt
,
return_tensors
=
"
pt
"
)
batch
=
tokenizer
(
user_prompt
,
return_tensors
=
"
pt
"
)
batch
=
{
k
:
v
.
to
(
"
cuda
"
)
for
k
,
v
in
batch
.
items
()}
batch
=
{
k
:
v
.
to
(
"
cuda
"
)
for
k
,
v
in
batch
.
items
()}
start
=
time
.
perf_counter
()
with
torch
.
no_grad
():
with
torch
.
no_grad
():
outputs
=
model
.
generate
(
outputs
=
model
.
generate
(
**
batch
,
**
batch
,
...
@@ -103,7 +102,8 @@ def main(
...
@@ -103,7 +102,8 @@ def main(
length_penalty
=
length_penalty
,
length_penalty
=
length_penalty
,
**
kwargs
**
kwargs
)
)
e2e_inference_time
=
(
time
.
perf_counter
()
-
start
)
*
1000
print
(
f
"
the inference time is
{
e2e_inference_time
}
ms
"
)
output_text
=
tokenizer
.
decode
(
outputs
[
0
],
skip_special_tokens
=
True
)
output_text
=
tokenizer
.
decode
(
outputs
[
0
],
skip_special_tokens
=
True
)
# Safety check of the model output
# Safety check of the model output
...
...
This diff is collapsed.
Click to expand it.
llama_finetuning.py
+
5
−
7
View file @
f6c3ffd4
...
@@ -109,13 +109,11 @@ def main(**kwargs):
...
@@ -109,13 +109,11 @@ def main(**kwargs):
# Load the tokenizer and add special tokens
# Load the tokenizer and add special tokens
tokenizer
=
LlamaTokenizer
.
from_pretrained
(
train_config
.
model_name
)
tokenizer
=
LlamaTokenizer
.
from_pretrained
(
train_config
.
model_name
)
tokenizer
.
add_special_tokens
(
tokenizer
.
add_special_tokens
(
{
{
"
eos_token
"
:
"
</s>
"
,
"
bos_token
"
:
"
</s>
"
,
"
pad_token
"
:
"
<PAD>
"
,
"
unk_token
"
:
"
</s>
"
,
}
"
pad_token
"
:
'
[PAD]
'
,
)
}
)
if
train_config
.
use_peft
:
if
train_config
.
use_peft
:
peft_config
=
generate_peft_config
(
train_config
,
kwargs
)
peft_config
=
generate_peft_config
(
train_config
,
kwargs
)
model
=
get_peft_model
(
model
,
peft_config
)
model
=
get_peft_model
(
model
,
peft_config
)
...
...
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