Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
mbuali
/
Llama-3.1-8B-DALv0.1
like
0
Text Generation
PyTorch
8 languages
llama
facebook
meta
llama-3
conversational
arxiv:
2204.05149
License:
llama3.1
Model card
Files
Files and versions
Community
main
Llama-3.1-8B-DALv0.1
/
venv
/
lib
/
python3.12
/
site-packages
/
transformers
/
kernels
/
yoso
/
common.h
mbuali
Upload folder using huggingface_hub
d1ceb73
verified
11 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
273 Bytes
#
define
min(a, b) ((a)<(b)?(a):(b))
#
define
max(a, b) ((a)>(b)?(a):(b))
#
define
ceil_divide(a, b) ((a)/(b)+((a)%(b)!=0))
#
define
select(cond, a, b) ((cond)?(a):(b))
#
define
PI 3.141592
#
define
EPSILON 1e-8
#
define
MAX_VAL 1e12
#
define
MIN_VAL -1e12
#
define
EMPTY_VALUE -1