first commit
This commit is contained in:
parent
d09107a569
commit
af39834acd
|
@ -0,0 +1,64 @@
|
|||
{
|
||||
"_name_or_path": "umm-maybe/AI-image-detector",
|
||||
"_num_labels": 2,
|
||||
"architectures": [
|
||||
"SwinForImageClassification"
|
||||
],
|
||||
"attention_probs_dropout_prob": 0.0,
|
||||
"depths": [
|
||||
2,
|
||||
2,
|
||||
18,
|
||||
2
|
||||
],
|
||||
"drop_path_rate": 0.1,
|
||||
"embed_dim": 128,
|
||||
"encoder_stride": 32,
|
||||
"hidden_act": "gelu",
|
||||
"hidden_dropout_prob": 0.0,
|
||||
"hidden_size": 1024,
|
||||
"id2label": {
|
||||
"0": "artificial",
|
||||
"1": "human"
|
||||
},
|
||||
"image_size": 224,
|
||||
"initializer_range": 0.02,
|
||||
"label2id": {
|
||||
"artificial": 0,
|
||||
"human": 1
|
||||
},
|
||||
"layer_norm_eps": 1e-05,
|
||||
"max_length": 128,
|
||||
"mlp_ratio": 4.0,
|
||||
"model_type": "swin",
|
||||
"num_channels": 3,
|
||||
"num_heads": [
|
||||
4,
|
||||
8,
|
||||
16,
|
||||
32
|
||||
],
|
||||
"num_layers": 4,
|
||||
"out_features": [
|
||||
"stage4"
|
||||
],
|
||||
"out_indices": [
|
||||
4
|
||||
],
|
||||
"padding": "max_length",
|
||||
"patch_size": 4,
|
||||
"path_norm": true,
|
||||
"problem_type": "single_label_classification",
|
||||
"qkv_bias": true,
|
||||
"stage_names": [
|
||||
"stem",
|
||||
"stage1",
|
||||
"stage2",
|
||||
"stage3",
|
||||
"stage4"
|
||||
],
|
||||
"torch_dtype": "float32",
|
||||
"transformers_version": "4.36.1",
|
||||
"use_absolute_embeddings": false,
|
||||
"window_size": 7
|
||||
}
|
Binary file not shown.
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"do_normalize": true,
|
||||
"do_rescale": true,
|
||||
"do_resize": true,
|
||||
"image_mean": [
|
||||
0.485,
|
||||
0.456,
|
||||
0.406
|
||||
],
|
||||
"image_processor_type": "ViTImageProcessor",
|
||||
"image_std": [
|
||||
0.229,
|
||||
0.224,
|
||||
0.225
|
||||
],
|
||||
"resample": 3,
|
||||
"rescale_factor": 0.00392156862745098,
|
||||
"size": {
|
||||
"height": 224,
|
||||
"width": 224
|
||||
}
|
||||
}
|
Binary file not shown.
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"data_path": "Colby/autotrain-data-sdxl-detection",
|
||||
"model": "umm-maybe/AI-image-detector",
|
||||
"username": "Colby",
|
||||
"lr": 5e-05,
|
||||
"epochs": 3,
|
||||
"batch_size": 8,
|
||||
"warmup_ratio": 0.1,
|
||||
"gradient_accumulation": 1,
|
||||
"optimizer": "adamw_torch",
|
||||
"scheduler": "linear",
|
||||
"weight_decay": 0.0,
|
||||
"max_grad_norm": 1.0,
|
||||
"seed": 42,
|
||||
"train_split": "train",
|
||||
"valid_split": "validation",
|
||||
"logging_steps": -1,
|
||||
"project_name": "/tmp/model",
|
||||
"auto_find_batch_size": false,
|
||||
"mixed_precision": "fp16",
|
||||
"save_total_limit": 1,
|
||||
"save_strategy": "epoch",
|
||||
"push_to_hub": true,
|
||||
"repo_id": "Colby/sdxl-detection",
|
||||
"evaluation_strategy": "epoch",
|
||||
"image_column": "autotrain_image",
|
||||
"target_column": "autotrain_label",
|
||||
"log": "none"
|
||||
}
|
Loading…
Reference in New Issue