Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
microsoft
/
Phi-3-mini-128k-instruct
like
1.63k
Follow
Microsoft
7.96k
Text Generation
Transformers
Safetensors
English
phi3
nlp
code
conversational
custom_code
text-generation-inference
Inference Endpoints
License:
mit
Model card
Files
Files and versions
Community
97
Train
Deploy
Use this model
0ef7a64
Phi-3-mini-128k-instruct
/
Size.cpp
jf8441
Upload 25 files
0ef7a64
verified
9 months ago
raw
Copy download link
history
blame
239 Bytes
#
include
"Size.h"
int
Size::getWidth
()
const
{
return
width;
}
int
Size::getHeight
()
const
{
return
height;
}
void
Size::setWidth
(
int
w)
{
width = w;
}
void
Size::setHeight
(
int
h)
{
height = h;
}