Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cascadetabnet | 891 | 2 years ago | 60 | mit | Python | |||||
This repository contains the code and implementation details of the CascadeTabNet paper "CascadeTabNet: An approach for end to end table detection and structure recognition from image-based documents" | ||||||||||
Axcell | 285 | 2 years ago | apache-2.0 | Python | ||||||
Tools for extracting tables and results from Machine Learning papers | ||||||||||
Options_data_science | 280 | a year ago | 2 | bsd-3-clause | Python | |||||
Collecting, analyzing, visualizing & paper trading options market data | ||||||||||
Paper Datatable | 231 | 48 | 5 years ago | December 20, 2015 | 70 | gpl-3.0 | HTML | |||
A material design implementation of a data table. | ||||||||||
Chord | 99 | 4 years ago | May 23, 2021 | mit | Go | |||||
Implementation of Chord DHT(Distributed Hash Table) paper | ||||||||||
Sub Gc | 75 | a year ago | 1 | mit | Jupyter Notebook | |||||
Code repository for our paper "Comprehensive Image Captioning via Scene Graph Decomposition" in ECCV 2020. | ||||||||||
Paper Datatable Api | 70 | 11 | 5 years ago | April 04, 2018 | 12 | gpl-3.0 | HTML | |||
A material design implementation of a data table | ||||||||||
Bwt Datatable | 43 | 1 | 4 years ago | 2 | April 02, 2019 | 8 | gpl-3.0 | JavaScript | ||
Data table with Polymer 3 support! | ||||||||||
My Project | 26 | 6 months ago | mit | Stata | ||||||
Sample Replication Package | ||||||||||
Table2net | 16 | 2 years ago | 3 | other | JavaScript | |||||
[WIP] Implementation of Chord paper
https://pdos.csail.mit.edu/papers/ton:chord/paper-ton.pdf
package main
import (
"github.com/arriqaaq/chord"
"github.com/arriqaaq/chord/internal"
"log"
"os"
"os/signal"
"time"
)
func createNode(id string, addr string, joinNode *internal.Node) (*chord.Node, error) {
cnf := chord.DefaultConfig()
cnf.Id = id
cnf.Addr = addr
cnf.Timeout = 10 * time.Millisecond
cnf.MaxIdle = 100 * time.Millisecond
n, err := chord.NewNode(cnf, joinNode)
return n, err
}
func main() {
joinNode := chord.NewInode("1", "0.0.0.0:8001")
h, err := createNode("8", "0.0.0.0:8003", joinNode)
if err != nil {
log.Fatalln(err)
return
}
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
<-c
h.Stop()
}
This implementation helped me a lot in designing the code base r-medina/gmaj