-
# 모델별 학습 기록(Acc/F1)
- https://nayohan.notion.site/07-30bd7e17f7f44b078d22342d21131d65
## 1. Torchvision models
- [ ] VGG-19 with batch normalization
- [x] `ResNet-18`: class weight, bactch siz…
-
https://github.com/tensorflow/tpu/blob/1fc9edc1c68e64e6f614fe8c891c40025df792f9/models/official/efficientnet/efficientnet_model.py#L399
https://github.com/tensorflow/tpu/blob/1fc9edc1c68e64e6f614fe8c…
-
Channel x Time(or NumFrames) x Height x Width
I am attempting to load my model in the following format
# Question 1:
How do input 16 frames of size 456x456 into the EfficientNet model?
I …
-
#coding:utf8
import torch
from efficientnet_pytorch import EfficientNet
import torch.nn as nn
class myModel():
def __init__(self):
base_model = EfficientNet.from_pretrained(model_name="effi…
-
Hi all, I'm doing deepfake detection using the EfficientNetB4 architecture. I ran into an issue when I tried to load the pretrained weights provided.
After some digging, I found the source of the p…
-
As shown below, when I try to load from libtorch after creating a pt file in python, an error occurs because the module name does not match
```python
model = torch.hub.load('pytorch/vision:v0.11.0…
-
ModuleNotFoundError: No module named 'model2'
-
Can you please guide me how to add some extra fully connected layer on top of a pre-trained model
```
from efficientnet_pytorch import EfficientNet
model = EfficientNet.from_pretrained('efficientne…
-
# python 3.7, linux
Your code is really helpful, but when I ran the code ,there is a problem that
'_pickle.UnpicklingError: invalid load key, '
-
In efficientnet/models.py :
https://github.com/qubvel/efficientnet/blob/035df1af7951ef6e89f34b9c787c45d4349a9356/efficientnet/model.py#L359-L388
You fall back to the default if input_shape is None…