-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
complete rehaul, added vector kernel methods
- Loading branch information
Santos Michelena
committed
Nov 10, 2023
1 parent
6f3d3c3
commit 7fe4e65
Showing
12 changed files
with
50,369 additions
and
5,123 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,15 @@ | ||
module QuadraticTeamDecisionSolver | ||
|
||
include("types.jl") | ||
export QuadTeamProblem, Sample | ||
include("quadTeamProblems.jl") | ||
export QuadTeamProblem, checkProblem, residual, GammaNorm, gammaNorm, cost | ||
|
||
include("problemUtils.jl") | ||
export checkProblem, | ||
checkSample, | ||
checkGamma, | ||
checkData, | ||
loss, | ||
risk, | ||
splitSampleIntoBlocks, | ||
splitDataSetIntoBlocks, | ||
urisk, | ||
reformatR, | ||
reformatU, | ||
reformatr, | ||
reformatY, | ||
reformatYm | ||
|
||
include("teamMMSEhelpers.jl") | ||
include("teamMMSE.jl") | ||
export teamMMSEproblem, generateTeamMMSEsamples, sampleComplexNormal | ||
|
||
include("fixedPointSolvers.jl") | ||
export empiricalAlternatingSolver!, | ||
empiricalJacobiSolver!, jacobiPrecodingSolver!, alternatingPrecodingSolver! | ||
export jacobiSolver, gaussSeidelSolver | ||
|
||
include("kernelTools.jl") | ||
include("kernelMethods.jl") | ||
export exponentialKernel, | ||
gramian, kernelNorm, kernelRegression, kernelRegressor | ||
|
||
include("experimentationTemplates.jl") | ||
export bandwidthExperiment, sinrExperiment, samplesExperiment | ||
|
||
matrixExponentialKernel, gramian, kernelNorm, kernelFunction, kernelRegression | ||
end |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.