Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
kenhktsui
/
llm-data-textbook-quality-classifier-v1
like
8
Text Classification
Transformers
Safetensors
kenhktsui/llm-data-quality-tokenized
English
xlm-roberta
Generated from Trainer
Inference Endpoints
License:
mit
Model card
Files
Files and versions
Community
Train
Deploy
Use this model
87e5658
llm-data-textbook-quality-classifier-v1
/
clean.sh
kenhktsui
llm-data-quality-classifer-compare
a2af9e6
verified
11 months ago
raw
Copy download link
history
blame
Safe
210 Bytes
#!/bin/bash
while
true
do
latest_folder=$(
ls
-td */ |
head
-n 1)
for
folder
in
*/;
do
if
[
$folder
!=
$latest_folder
];
then
rm
-rf
$folder
fi
done
sleep
300
done