Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
zeroMN
/
AVEdate
like
1
Tasks:
Text Classification
Table Question Answering
Zero-Shot Classification
Modalities:
Image
Formats:
imagefolder
Languages:
Chinese
English
Size:
< 1K
Tags:
chemistry
finance
Libraries:
Datasets
Croissant
License:
apache-2.0
Dataset card
Data Studio
Files
Files and versions
Community
1
main
AVEdate
/
chat-ui-main
/
src
/
lib
/
utils
/
isUrl.ts
zeroMN
Upload 517 files
8d88d9b
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
111 Bytes
export
function
isURL
(
url:
string
) {
try
{
new
URL
(url);
return
true
;
}
catch
(e) {
return
false
;
}
}