Skip to content

Commit

Permalink
Documentation formatting to numpy style
Browse files Browse the repository at this point in the history
  • Loading branch information
andersonw1 committed Nov 13, 2024
1 parent 62b6139 commit 1efa0cd
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/lasdi/param.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def createInitialTrainSpace(self, param_list):

def createInitialTrainSpaceForHull(self, param_list):
'''
Concatenates the provided lists of training points into a 2D array.
Concatenates the provided lists of training points into a 2D array.
param_list: A list of parameter dictionaries
Output: mesh_grid
Expand Down Expand Up @@ -113,7 +114,8 @@ def createTestGridSpace(self, param_list):

def createTestGridSpaceForHull(self, param_list):
'''
Builds an initial uniform grid for the testing parameters when the test_space is 'hull'.
Builds an initial uniform grid for the testing parameters when the test_space is 'hull'.
param_list: A list of parameter dictionaries
Output: gridSizes, mesh_grids, param_grid
Expand All @@ -132,9 +134,10 @@ def createTestGridSpaceForHull(self, param_list):

def createTestHullSpace(self, param_list):
'''
This function builds an initial uniform grid for the testing parameters, and then
returns any testing points which are within the convex hull of the provided
training parameters.
This function builds an initial uniform grid for the testing parameters, and then
returns any testing points which are within the convex hull of the provided
training parameters.
param_list: A list of parameter dictionaries
Output: gridSizes, mesh_grids, test_space
Expand Down

0 comments on commit 1efa0cd

Please sign in to comment.