KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
PairCNN-Ranking
★ 13
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
awesome-playgrounds
:
Curated list of playgrounds where you can test snippets online
HFT_Project
:
Apply different deep learning models to limit order book.
QSlang
:
A language/format/parser for manual logging of quantified self data, easily editable by humans
artwork
:
An algorithm written in c++ which generates a creative art image which only consists of Words / Triangles / Rectangles or Circles.
node-apollo-boost-github-graphql-api
:
A standalone GraphQL application that uses Apollo Client for consuming the GitHub GraphQL API
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
PairCNN-Ranking
?
Download (.md)
# PairCNN-Ranking A pytorch implementation of [Learning to Rank Short Text Pairs with Convolutional Deep Neural Networks](http://disi.unitn.it/~severyn/papers/sigir-2015-long.pdf) This version is implemented with reference of [zhangzibin](https://github.com/zhangzibin/PairCNN-Ranking) ## Training Data As **train.txt** and **test.txt** in **./data** dir, data sample is separated by line separator, and the sample itself is splited by comma: query, document, label. And the example data is created by me to test the code, which is not real click data. ## Usage ```bash python main.py help ``` ## Project Structure The file holder structure of this project is: ``` ├── checkpoints/ ├── data/ │ ├── __init__.py │ └── dataset.py ├── models/ │ ├── __init__.py │ ├── initfunctional.py │ ├── BasicModule.py │ └── PairCNN.py ├── utils/ │ ├── __init__.py │ └── visualize.py ├── __init__.py ├── config.py ├── main.py ├── requirements.txt ├── README.md ```