Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
LBN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
1
Merge Requests
1
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
3pia
LBN
Commits
a3549674
Commit
a3549674
authored
Feb 22, 2019
by
Marcel Rieger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add numpy and tensorflow to requirements.
parent
7653d396
Pipeline
#107099
passed with stages
in 33 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
28 deletions
+18
-28
__version__.py
__version__.py
+0
-14
lbn.py
lbn.py
+8
-0
requirements.txt
requirements.txt
+2
-0
setup.py
setup.py
+8
-14
No files found.
__version__.py
deleted
100644 → 0
View file @
7653d396
# coding: utf-8
"""
TensorFlow implementation of the Lorentz Boost Network (LBN). https://arxiv.org/abs/1812.09722.
"""
__author__
=
"Marcel Rieger"
__copyright__
=
"Copyright 2018-2019, Marcel Rieger"
__license__
=
"BSD"
__credits__
=
[
"Martin Erdmann"
,
"Erik Geiser"
,
"Yannik Rath"
,
"Marcel Rieger"
]
__contact__
=
"https://git.rwth-aachen.de/3pia/lbn"
__email__
=
"marcel.rieger@cern.ch"
__version__
=
"1.0.1"
lbn.py
View file @
a3549674
...
...
@@ -5,6 +5,14 @@ TensorFlow implementation of the Lorentz Boost Network (LBN). https://arxiv.org/
"""
__author__
=
"Marcel Rieger"
__copyright__
=
"Copyright 2018-2019, Marcel Rieger"
__license__
=
"BSD"
__credits__
=
[
"Martin Erdmann"
,
"Erik Geiser"
,
"Yannik Rath"
,
"Marcel Rieger"
]
__contact__
=
"https://git.rwth-aachen.de/3pia/lbn"
__email__
=
"marcel.rieger@cern.ch"
__version__
=
"1.0.1"
__all__
=
[
"LBN"
,
"FeatureFactoryBase"
,
"FeatureFactory"
]
...
...
requirements.txt
View file @
a3549674
numpy
tensorflow
setup.py
View file @
a3549674
...
...
@@ -34,20 +34,14 @@ with open(os.path.join(this_dir, "README.md"), "r") as f:
with
open
(
os
.
path
.
join
(
this_dir
,
"requirements.txt"
),
"r"
)
as
f
:
install_requires
=
[
line
.
strip
()
for
line
in
f
.
readlines
()
if
line
.
strip
()]
# load package infos
pkg
=
{}
with
open
(
os
.
path
.
join
(
this_dir
,
"__version__.py"
),
"r"
)
as
f
:
exec
(
f
.
read
(),
pkg
)
setuptools
.
setup
(
name
=
"lbn"
,
version
=
pkg
[
"__version__"
]
,
author
=
pkg
[
"__author__"
]
,
author_email
=
pkg
[
"__email__"
]
,
description
=
pkg
[
"__doc__"
]
.
strip
().
split
(
"
\n
"
)[
0
].
strip
(),
license
=
pkg
[
"__license__"
]
,
url
=
pkg
[
"__contact__"
]
,
name
=
lbn
.
__name__
,
version
=
lbn
.
__version__
,
author
=
lbn
.
__author__
,
author_email
=
lbn
.
__email__
,
description
=
lbn
.
__doc__
.
strip
().
split
(
"
\n
"
)[
0
].
strip
(),
license
=
lbn
.
__license__
,
url
=
lbn
.
__contact__
,
keywords
=
keywords
,
classifiers
=
classifiers
,
long_description
=
long_description
,
...
...
@@ -55,6 +49,6 @@ setuptools.setup(
install_requires
=
install_requires
,
python_requires
=
">=2.7"
,
zip_safe
=
False
,
py_modules
=
[
"lbn"
],
py_modules
=
[
lbn
.
__name__
],
data_files
=
[(
"."
,
[
"LICENSE"
,
"requirements.txt"
,
"README.md"
])],
)
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