Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
feat: implement llama3-8b-instruct
Browse files Browse the repository at this point in the history
  • Loading branch information
heiruwu committed Apr 19, 2024
0 parents commit 58aa6b5
Show file tree
Hide file tree
Showing 8 changed files with 872 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .dvc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/config.local
/tmp
/cache
4 changes: 4 additions & 0 deletions .dvc/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[core]
remote = gs
['remote "gs"']
url = gs://public-europe-west2-c-artifacts/vdp/public-dvc-models/model-llama3-8b-instruct/test
3 changes: 3 additions & 0 deletions .dvcignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Add patterns of files dvc should ignore, which could improve
# the performance. Learn more at
# https://dvc.org/doc/user-guide/dvcignore
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/Meta-Llama-3-8B-Instruct
5 changes: 5 additions & 0 deletions Meta-Llama-3-8B-Instruct.dvc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
outs:
- md5: 12ec534c7de529a7e7d9fb76cb92baa9.dir
size: 16069716610
nfiles: 10
path: Meta-Llama-3-8B-Instruct
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
Task: TextGenerationChat
Tags:
- TextGenerationChat
- Llama-3-8B-Instruct
---

# Model-Llama-3-8B-Instruct-dvc

🔥🔥🔥 Deploy [Llama-3-8B-Instruct](https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct) model and on [Instill-Core](https://github.com/instill-ai/instill-core).

This repository contains the Llama-3-8B Instruct Model, managed using [DVC](https://dvc.org/).

```
{
"task_inputs": [
{
"text_generation_chat": {
"conversation": "[{\"role\": \"system\", \"content\": \"You are a helpful assistant.\"},{\"role\": \"user\", \"content\": \"Who won the world series in 2020?\"},{\"role\": \"assistant\", \"content\": \"The Los Angeles Dodgers won the World Series in 2020.\"},{\"role\": \"user\", \"content\": \"Where was it played?\"}]",
"max_new_tokens": "100",
"temperature": "0.8",
"top_k": "20",
"random_seed": "0",
"extra_params": "{\"top_p\": 0.8, \"frequency_penalty\": 1.2}"
}
}
]
}
```
Loading

0 comments on commit 58aa6b5

Please sign in to comment.