Skip to content
This repository has been archived by the owner on Apr 30, 2019. It is now read-only.

Commit

Permalink
Set version to 0.1.0 for tagging.
Browse files Browse the repository at this point in the history
  • Loading branch information
x1B committed Sep 23, 2011
1 parent 71f6074 commit 169a3c1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '0.1'
# The full version, including alpha/beta/rc tags.
release = '0.1-SNAPSHOT'
release = '0.1.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion project/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1-SNAPSHOT
0.1.0
2 changes: 1 addition & 1 deletion project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<!-- These versions are likely to change more often. -->
<properties>
<grouperfishVersion>0.1-SNAPSHOT</grouperfishVersion>
<grouperfishVersion>0.1.0</grouperfishVersion>
<hadoopVersion>0.20.2-cdh3u0</hadoopVersion>
<mahoutVersion>0.5-cdh3u0</mahoutVersion>
<elasticsearchVersion>0.17.6</elasticsearchVersion>
Expand Down
2 changes: 1 addition & 1 deletion transforms/commons/src/main/pig/generate_feature_index.pig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
register './akela-0.2-SNAPSHOT.jar'
register './grouperfish-transforms-commons-0.1-SNAPSHOT.jar'
register './grouperfish-transforms-commons-0.1.0.jar'
register './lib/lucene-core-3.1.0.jar'
register './lib/lucene-analyzers-3.1.0.jar'

Expand Down
14 changes: 7 additions & 7 deletions transforms/commons/src/main/pig/generate_tf_document_vectors.pig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
register './akela-0.2-SNAPSHOT.jar'
register './grouperfish-transforms-commons-0.1-SNAPSHOT.jar'
register './grouperfish-transforms-commons-0.1.0.jar'
register './lib/lucene-core-3.1.0.jar'
register './lib/lucene-analyzers-3.1.0.jar'

Expand Down Expand Up @@ -28,15 +28,15 @@ STORE feature_vectors INTO '$OUTPUT' USING com.mozilla.grouperfish.pig.storage.V

/* Run VW LDA on this output */
/*
./vw
./vw
*/
/* Run Mahout's Clustering on this output */
/*
/usr/lib/hadoop/bin/hadoop jar /usr/lib/mahout/mahout-core-0.5-job.jar org.apache.mahout.driver.MahoutDriver lda
-i document-vectors-tf
-o lda-out
-ow
-k 20
/usr/lib/hadoop/bin/hadoop jar /usr/lib/mahout/mahout-core-0.5-job.jar org.apache.mahout.driver.MahoutDriver lda
-i document-vectors-tf
-o lda-out
-ow
-k 20
-v 12000
-x 20
*/

0 comments on commit 169a3c1

Please sign in to comment.