using System; using System.Collections; using System.Collections.Generic; using System.Text; namespace Tensorflow.Keras.Metrics { public class MeanRelativeError : Metric { public MeanRelativeError(Tensor normalizer, string name, string dtype) : base(name, dtype) { throw new NotImplementedException(); } public override Tensor result() { throw new NotImplementedException(); } public override void update_state(Args args, KwArgs kwargs) { throw new NotImplementedException(); } public override Hashtable get_config() { throw new NotImplementedException(); } } }