Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
karthick1
/
TestNlpScoring
like
0
Text Classification
Adapters
PyTorch
google-tensorflow
TensorFlow
JAX
Rust
fka/awesome-chatgpt-prompts
English
code
arxiv:
1910.09700
License:
other
Model card
Files
Files and versions
Community
Use this model
57f7abb
TestNlpScoring
/
build.sh
karthick1
Upload 9 files
77a4068
over 1 year ago
raw
Copy download link
history
blame
Safe
253 Bytes
#!/bin/bash
set
-e
if
[
$1
==
"--push"
];
then
WILL_PUSH=1
else
WILL_PUSH=0
fi
docker buildx build \
--platform linux/amd64,linux/arm64 \
-t docker/getting-started:latest \
$( ((
$WILL_PUSH
==
1
)) &&
printf
%s
'--push'
) .