Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cilium | 16,573 | 22 | 17 hours ago | 763 | July 27, 2023 | 1,086 | apache-2.0 | Go | ||
eBPF-based Networking, Security, and Observability | ||||||||||
Linux Network Performance Parameters | 5,091 | 7 days ago | 1 | bsd-3-clause | ||||||
Learn where some of the network sysctl variables fit into the Linux/Kernel network flow. Translations: 🇷🇺 | ||||||||||
F Stack | 3,572 | 7 days ago | 222 | other | C | |||||
F-Stack is an user space network development kit with high performance based on DPDK, FreeBSD TCP/IP stack and coroutine API. | ||||||||||
Neural Tangents | 2,100 | 1 | 4 days ago | 30 | August 24, 2023 | 58 | apache-2.0 | Jupyter Notebook | ||
Fast and Easy Infinite Neural Networks in Python | ||||||||||
Pwru | 2,058 | 4 days ago | 13 | July 14, 2023 | 12 | apache-2.0 | C | |||
Packet, where are you? -- eBPF-based Linux kernel networking debugger | ||||||||||
Wavemon | 815 | 17 days ago | 4 | gpl-3.0 | C | |||||
wavemon is an ncurses-based monitoring application for wireless network devices on Linux. | ||||||||||
Linux | 797 | 11 days ago | 98 | other | C | |||||
XanMod: Linux kernel source code tree | ||||||||||
Network Lab | 522 | a month ago | 1 | Shell | ||||||
Networking lab using root-less VM | ||||||||||
Pfq | 504 | 4 years ago | gpl-2.0 | C | ||||||
Functional Network Framework for Multi-Core Architectures | ||||||||||
Tenus | 467 | 17 | 3 years ago | 6 | July 30, 2020 | 2 | apache-2.0 | Go | ||
Linux networking in Go |
TensorFlow open source implementation of
Deep Neural Networks as Gaussian Processes
by Jaehoon Lee*, Yasaman Bahri*, Roman Novak, Sam Schoenholz, Jeffrey Pennington, Jascha Sohl-dickstein
Presented at the International Conference on Learning Representation(ICLR) 2018.
See also Neural Tangents: Fast and Easy Infinite Neural Networks in Python (ICLR 2020) available at github.com/google/neural-tangents for more up-to-date progress on computing NNGP as well as NT kernels supporting wide variety of architectural components.
A deep neural network with i.i.d. priors over its parameters is equivalent to a Gaussian process in the limit of infinite network width. The Neural Network Gaussian Process (NNGP) is fully described by a covariance kernel determined by corresponding architecture.
This code constructs covariance kernel for the Gaussian process that is equivalent to infinitely wide, fully connected, deep neural networks.
To use the code, run run_experiments.py
,
which uses NNGP kernel to make full Bayesian prediction on the MNIST dataset.
python run_experiments.py \
--num_train=100 \
--num_eval=10000 \
--hparams='nonlinearity=relu,depth=100,weight_var=1.79,bias_var=0.83' \
Code author: Jaehoon Lee, Yasaman Bahri, Roman Novak
Pull requests and issues: @jaehlee
If you use this code, please cite our paper:
@article{
lee2018deep,
title={Deep Neural Networks as Gaussian Processes},
author={Jaehoon Lee, Yasaman Bahri, Roman Novak, Sam Schoenholz, Jeffrey Pennington, Jascha Sohl-dickstein},
journal={International Conference on Learning Representations},
year={2018},
url={https://openreview.net/forum?id=B1EA-M-0Z},
}
This is not an official Google product.