2021-02-01 14:31:20 +09:00
|
|
|
/*
|
|
|
|
|
* ******************************************************************************
|
|
|
|
|
* *
|
|
|
|
|
* *
|
|
|
|
|
* * This program and the accompanying materials are made available under the
|
|
|
|
|
* * terms of the Apache License, Version 2.0 which is available at
|
|
|
|
|
* * https://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
|
* *
|
2021-02-01 17:47:29 +09:00
|
|
|
* * See the NOTICE file distributed with this work for additional
|
|
|
|
|
* * information regarding copyright ownership.
|
2021-02-01 14:31:20 +09:00
|
|
|
* * 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.
|
|
|
|
|
* *
|
|
|
|
|
* * SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
* *****************************************************************************
|
|
|
|
|
*/
|
2019-06-06 15:21:15 +03:00
|
|
|
|
|
|
|
|
package org.deeplearning4j.optimize.listeners;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.concurrent.atomic.AtomicLong;
|
2023-05-08 09:34:44 +02:00
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import net.brutex.ai.dnn.api.IModel;
|
|
|
|
|
import org.deeplearning4j.optimize.api.BaseTrainingListener;
|
2019-06-06 15:21:15 +03:00
|
|
|
|
|
|
|
|
@Slf4j
|
|
|
|
|
public class TimeIterationListener extends BaseTrainingListener implements Serializable {
|
2022-10-21 15:19:32 +02:00
|
|
|
private final long start;
|
|
|
|
|
private final int iterationCount;
|
|
|
|
|
private final AtomicLong iterationCounter = new AtomicLong(0);
|
2019-06-06 15:21:15 +03:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Constructor
|
|
|
|
|
* @param iterationCount The global number of iteration for training (all epochs)
|
|
|
|
|
*/
|
|
|
|
|
public TimeIterationListener(int iterationCount) {
|
|
|
|
|
this.iterationCount = iterationCount;
|
|
|
|
|
start = System.currentTimeMillis();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2023-03-23 17:39:00 +01:00
|
|
|
public void iterationDone(IModel model, int iteration, int epoch) {
|
2019-06-06 15:21:15 +03:00
|
|
|
long currentIteration = iterationCounter.incrementAndGet();
|
|
|
|
|
long elapsed = System.currentTimeMillis() - start;
|
|
|
|
|
long remaining = (iterationCount - currentIteration) * elapsed / currentIteration;
|
|
|
|
|
long minutes = remaining / (1000 * 60);
|
|
|
|
|
Date date = new Date(start + elapsed + remaining);
|
2022-10-21 15:19:32 +02:00
|
|
|
log.info("Remaining time : " + minutes + "mn - End expected : " + date);
|
2019-06-06 15:21:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|