Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
aidge
aidge_core
Merge requests
!47
Vit operators
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Vit operators
hrouis/aidge_core:vit_operators
into
tiling
Overview
22
Commits
35
Pipelines
25
Changes
24
Merged
Houssem ROUIS
requested to merge
hrouis/aidge_core:vit_operators
into
tiling
1 year ago
Overview
22
Commits
35
Pipelines
25
Changes
24
Expand
Added Erf, Concat, Gather, ReduceMean, Reshape, Slice and transpose operators and their python bindings
Modified Softmax operator by adding axis attribute to support import from ONNX
Added RemoveDropout Recipe to remove dropout nodes from graphs
Edited
1 year ago
by
Houssem ROUIS
0
0
Merge request reports
Compare
tiling
version 18
1600e82b
1 year ago
version 17
796d1933
1 year ago
version 16
f98af04e
1 year ago
version 15
8722b5a3
1 year ago
version 14
8efe542d
1 year ago
version 13
8efe542d
1 year ago
version 12
2b323814
1 year ago
version 11
fbd36894
1 year ago
version 10
d0b89c96
1 year ago
version 9
d7c395ac
1 year ago
version 8
f0acf0de
1 year ago
version 7
02fdf34a
1 year ago
version 6
988ef2f4
1 year ago
version 5
5052290b
1 year ago
version 4
e244efba
1 year ago
version 3
28aaf31f
1 year ago
version 2
44740599
1 year ago
version 1
1409df0f
1 year ago
tiling (base)
and
latest version
latest version
714f2ceb
35 commits,
1 year ago
version 18
1600e82b
34 commits,
1 year ago
version 17
796d1933
33 commits,
1 year ago
version 16
f98af04e
30 commits,
1 year ago
version 15
8722b5a3
29 commits,
1 year ago
version 14
8efe542d
28 commits,
1 year ago
version 13
8efe542d
27 commits,
1 year ago
version 12
2b323814
24 commits,
1 year ago
version 11
fbd36894
22 commits,
1 year ago
version 10
d0b89c96
19 commits,
1 year ago
version 9
d7c395ac
18 commits,
1 year ago
version 8
f0acf0de
15 commits,
1 year ago
version 7
02fdf34a
14 commits,
1 year ago
version 6
988ef2f4
10 commits,
1 year ago
version 5
5052290b
9 commits,
1 year ago
version 4
e244efba
8 commits,
1 year ago
version 3
28aaf31f
6 commits,
1 year ago
version 2
44740599
5 commits,
1 year ago
version 1
1409df0f
4 commits,
1 year ago
24 files
+
1032
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
24
Search (e.g. *.vue) (Ctrl+P)
aidge_core/unit_tests/test_recipies.py
+
12
−
0
Options
@@ -20,6 +20,18 @@ class test_recipies(unittest.TestCase):
def
tearDown
(
self
):
pass
def
test_remove_dropout
(
self
):
graph_view
=
aidge_core
.
sequential
([
aidge_core
.
GenericOperator
(
"
Conv
"
,
1
,
0
,
1
,
"
Conv0
"
),
aidge_core
.
GenericOperator
(
"
Dropout
"
,
1
,
0
,
1
,
name
=
"
Dropout0
"
)
])
old_nodes
=
graph_view
.
get_nodes
()
aidge_core
.
remove_dropout
(
graph_view
)
self
.
assertTrue
(
len
(
graph_view
.
get_nodes
())
==
len
(
old_nodes
)
-
1
)
self
.
assertTrue
(
"
Dropout0
"
not
in
[
i
.
name
for
i
in
graph_view
.
get_nodes
()])
self
.
assertTrue
(
all
([
i
in
old_nodes
for
i
in
graph_view
.
get_nodes
()]))
def
test_remove_flatten
(
self
):
graph_view
=
aidge_core
.
sequential
([
aidge_core
.
GenericOperator
(
"
Flatten
"
,
1
,
0
,
1
,
name
=
"
Flatten0
"
),
Loading