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

Commit

Permalink
Merge pull request #89 from sotetsuk/develop-v0.1.1
Browse files Browse the repository at this point in the history
fix version; fix README.md for release v0.1.1
  • Loading branch information
sotetsuk committed May 8, 2016
2 parents e4616c4 + 512ce5d commit 4fa3865
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 37 deletions.
72 changes: 36 additions & 36 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,20 +63,20 @@ for a := range ch {
$ goscholar search --keywords "deep learning nature" --author "y bengio" --after 2015 --num 1 | python -mjson.tool
[
{
"ClusterId": "5362332738201102290",
"InfoId": "0qfs6zbVakoJ",
"Link": {
"Format": "PDF",
"Name": "psu.edu",
"Url": "http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.436.894&rep=rep1&type=pdf"
"cluster_id": "5362332738201102290",
"info_id_": "0qfs6zbVakoJ",
"link": {
"format": "PDF",
"name": "psu.edu",
"url": "http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.436.894&rep=rep1&type=pdf"
},
"NumCite": "390",
"NumVer": "7",
"Title": {
"Name": "Deep learning",
"Url": "http://www.nature.com/nature/journal/v521/n7553/abs/nature14539.html"
"num_cite_": "390",
"num_ver": "7",
"title": {
"name": "Deep learning",
"url": "http://www.nature.com/nature/journal/v521/n7553/abs/nature14539.html"
},
"Year": "2015"
"year": "2015"
}
]
```
Expand All @@ -85,20 +85,20 @@ $ goscholar search --keywords "deep learning nature" --author "y bengio" --after
$ goscholar find 15502119379559163003 | python -mjson.tool
[
{
"ClusterId": "15502119379559163003",
"InfoId": "e6RSJHGXItcJ",
"Link": {
"Format": "PDF",
"Name": "wustl.edu",
"Url": "http://machinelearning.wustl.edu/mlpapers/paper_files/icml2010_Martens10.pdf"
"cluster_id": "15502119379559163003",
"info_id": "e6RSJHGXItcJ",
"link": {
"format": "PDF",
"name": "wustl.edu",
"url": "http://machinelearning.wustl.edu/mlpapers/paper_files/icml2010_Martens10.pdf"
},
"NumCite": "260",
"NumVer": "",
"Title": {
"Name": "Deep learning via Hessian-free optimization",
"Url": "http://machinelearning.wustl.edu/mlpapers/paper_files/icml2010_Martens10.pdf"
"num_cite": "260",
"num_ver": "",
"title": {
"name": "Deep learning via Hessian-free optimization",
"url": "http://machinelearning.wustl.edu/mlpapers/paper_files/icml2010_Martens10.pdf"
},
"Year": "2010"
"year": "2010"
}
]
```
Expand All @@ -107,20 +107,20 @@ $ goscholar find 15502119379559163003 | python -mjson.tool
$ goscholar cite 15502119379559163003 --num 1 | python -mjson.tool
[
{
"ClusterId": "3674494786452480182",
"InfoId": "tmCGO4pt_jIJ",
"Link": {
"Format": "PDF",
"Name": "toronto.edu",
"Url": "http://www.cs.toronto.edu/~asamir/papers/SPM_DNN_12.pdf"
"cluster_id": "3674494786452480182",
"info_id": "tmCGO4pt_jIJ",
"link": {
"format": "PDF",
"name": "toronto.edu",
"url": "http://www.cs.toronto.edu/~asamir/papers/SPM_DNN_12.pdf"
},
"NumCite": "1452",
"NumVer": "27",
"Title": {
"Name": "Deep neural networks for acoustic modeling in speech recognition: The shared views of four research groups",
"Url": "http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6296526"
"num_cite": "1452",
"num_ver": "27",
"title": {
"name": "Deep neural networks for acoustic modeling in speech recognition: The shared views of four research groups",
"url": "http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6296526"
},
"Year": "2012"
"year": "2012"
}
]
```
Expand Down
2 changes: 1 addition & 1 deletion cmd/goscholar/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
const articles_buffer = 100000

func main() {
version := "go-scholar 0.1.0"
version := "go-scholar 0.1.1"
usage := `go-scholar: Google Scholar crawler and scraper written in Go
Usage:
Expand Down

0 comments on commit 4fa3865

Please sign in to comment.