Beta
Explore
Marketplace
Neural Labs
Chat
Wallet
Docs
llama-2-7b-Arabic-medical – AI Model by EngTig | AlphaNeural AI
You can deploy this model and start earning money today!
EngTig
/
llama-2-7b-Arabic-medical
like
0
transformers
pytorch
llama
text-generation
ar
en
autotrain_compatible
text-generation-inference
endpoints_compatible
us
Views
No views yet
Model card
Files and Versions
Community
API
Deploy
This Model was Trained on Custom Arabic Dataset
How to use the Model
1 Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="EngTig/llama-2-7b-Arabic-medical")
2 Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("EngTig/llama-2-7b-Arabic-medical") model = AutoModelForCausalLM.from_pretrained("EngTig/llama-2-7b-Arabic-medical")