All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.simiacryptus.mindseye.eval.CachedTrainable Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
/*
 * Copyright (c) 2019 by Andrew Charneski.
 *
 * The author licenses this file to you under the
 * Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance
 * with the License.  You may obtain a copy
 * of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package com.simiacryptus.mindseye.eval;

import com.simiacryptus.mindseye.lang.PointSample;
import com.simiacryptus.mindseye.opt.TrainingMonitor;
import com.simiacryptus.ref.lang.RefUtil;
import com.simiacryptus.ref.wrappers.RefArrayList;
import com.simiacryptus.ref.wrappers.RefList;
import com.simiacryptus.ref.wrappers.RefString;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.annotation.Nonnull;

public class CachedTrainable extends TrainableWrapper {
  private static final Logger log = LoggerFactory.getLogger(CachedTrainable.class);

  private final RefList history = new RefArrayList<>();
  private int historySize = 3;
  private boolean verbose = true;

  public CachedTrainable(final T inner) {
    super(inner);
  }

  public int getHistorySize() {
    return historySize;
  }

  public void setHistorySize(int historySize) {
    this.historySize = historySize;
  }

  public boolean isVerbose() {
    return verbose;
  }

  public void setVerbose(boolean verbose) {
    this.verbose = verbose;
  }

  @Nonnull
  @Override
  public CachedTrainable cached() {
    return this.addRef();
  }

  @Nonnull
  @Override
  public PointSample measure(final TrainingMonitor monitor) {
    for (int i = 0; i < history.size(); i++) {
      PointSample result = history.get(i);
      try {
        if (!result.weights.isDifferent()) {
          if (isVerbose()) {
            log.info(RefString.format("Returning cached value; %s buffers unchanged since %s => %s", result.weights.size(),
                result.rate, result.getMean()));
          }
          return result.copyFull();
        }
      } finally {
        result.freeRef();
      }
    }
    final PointSample result = super.measure(monitor);
    history.add(result.copyFull());
    while (getHistorySize() < history.size()) {
      RefUtil.freeRef(history.remove(0));
    }
    return result;
  }

  @Override
  public boolean reseed(final long seed) {
    history.clear();
    return super.reseed(seed);
  }

  public @SuppressWarnings("unused")
  void _free() {
    super._free();
    if (null != history)
      history.freeRef();
  }

  @Nonnull
  public @Override
  @SuppressWarnings("unused")
  CachedTrainable addRef() {
    return (CachedTrainable) super.addRef();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy