Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
C
CNNTrainLang
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
monticore
EmbeddedMontiArc
languages
CNNTrainLang
Commits
d28d9e4e
Commit
d28d9e4e
authored
Aug 27, 2020
by
Evgeny Kusmenko
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into 'master'
Develop See merge request
!29
parents
9f74da3c
fe10fd90
Pipeline
#324195
passed with stage
in 4 minutes and 24 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
pom.xml
pom.xml
+1
-1
src/main/grammars/de/monticore/lang/monticar/CNNTrain.mc4
src/main/grammars/de/monticore/lang/monticar/CNNTrain.mc4
+3
-0
No files found.
pom.xml
View file @
d28d9e4e
...
...
@@ -18,7 +18,7 @@
<groupId>
de.monticore.lang.monticar
</groupId>
<artifactId>
cnn-train
</artifactId>
<version>
0.3.1
1
-SNAPSHOT
</version>
<version>
0.3.1
2
-SNAPSHOT
</version>
<!-- == PROJECT DEPENDENCIES ============================================= -->
...
...
src/main/grammars/de/monticore/lang/monticar/CNNTrain.mc4
View file @
d28d9e4e
...
...
@@ -73,6 +73,7 @@ grammar CNNTrain extends de.monticore.lang.monticar.Common2, de.monticore.Number
|
inv
:
"inv"
|
poly
:
"poly"
|
sigmoid
:
"sigmoid"
);
TrainContextValue
implements
ConfigValue
=
(
cpu
:
"cpu"
|
gpu
:
"gpu"
);
interface
OptimizerParamEntry
extends
Entry
;
...
...
@@ -135,6 +136,8 @@ grammar CNNTrain extends de.monticore.lang.monticar.Common2, de.monticore.Number
interface
AdamEntry
extends
OptimizerParamEntry
;
AdamOptimizer
implements
OptimizerValue
=
name
:
"adam"
(
"{"
params
:
AdamEntry
*
"}"
)?;
AdamWOptimizer
implements
OptimizerValue
=
name
:
"adamw"
(
"{"
params
:
AdamEntry
*
"}"
)?;
interface
RmsPropEntry
extends
OptimizerParamEntry
;
RmsPropOptimizer
implements
OptimizerValue
=
name
:
"rmsprop"
(
"{"
params
:
RmsPropEntry
*
"}"
)?;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment