-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add changes by Michael Stanway (April 2023) #51
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
classdef NetworkFactory | ||
% A factory to initialise the network to be used within an ARTwarp run. | ||
% Summary of this class goes here | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like the text in |
||
% Detailed explanation goes here | ||
|
||
methods (Static) | ||
|
@@ -9,9 +9,13 @@ | |
net = Network(weights); | ||
end | ||
|
||
|
||
function load_network | ||
% Load a saved network | ||
% TODO: no idea how we would store networks | ||
% This will need to include: | ||
% Weights of each category | ||
% Number of whistles that were previously contained | ||
% in a category | ||
end | ||
|
||
function net = run_categorisation(network, contours, parameters) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was no
BrazilData
subdirectory in the archive I have received from @vmjanik. I will switch back toTest_Data
next time we meet. Although this will not help with the other problem, this will demonstrate how to edit PRs.