Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html>
<h"... is not valid JSON
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
TADNE sample images
Images generated by the TADNE model.
Note
prediction_results/anime-face-detector- https://github.com/hysts/anime-face-detector
- YOLOv3 + HRNetV2
prediction_results/deepdanbooru- https://github.com/KichangKim/DeepDanbooru
model-resnet_custom_v3.h5
prediction_results/deepdanbooru/intermediate_features- Output by the following model
- 4096-dim
def create_model() -> tf.keras.Model:
path = huggingface_hub.hf_hub_download('hysts/DeepDanbooru',
'model-resnet_custom_v3.h5',
use_auth_token=TOKEN)
model = tf.keras.models.load_model(path)
model = tf.keras.Model(model.input, model.layers[-4].output)
layer = tf.keras.layers.GlobalAveragePooling2D()
model = tf.keras.Sequential([model, layer])
return model
- Downloads last month
- 13