Skip to content
Snippets Groups Projects
Commit e729a198 authored by Maxence Naud's avatar Maxence Naud
Browse files

Upd LR unit-test with learning namespace

parent 71630179
No related branches found
No related tags found
1 merge request!3Dev - learning - v0.1.0
......@@ -16,11 +16,11 @@
#include <vector>
// #include "aidge/data/Tensor.hpp"
#include "aidge/optimizer/LR/LRScheduler.hpp"
#include "aidge/optimizer/LR/LRSchedulerList.hpp"
#include "aidge/learning/learningRate/LRScheduler.hpp"
#include "aidge/learning/learningRate/LRSchedulerList.hpp"
namespace Aidge {
TEST_CASE("[core/optimizer/LR] LRSchduler(computeOutputDims)", "[LRScheduler]") {
TEST_CASE("[learning/LR] Construction & evolution", "[LRScheduler]") {
constexpr std::uint16_t NBTRIALS = 10;
// Create a random number generator
......@@ -37,7 +37,7 @@ TEST_CASE("[core/optimizer/LR] LRSchduler(computeOutputDims)", "[LRScheduler]")
const float truth = initValDist(gen);
// create learning rate scheduler
LRScheduler myLR = ConstantLR(truth);
LRScheduler myLR = learning::ConstantLR(truth);
// prediction
std::vector<float> profile = myLR.lr_profiling(nbSteps);
......@@ -61,7 +61,7 @@ TEST_CASE("[core/optimizer/LR] LRSchduler(computeOutputDims)", "[LRScheduler]")
const std::size_t nbSteps = nbStepsDist(gen);
const float gamma = gammaDist(gen);
const std::size_t stepSize = stepSizeDist(gen);
LRScheduler myLR = StepLR(initialLR, stepSize, gamma);
LRScheduler myLR = learning::StepLR(initialLR, stepSize, gamma);
// truth
std::vector<float> truth(nbSteps);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment