Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- Dockerfile +1 -1
- __pycache__/app.cpython-39.pyc +0 -0
- pytorch-image-models/timm/__pycache__/__init__.cpython-39.pyc +0 -0
- pytorch-image-models/timm/__pycache__/version.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/__init__.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/auto_augment.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/config.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/constants.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/dataset.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/dataset_factory.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/dataset_info.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/distributed_sampler.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/imagenet_info.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/loader.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/mixup.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/random_erasing.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/real_labels.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/transforms.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/__pycache__/transforms_factory.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/readers/__pycache__/__init__.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/readers/__pycache__/class_map.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/readers/__pycache__/img_extensions.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/readers/__pycache__/reader.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/readers/__pycache__/reader_factory.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/readers/__pycache__/reader_hfds.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/readers/__pycache__/reader_image_folder.cpython-39.pyc +0 -0
- pytorch-image-models/timm/data/readers/__pycache__/reader_image_in_tar.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/__init__.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/activations.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/activations_me.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/adaptive_avgmax_pool.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/attention2d.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/attention_pool.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/attention_pool2d.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/blur_pool.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/bottleneck_attn.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/cbam.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/classifier.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/cond_conv2d.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/config.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/conv2d_same.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/conv_bn_act.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/create_act.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/create_attn.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/create_conv2d.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/create_norm.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/create_norm_act.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/drop.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/eca.cpython-39.pyc +0 -0
- pytorch-image-models/timm/layers/__pycache__/evo_norm.cpython-39.pyc +0 -0
Dockerfile
CHANGED
|
@@ -11,7 +11,7 @@ WORKDIR /app
|
|
| 11 |
|
| 12 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 13 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 14 |
-
RUN git clone https://github.com/huggingface/pytorch-image-models.git && cd pytorch-image-models && pip install --no-cache-dir --upgrade -r requirements.txt
|
| 15 |
COPY --chown=user train.sh pytorch-image-models
|
| 16 |
RUN chmod +x pytorch-image-models/train.sh
|
| 17 |
|
|
|
|
| 11 |
|
| 12 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 13 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 14 |
+
RUN git clone https://github.com/meg-huggingface/pytorch-image-models.git && cd pytorch-image-models && pip install --no-cache-dir --upgrade -r requirements.txt
|
| 15 |
COPY --chown=user train.sh pytorch-image-models
|
| 16 |
RUN chmod +x pytorch-image-models/train.sh
|
| 17 |
|
__pycache__/app.cpython-39.pyc
CHANGED
|
Binary files a/__pycache__/app.cpython-39.pyc and b/__pycache__/app.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/__pycache__/__init__.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/__pycache__/__init__.cpython-39.pyc and b/pytorch-image-models/timm/__pycache__/__init__.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/__pycache__/version.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/__pycache__/version.cpython-39.pyc and b/pytorch-image-models/timm/__pycache__/version.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/__init__.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/__init__.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/__init__.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/auto_augment.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/auto_augment.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/auto_augment.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/config.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/config.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/config.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/constants.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/constants.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/constants.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/dataset.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/dataset.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/dataset.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/dataset_factory.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/dataset_factory.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/dataset_factory.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/dataset_info.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/dataset_info.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/dataset_info.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/distributed_sampler.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/distributed_sampler.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/distributed_sampler.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/imagenet_info.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/imagenet_info.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/imagenet_info.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/loader.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/loader.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/loader.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/mixup.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/mixup.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/mixup.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/random_erasing.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/random_erasing.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/random_erasing.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/real_labels.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/real_labels.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/real_labels.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/transforms.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/transforms.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/transforms.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/__pycache__/transforms_factory.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/__pycache__/transforms_factory.cpython-39.pyc and b/pytorch-image-models/timm/data/__pycache__/transforms_factory.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/readers/__pycache__/__init__.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/readers/__pycache__/__init__.cpython-39.pyc and b/pytorch-image-models/timm/data/readers/__pycache__/__init__.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/readers/__pycache__/class_map.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/readers/__pycache__/class_map.cpython-39.pyc and b/pytorch-image-models/timm/data/readers/__pycache__/class_map.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/readers/__pycache__/img_extensions.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/readers/__pycache__/img_extensions.cpython-39.pyc and b/pytorch-image-models/timm/data/readers/__pycache__/img_extensions.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/readers/__pycache__/reader.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/readers/__pycache__/reader.cpython-39.pyc and b/pytorch-image-models/timm/data/readers/__pycache__/reader.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/readers/__pycache__/reader_factory.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/readers/__pycache__/reader_factory.cpython-39.pyc and b/pytorch-image-models/timm/data/readers/__pycache__/reader_factory.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/readers/__pycache__/reader_hfds.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/readers/__pycache__/reader_hfds.cpython-39.pyc and b/pytorch-image-models/timm/data/readers/__pycache__/reader_hfds.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/readers/__pycache__/reader_image_folder.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/readers/__pycache__/reader_image_folder.cpython-39.pyc and b/pytorch-image-models/timm/data/readers/__pycache__/reader_image_folder.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/data/readers/__pycache__/reader_image_in_tar.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/data/readers/__pycache__/reader_image_in_tar.cpython-39.pyc and b/pytorch-image-models/timm/data/readers/__pycache__/reader_image_in_tar.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/__init__.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/__init__.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/__init__.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/activations.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/activations.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/activations.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/activations_me.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/activations_me.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/activations_me.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/adaptive_avgmax_pool.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/adaptive_avgmax_pool.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/adaptive_avgmax_pool.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/attention2d.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/attention2d.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/attention2d.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/attention_pool.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/attention_pool.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/attention_pool.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/attention_pool2d.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/attention_pool2d.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/attention_pool2d.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/blur_pool.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/blur_pool.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/blur_pool.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/bottleneck_attn.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/bottleneck_attn.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/bottleneck_attn.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/cbam.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/cbam.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/cbam.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/classifier.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/classifier.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/classifier.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/cond_conv2d.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/cond_conv2d.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/cond_conv2d.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/config.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/config.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/config.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/conv2d_same.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/conv2d_same.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/conv2d_same.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/conv_bn_act.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/conv_bn_act.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/conv_bn_act.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/create_act.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/create_act.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/create_act.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/create_attn.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/create_attn.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/create_attn.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/create_conv2d.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/create_conv2d.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/create_conv2d.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/create_norm.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/create_norm.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/create_norm.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/create_norm_act.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/create_norm_act.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/create_norm_act.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/drop.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/drop.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/drop.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/eca.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/eca.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/eca.cpython-39.pyc differ
|
|
|
pytorch-image-models/timm/layers/__pycache__/evo_norm.cpython-39.pyc
CHANGED
|
Binary files a/pytorch-image-models/timm/layers/__pycache__/evo_norm.cpython-39.pyc and b/pytorch-image-models/timm/layers/__pycache__/evo_norm.cpython-39.pyc differ
|
|
|