Edit model card

Model description

DoE2Vec model that can transform any design of experiments (function landscape) to a feature vector.
For different input dimensions or sample size you require a different model.
Each model name is build up like doe2vec-d{dimension}-m{sample size}-ls{latent size}-{AE or VAE}-kl{Kl loss weight}

Example code of loading this huggingface model using the doe2vec package.

First install the package

pip install doe2vec

Then import and load the model.

from doe2vec import doe_model

obj = doe_model(
    10,
    8,
    latent_dim=24,
    kl_weight=0.001,
    model_type="VAE"
)
obj.load_from_huggingface()
#test the model
obj.plot_label_clusters_bbob()

Intended uses & limitations

The model is intended to be used to generate feature representations for optimization function landscapes. The representations can then be used for downstream tasks such as automatic optimization pipelines and meta-learning.

Training procedure

The model is trained using a weighed KL loss and mean squared error reconstruction loss. The model is trained using 250.000 randomly generated functions (see the dataset) over 100 epochs.

  • Hardware: 1x Tesla T4 GPU
  • Optimizer: Adam
Downloads last month
6
Unable to determine this model’s pipeline type. Check the docs .

Dataset used to train BasStein/doe2vec-d10-m8-ls24-VAE-kl0.001