Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
marinone94
/
xls-r-300m-sv-robust
like
1
Automatic Speech Recognition
Transformers
PyTorch
mozilla-foundation/common_voice_9_0
Swedish
wav2vec2
mozilla-foundation/common_voice_9_0
Generated from Trainer
Eval Results
Inference Endpoints
License:
cc0-1.0
Model card
Files
Files and versions
Community
1
Train
Deploy
Use this model
main
xls-r-300m-sv-robust
/
kenlm
/
include
/
util
/
unistd.hh
marinone94
Training in progress, epoch 0
1ce325b
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
303 Bytes
#
ifndef
UTIL_UNISTD_H
#
define
UTIL_UNISTD_H
#
if
defined(_WIN32) || defined(_WIN64)
// Windows doesn't define <unistd.h>
//
// So we define what we need here instead:
//
#
define
STDIN_FILENO=0
#
define
STDOUT_FILENO=1
#
else
// Huzzah for POSIX!
#
include
<unistd.h>
#
endif
#
endif
// UTIL_UNISTD_H