- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "crypto/tls" | |
| "crypto/x509" | |
| "fmt" | |
| "io" | |
| "log" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """l-bfgs-b L1-Logistic Regression solver""" | |
| # Author: Vlad Niculae <[email protected]> | |
| # Suggested by Mathieu Blondel | |
| from __future__ import division, print_function | |
| import numpy as np | |
| from scipy.optimize import fmin_l_bfgs_b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import code | |
| import threading | |
| import sys | |
| from io import StringIO | |
| from xmlrpc.client import ServerProxy | |
| from xmlrpc.server import SimpleXMLRPCServer | |
| class OutputHookContext: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| addmm(bias, input, weight) | |
| bias: replicated | |
| output = input * weight | |
| input shard(1), weight, shard(0) -> partial tensor | |
| output -> partial -> replicated? | |
| output + bias -> partial? only do on one rank |