- Select the object(s) to export
- Open the document properties window (Ctrl+Shift+D)
- Select "Resize page to drawing or selection"
- File > Save As Copy...
- Select Optimized SVG as the format if you want to use it on the web
Reed Slaby, March 2018
Having grown tired of wasting a perfectly good monitor on my ethereum mining rig, I finally decided to replace the Ubuntu Desktop 16.04 installation with Ubuntu Server 16.04. Many of the gtutorials available at the time of this writing range from unecessarily complicated to flat-out wrong. This guide is intended to address many of those shortfalls.
To complete this guide, you should already have:
- Basic knowledge of Linux
- An Ethereum wallet
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
def find_epsilon(matrix, min_samples): | |
""" | |
Automatically find epsilon hyperparameter necessary to run DBSCAN. | |
Args: | |
matrix (numpy array): Matrix embbeding. Each row represents a product title in form of a vector. | |
min_samples(int): Should be the same value of the min_samples hyperparameter used in DBSCAN. | |
Returns: | |
return eps(float): Value of episilon hyperparameter. | |
""" |
OlderNewer