Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scikit-luc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Luc Giffon
scikit-luc
Commits
e5a2915c
Commit
e5a2915c
authored
7 years ago
by
Luc Giffon
Browse files
Options
Downloads
Patches
Plain Diff
modification in the management of version number in __init__.py
parent
a0194a92
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.rst
+15
-1
15 additions, 1 deletion
README.rst
setup.py
+1
-1
1 addition, 1 deletion
setup.py
skluc/__init__.py
+1
-1
1 addition, 1 deletion
skluc/__init__.py
with
17 additions
and
3 deletions
README.rst
+
15
−
1
View file @
e5a2915c
Scikit-Luc
Scikit-Luc
==========
==========
This is a python package containing the usefull script developed or found by Luc Giffon during his PhD thesis.
This is a python package containing the usefull script developed or found by Luc Giffon during his PhD thesis. Those
scripts are mainly related to the machine learning and data processing field.
Installation from Pypi repository
=================================
Anywhere in your working virtualenv first install tensorflow using the documentation: https://www.tensorflow.org/install/
Then just do:
pip install scikit-luc
Installation from sources
Installation from sources
=========================
=========================
...
@@ -14,3 +22,9 @@ In the root directory of the package, just do:
...
@@ -14,3 +22,9 @@ In the root directory of the package, just do:
or
or
pip install -e .
pip install -e .
Convention
==========
When some data is supposedly structured (e.g. images should be 2D array), the output of mldataset shouldn't take that
into account by default.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
e5a2915c
...
@@ -18,7 +18,7 @@ setup(
...
@@ -18,7 +18,7 @@ setup(
# function
# function
packages
=
find_packages
(
exclude
=
[
'
doc
'
,
'
examples
'
]),
packages
=
find_packages
(
exclude
=
[
'
doc
'
,
'
examples
'
]),
# See PEP440 for defining a proper version number
# See PEP440 for defining a proper version number
version
=
'
1.6
'
,
version
=
str
(
skluc
.
__version__
)
,
# Small description of the package
# Small description of the package
description
=
'
Science-Kit developed by Luc Giffon for Luc Giffon during his PhD thesis.
'
,
description
=
'
Science-Kit developed by Luc Giffon for Luc Giffon during his PhD thesis.
'
,
# Long description
# Long description
...
...
This diff is collapsed.
Click to expand it.
skluc/__init__.py
+
1
−
1
View file @
e5a2915c
...
@@ -2,4 +2,4 @@
...
@@ -2,4 +2,4 @@
This package contains some usefull functions for the PhD of Luc Giffon.
This package contains some usefull functions for the PhD of Luc Giffon.
"""
"""
__version__
=
"
1.6
"
__version__
=
"
1.9
"
\ No newline at end of file
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment