Instructions to use tanganke/convnext-base-224_mnist_sgd_batch-size-64_lr-0.01_steps-4000 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tanganke/convnext-base-224_mnist_sgd_batch-size-64_lr-0.01_steps-4000 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="tanganke/convnext-base-224_mnist_sgd_batch-size-64_lr-0.01_steps-4000") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("tanganke/convnext-base-224_mnist_sgd_batch-size-64_lr-0.01_steps-4000") model = AutoModelForImageClassification.from_pretrained("tanganke/convnext-base-224_mnist_sgd_batch-size-64_lr-0.01_steps-4000") - Notebooks
- Google Colab
- Kaggle
File size: 1,505 Bytes
2bb4112 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | ---
base_model:
- facebook/convnext-base-224
library_name: transformers
tags:
- fusion-bench
- merge
---
# Deep Model Fusion
Fine-tuned ResNet model on dataset mnist.
## Models Merged
This is a merged model created using [fusion-bench](https://github.com/tanganke/fusion_bench).
The following models were included in the merge:
- base model: facebook/convnext-base-224
## Configuration
The following YAML configuration was used to produce this model:
### Algorithm Configuration
```yaml
_recursive_: false
_target_: fusion_bench.method.classification.image_classification_finetune.ImageClassificationFineTuning
_usage_: null
_version_: 0.2.31.dev0
dataloader_kwargs:
batch_size: 64
num_workers: 8
pin_memory: true
label_smoothing: 0
lr_scheduler: null
max_epochs: -1
max_steps: 4000
optimizer:
_target_: torch.optim.SGD
lr: 0.01
momentum: 0.9
weight_decay: 0.0001
save_interval: 1000
save_on_train_epoch_end: false
save_top_k: -1
training_data_ratio: null
```
### Model Pool Configuration
```yaml
_recursive_: false
_target_: fusion_bench.modelpool.convnext_for_image_classification.ConvNextForImageClassificationPool
_usage_: null
_version_: 0.2.31.dev0
models:
_pretrained_:
config_path: facebook/convnext-base-224
dataset_name: mnist
pretrained: true
test_datasets: null
train_datasets:
mnist:
_target_: datasets.load_dataset
path: mnist
split: train
val_datasets:
mnist:
_target_: datasets.load_dataset
path: mnist
split: test
```
|