Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
ease
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
ease
Commits
80367b9c
Commit
80367b9c
authored
Apr 22, 2013
by
Vik Paruchuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update gitignore
parent
52120fed
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
8 additions
and
2 deletions
+8
-2
.gitignore
+5
-0
machine_learning/__init__.py
+0
-0
machine_learning/create.py
+1
-1
machine_learning/data/essaycorpus.txt
+0
-0
machine_learning/data/good_pos_ngrams.p
+0
-0
machine_learning/essay_set.py
+0
-0
machine_learning/external_code/__init__.py
+0
-0
machine_learning/external_code/fisher/LICENSE.txt
+0
-0
machine_learning/external_code/fisher/__init__.py
+1
-0
machine_learning/external_code/fisher/fisher.py
+0
-0
machine_learning/feature_extractor.py
+0
-0
machine_learning/grade.py
+0
-0
machine_learning/model_creator.py
+0
-0
machine_learning/predictor_extractor.py
+0
-0
machine_learning/predictor_set.py
+0
-0
machine_learning/util_functions.py
+0
-0
setup.py
+1
-1
No files found.
.gitignore
View file @
80367b9c
...
...
@@ -5,3 +5,8 @@ models/
*~
tests/
_build/
build/
dist/
machine_learning.egg-info/
*.egg
machine
-learning/external_code
/__init__.py
→
machine
_learning
/__init__.py
View file @
80367b9c
File moved
machine
-
learning/create.py
→
machine
_
learning/create.py
View file @
80367b9c
...
...
@@ -11,7 +11,7 @@ import numpy
#Define base path and add to sys path
base_path
=
os
.
path
.
dirname
(
__file__
)
sys
.
path
.
append
(
base_path
)
one_up_path
=
os
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'..
'
))
one_up_path
=
os
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'..//
'
))
sys
.
path
.
append
(
one_up_path
)
#Import modules that are dependent on the base path
...
...
machine
-
learning/data/essaycorpus.txt
→
machine
_
learning/data/essaycorpus.txt
View file @
80367b9c
File moved
machine
-
learning/data/good_pos_ngrams.p
→
machine
_
learning/data/good_pos_ngrams.p
View file @
80367b9c
File moved
machine
-
learning/essay_set.py
→
machine
_
learning/essay_set.py
View file @
80367b9c
File moved
machine
-learning/external_code/fisher
/__init__.py
→
machine
_learning/external_code
/__init__.py
View file @
80367b9c
File moved
machine
-
learning/external_code/fisher/LICENSE.txt
→
machine
_
learning/external_code/fisher/LICENSE.txt
View file @
80367b9c
File moved
machine_learning/external_code/fisher/__init__.py
0 → 100644
View file @
80367b9c
__author__
=
'vik'
machine
-
learning/external_code/fisher/fisher.py
→
machine
_
learning/external_code/fisher/fisher.py
View file @
80367b9c
File moved
machine
-
learning/feature_extractor.py
→
machine
_
learning/feature_extractor.py
View file @
80367b9c
File moved
machine
-
learning/grade.py
→
machine
_
learning/grade.py
View file @
80367b9c
File moved
machine
-
learning/model_creator.py
→
machine
_
learning/model_creator.py
View file @
80367b9c
File moved
machine
-
learning/predictor_extractor.py
→
machine
_
learning/predictor_extractor.py
View file @
80367b9c
File moved
machine
-
learning/predictor_set.py
→
machine
_
learning/predictor_set.py
View file @
80367b9c
File moved
machine
-
learning/util_functions.py
→
machine
_
learning/util_functions.py
View file @
80367b9c
File moved
setup.py
View file @
80367b9c
...
...
@@ -6,7 +6,7 @@ with open('requirements.txt') as f:
setup
(
name
=
"machine-learning"
,
version
=
"0.1"
,
packages
=
find_packages
()
,
packages
=
[
'machine_learning'
,
'machine_learning.external_code'
,
'machine_learning.data'
,
'machine_learning.external_code.fisher'
]
,
package_data
=
{
''
:
[
'*.txt'
,
'*.rst'
,
'*.p'
],
},
...
...
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