_id
stringlengths
2
7
title
stringlengths
1
88
partition
stringclasses
3 values
text
stringlengths
75
19.8k
language
stringclasses
1 value
meta_information
dict
q270000
configure_uploads
test
def configure_uploads(app, upload_sets): """ Call this after the app has been configured. It will go through all the upload sets, get their configuration, and store the configuration on the app. It will also register the uploads module if it hasn't been set. This can be called multiple times with di...
python
{ "resource": "" }
q270001
UploadSet.config
test
def config(self): """ This gets the current configuration. By default, it looks up the current application and gets the configuration from there. But if you don't want to go to the full effort of setting an application, or it's otherwise outside of a request context, set the `_co...
python
{ "resource": "" }
q270002
UploadSet.url
test
def url(self, filename): """ This function gets the URL a file uploaded to this set would be accessed at. It doesn't check whether said file exists. :param filename: The filename to return the URL for. """ base = self.config.base_url if base is None: ...
python
{ "resource": "" }
q270003
UploadSet.path
test
def path(self, filename, folder=None): """ This returns the absolute path of a file uploaded to this set. It doesn't actually check whether said file exists. :param filename: The filename to return the path for. :param folder: The subfolder within the upload set previously used ...
python
{ "resource": "" }
q270004
UploadSet.extension_allowed
test
def extension_allowed(self, ext): """ This determines whether a specific extension is allowed. It is called by `file_allowed`, so if you override that but still want to check extensions, call back into this. :param ext: The extension to check, without the dot. """ ...
python
{ "resource": "" }
q270005
UploadSet.resolve_conflict
test
def resolve_conflict(self, target_folder, basename): """ If a file with the selected name already exists in the target folder, this method is called to resolve the conflict. It should return a new basename for the file. The default implementation splits the name and extension an...
python
{ "resource": "" }
q270006
get_vprof_version
test
def get_vprof_version(filename): """Returns actual version specified in filename.""" with open(filename) as src_file: version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", src_file.read(), re.M) if version_match: return version_match.group...
python
{ "resource": "" }
q270007
_remove_duplicates
test
def _remove_duplicates(objects): """Removes duplicate objects. http://www.peterbe.com/plog/uniqifiers-benchmark. """ seen, uniq = set(), [] for obj in objects: obj_id = id(obj) if obj_id in seen: continue seen.add(obj_id) uniq.append(obj) return uniq
python
{ "resource": "" }
q270008
_get_obj_count_difference
test
def _get_obj_count_difference(objs1, objs2): """Returns count difference in two collections of Python objects.""" clean_obj_list1 = _process_in_memory_objects(objs1) clean_obj_list2 = _process_in_memory_objects(objs2) obj_count_1 = _get_object_count_by_type(clean_obj_list1) obj_count_2 = _get_object...
python
{ "resource": "" }
q270009
_format_obj_count
test
def _format_obj_count(objects): """Formats object count.""" result = [] regex = re.compile(r'<(?P<type>\w+) \'(?P<name>\S+)\'>') for obj_type, obj_count in objects.items(): if obj_count != 0: match = re.findall(regex, repr(obj_type)) if match: obj_type, ob...
python
{ "resource": "" }
q270010
_CodeEventsTracker._trace_memory_usage
test
def _trace_memory_usage(self, frame, event, arg): #pylint: disable=unused-argument """Checks memory usage when 'line' event occur.""" if event == 'line' and frame.f_code.co_filename in self.target_modules: self._events_list.append( (frame.f_lineno, self._process.memory_info(...
python
{ "resource": "" }
q270011
_CodeEventsTracker.code_events
test
def code_events(self): """Returns processed memory usage.""" if self._resulting_events: return self._resulting_events for i, (lineno, mem, func, fname) in enumerate(self._events_list): mem_in_mb = float(mem - self.mem_overhead) / _BYTES_IN_MB if (self._resulti...
python
{ "resource": "" }
q270012
_CodeEventsTracker.obj_overhead
test
def obj_overhead(self): """Returns all objects that are considered a profiler overhead. Objects are hardcoded for convenience. """ overhead = [ self, self._resulting_events, self._events_list, self._process ] overhead_count ...
python
{ "resource": "" }
q270013
_CodeEventsTracker.compute_mem_overhead
test
def compute_mem_overhead(self): """Returns memory overhead.""" self.mem_overhead = (self._process.memory_info().rss - builtins.initial_rss_size)
python
{ "resource": "" }
q270014
MemoryProfiler.profile_package
test
def profile_package(self): """Returns memory stats for a package.""" target_modules = base_profiler.get_pkg_module_names(self._run_object) try: with _CodeEventsTracker(target_modules) as prof: prof.compute_mem_overhead() runpy.run_path(self._run_object...
python
{ "resource": "" }
q270015
MemoryProfiler.profile_module
test
def profile_module(self): """Returns memory stats for a module.""" target_modules = {self._run_object} try: with open(self._run_object, 'rb') as srcfile,\ _CodeEventsTracker(target_modules) as prof: code = compile(srcfile.read(), self._run_object, 'exe...
python
{ "resource": "" }
q270016
MemoryProfiler.profile_function
test
def profile_function(self): """Returns memory stats for a function.""" target_modules = {self._run_object.__code__.co_filename} with _CodeEventsTracker(target_modules) as prof: prof.compute_mem_overhead() result = self._run_object(*self._run_args, **self._run_kwargs) ...
python
{ "resource": "" }
q270017
MemoryProfiler.run
test
def run(self): """Collects memory stats for specified Python program.""" existing_objects = _get_in_memory_objects() prof, result = self.profile() new_objects = _get_in_memory_objects() new_obj_count = _get_obj_count_difference(new_objects, existing_objects) result_obj_c...
python
{ "resource": "" }
q270018
get_pkg_module_names
test
def get_pkg_module_names(package_path): """Returns module filenames from package. Args: package_path: Path to Python package. Returns: A set of module filenames. """ module_names = set() for fobj, modname, _ in pkgutil.iter_modules(path=[package_path]): filename = os.pat...
python
{ "resource": "" }
q270019
run_in_separate_process
test
def run_in_separate_process(func, *args, **kwargs): """Runs function in separate process. This function is used instead of a decorator, since Python multiprocessing module can't serialize decorated function on all platforms. """ manager = multiprocessing.Manager() manager_dict = manager.dict() ...
python
{ "resource": "" }
q270020
BaseProfiler.get_run_object_type
test
def get_run_object_type(run_object): """Determines run object type.""" if isinstance(run_object, tuple): return 'function' run_object, _, _ = run_object.partition(' ') if os.path.isdir(run_object): return 'package' return 'module'
python
{ "resource": "" }
q270021
BaseProfiler.init_module
test
def init_module(self, run_object): """Initializes profiler with a module.""" self.profile = self.profile_module self._run_object, _, self._run_args = run_object.partition(' ') self._object_name = '%s (module)' % self._run_object self._globs = { '__file__': self._run_o...
python
{ "resource": "" }
q270022
BaseProfiler.init_package
test
def init_package(self, run_object): """Initializes profiler with a package.""" self.profile = self.profile_package self._run_object, _, self._run_args = run_object.partition(' ') self._object_name = '%s (package)' % self._run_object self._replace_sysargs()
python
{ "resource": "" }
q270023
BaseProfiler.init_function
test
def init_function(self, run_object): """Initializes profiler with a function.""" self.profile = self.profile_function self._run_object, self._run_args, self._run_kwargs = run_object filename = inspect.getsourcefile(self._run_object) self._object_name = '%s @ %s (function)' % ( ...
python
{ "resource": "" }
q270024
BaseProfiler._replace_sysargs
test
def _replace_sysargs(self): """Replaces sys.argv with proper args to pass to script.""" sys.argv[:] = [self._run_object] if self._run_args: sys.argv += self._run_args.split()
python
{ "resource": "" }
q270025
_StatProfiler.sample
test
def sample(self, signum, frame): #pylint: disable=unused-argument """Samples current stack and adds result in self._stats. Args: signum: Signal that activates handler. frame: Frame on top of the stack when signal is handled. """ stack = [] while frame an...
python
{ "resource": "" }
q270026
_StatProfiler._insert_stack
test
def _insert_stack(stack, sample_count, call_tree): """Inserts stack into the call tree. Args: stack: Call stack. sample_count: Sample count of call stack. call_tree: Call tree. """ curr_level = call_tree for func in stack: next_lev...
python
{ "resource": "" }
q270027
_StatProfiler._fill_sample_count
test
def _fill_sample_count(self, node): """Counts and fills sample counts inside call tree.""" node['sampleCount'] += sum( self._fill_sample_count(child) for child in node['children']) return node['sampleCount']
python
{ "resource": "" }
q270028
_StatProfiler._format_tree
test
def _format_tree(self, node, total_samples): """Reformats call tree for the UI.""" funcname, filename, _ = node['stack'] sample_percent = self._get_percentage( node['sampleCount'], total_samples) color_hash = base_profiler.hash_name('%s @ %s' % (funcname, filename)) r...
python
{ "resource": "" }
q270029
_StatProfiler.call_tree
test
def call_tree(self): """Returns call tree.""" call_tree = {'stack': 'base', 'sampleCount': 0, 'children': []} for stack, sample_count in self._stats.items(): self._insert_stack(reversed(stack), sample_count, call_tree) self._fill_sample_count(call_tree) if not call_tr...
python
{ "resource": "" }
q270030
FlameGraphProfiler._profile_package
test
def _profile_package(self): """Runs statistical profiler on a package.""" with _StatProfiler() as prof: prof.base_frame = inspect.currentframe() try: runpy.run_path(self._run_object, run_name='__main__') except SystemExit: pass ...
python
{ "resource": "" }
q270031
FlameGraphProfiler._profile_module
test
def _profile_module(self): """Runs statistical profiler on a module.""" with open(self._run_object, 'rb') as srcfile, _StatProfiler() as prof: code = compile(srcfile.read(), self._run_object, 'exec') prof.base_frame = inspect.currentframe() try: exec(c...
python
{ "resource": "" }
q270032
FlameGraphProfiler.profile_function
test
def profile_function(self): """Runs statistical profiler on a function.""" with _StatProfiler() as prof: result = self._run_object(*self._run_args, **self._run_kwargs) call_tree = prof.call_tree return { 'objectName': self._object_name, 'sampleInterva...
python
{ "resource": "" }
q270033
Profiler._transform_stats
test
def _transform_stats(prof): """Processes collected stats for UI.""" records = [] for info, params in prof.stats.items(): filename, lineno, funcname = info cum_calls, num_calls, time_per_call, cum_time, _ = params if prof.total_tt == 0: percenta...
python
{ "resource": "" }
q270034
Profiler._profile_package
test
def _profile_package(self): """Runs cProfile on a package.""" prof = cProfile.Profile() prof.enable() try: runpy.run_path(self._run_object, run_name='__main__') except SystemExit: pass prof.disable() prof_stats = pstats.Stats(prof) ...
python
{ "resource": "" }
q270035
Profiler._profile_module
test
def _profile_module(self): """Runs cProfile on a module.""" prof = cProfile.Profile() try: with open(self._run_object, 'rb') as srcfile: code = compile(srcfile.read(), self._run_object, 'exec') prof.runctx(code, self._globs, None) except SystemExit...
python
{ "resource": "" }
q270036
Profiler.profile_function
test
def profile_function(self): """Runs cProfile on a function.""" prof = cProfile.Profile() prof.enable() result = self._run_object(*self._run_args, **self._run_kwargs) prof.disable() prof_stats = pstats.Stats(prof) prof_stats.calc_callees() return { ...
python
{ "resource": "" }
q270037
init_db
test
def init_db(): """Initializes DB.""" with contextlib.closing(connect_to_db()) as db: db.cursor().executescript(DB_SCHEMA) db.commit()
python
{ "resource": "" }
q270038
show_guestbook
test
def show_guestbook(): """Returns all existing guestbook records.""" cursor = flask.g.db.execute( 'SELECT name, message FROM entry ORDER BY id DESC;') entries = [{'name': row[0], 'message': row[1]} for row in cursor.fetchall()] return jinja2.Template(LAYOUT).render(entries=entries)
python
{ "resource": "" }
q270039
add_entry
test
def add_entry(): """Adds single guestbook record.""" name, msg = flask.request.form['name'], flask.request.form['message'] flask.g.db.execute( 'INSERT INTO entry (name, message) VALUES (?, ?)', (name, msg)) flask.g.db.commit() return flask.redirect('/')
python
{ "resource": "" }
q270040
profiler_handler
test
def profiler_handler(uri): """Profiler handler.""" # HTTP method should be GET. if uri == 'main': runner.run(show_guestbook, 'cmhp') # In this case HTTP method should be POST singe add_entry uses POST elif uri == 'add': runner.run(add_entry, 'cmhp') return flask.redirect('/')
python
{ "resource": "" }
q270041
start
test
def start(host, port, profiler_stats, dont_start_browser, debug_mode): """Starts HTTP server with specified parameters. Args: host: Server host name. port: Server port. profiler_stats: A dict with collected program stats. dont_start_browser: Whether to open browser after profili...
python
{ "resource": "" }
q270042
StatsHandler._handle_root
test
def _handle_root(): """Handles index.html requests.""" res_filename = os.path.join( os.path.dirname(__file__), _PROFILE_HTML) with io.open(res_filename, 'rb') as res_file: content = res_file.read() return content, 'text/html'
python
{ "resource": "" }
q270043
StatsHandler._handle_other
test
def _handle_other(self): """Handles static files requests.""" res_filename = os.path.join( os.path.dirname(__file__), _STATIC_DIR, self.path[1:]) with io.open(res_filename, 'rb') as res_file: content = res_file.read() _, extension = os.path.splitext(self.path) ...
python
{ "resource": "" }
q270044
StatsHandler.do_GET
test
def do_GET(self): """Handles HTTP GET requests.""" handler = self.uri_map.get(self.path) or self._handle_other content, content_type = handler() compressed_content = gzip.compress(content) self._send_response( 200, headers=(('Content-type', '%s; charset=utf-8' % conte...
python
{ "resource": "" }
q270045
StatsHandler.do_POST
test
def do_POST(self): """Handles HTTP POST requests.""" post_data = self.rfile.read(int(self.headers['Content-Length'])) json_data = gzip.decompress(post_data) self._profile_json.update(json.loads(json_data.decode('utf-8'))) self._send_response( 200, headers=(('Content-t...
python
{ "resource": "" }
q270046
StatsHandler._send_response
test
def _send_response(self, http_code, message=None, headers=None): """Sends HTTP response code, message and headers.""" self.send_response(http_code, message) if headers: for header in headers: self.send_header(*header) self.end_headers()
python
{ "resource": "" }
q270047
check_standard_dir
test
def check_standard_dir(module_path): """Checks whether path belongs to standard library or installed modules.""" if 'site-packages' in module_path: return True for stdlib_path in _STDLIB_PATHS: if fnmatch.fnmatchcase(module_path, stdlib_path + '*'): return True return False
python
{ "resource": "" }
q270048
_CodeHeatmapCalculator.record_line
test
def record_line(self, frame, event, arg): # pylint: disable=unused-argument """Records line execution time.""" if event == 'line': if self.prev_timestamp: runtime = time.time() - self.prev_timestamp self.lines.append([self.prev_path, self.prev_lineno, runtime...
python
{ "resource": "" }
q270049
_CodeHeatmapCalculator.lines_without_stdlib
test
def lines_without_stdlib(self): """Filters code from standard library from self.lines.""" prev_line = None current_module_path = inspect.getabsfile(inspect.currentframe()) for module_path, lineno, runtime in self.lines: module_abspath = os.path.abspath(module_path) ...
python
{ "resource": "" }
q270050
_CodeHeatmapCalculator.fill_heatmap
test
def fill_heatmap(self): """Fills code heatmap and execution count dictionaries.""" for module_path, lineno, runtime in self.lines_without_stdlib: self._execution_count[module_path][lineno] += 1 self._heatmap[module_path][lineno] += runtime
python
{ "resource": "" }
q270051
CodeHeatmapProfiler._skip_lines
test
def _skip_lines(src_code, skip_map): """Skips lines in src_code specified by skip map.""" if not skip_map: return [['line', j + 1, l] for j, l in enumerate(src_code)] code_with_skips, i = [], 0 for line, length in skip_map: code_with_skips.extend( ...
python
{ "resource": "" }
q270052
CodeHeatmapProfiler._profile_package
test
def _profile_package(self): """Calculates heatmap for package.""" with _CodeHeatmapCalculator() as prof: try: runpy.run_path(self._run_object, run_name='__main__') except SystemExit: pass heatmaps = [] for filename, heatmap in prof...
python
{ "resource": "" }
q270053
CodeHeatmapProfiler._format_heatmap
test
def _format_heatmap(self, filename, heatmap, execution_count): """Formats heatmap for UI.""" with open(filename) as src_file: file_source = src_file.read().split('\n') skip_map = self._calc_skips(heatmap, len(file_source)) run_time = sum(time for time in heatmap.values())...
python
{ "resource": "" }
q270054
CodeHeatmapProfiler._profile_module
test
def _profile_module(self): """Calculates heatmap for module.""" with open(self._run_object, 'r') as srcfile: src_code = srcfile.read() code = compile(src_code, self._run_object, 'exec') try: with _CodeHeatmapCalculator() as prof: exec(code, sel...
python
{ "resource": "" }
q270055
CodeHeatmapProfiler.profile_function
test
def profile_function(self): """Calculates heatmap for function.""" with _CodeHeatmapCalculator() as prof: result = self._run_object(*self._run_args, **self._run_kwargs) code_lines, start_line = inspect.getsourcelines(self._run_object) source_lines = [] for line in co...
python
{ "resource": "" }
q270056
run_profilers
test
def run_profilers(run_object, prof_config, verbose=False): """Runs profilers on run_object. Args: run_object: An object (string or tuple) for profiling. prof_config: A string with profilers configuration. verbose: True if info about running profilers should be shown. Returns: ...
python
{ "resource": "" }
q270057
run
test
def run(func, options, args=(), kwargs={}, host='localhost', port=8000): # pylint: disable=dangerous-default-value """Runs profilers on a function. Args: func: A Python function. options: A string with profilers configuration (i.e. 'cmh'). args: func non-keyword arguments. kwar...
python
{ "resource": "" }
q270058
SparkBaseNB.predict_proba
test
def predict_proba(self, X): """ Return probability estimates for the RDD containing test vector X. Parameters ---------- X : RDD containing array-like items, shape = [m_samples, n_features] Returns ------- C : RDD with array-like items , shape = [n_sampl...
python
{ "resource": "" }
q270059
SparkBaseNB.predict_log_proba
test
def predict_log_proba(self, X): """ Return log-probability estimates for the RDD containing the test vector X. Parameters ---------- X : RDD containing array-like items, shape = [m_samples, n_features] Returns ------- C : RDD with array-like item...
python
{ "resource": "" }
q270060
SparkGaussianNB.fit
test
def fit(self, Z, classes=None): """Fit Gaussian Naive Bayes according to X, y Parameters ---------- X : array-like, shape (n_samples, n_features) Training vectors, where n_samples is the number of samples and n_features is the number of features. y : arr...
python
{ "resource": "" }
q270061
SparkCountVectorizer._count_vocab
test
def _count_vocab(self, analyzed_docs): """Create sparse feature matrix, and vocabulary where fixed_vocab=False """ vocabulary = self.vocabulary_ j_indices = _make_int_array() indptr = _make_int_array() indptr.append(0) for doc in analyzed_docs: for fea...
python
{ "resource": "" }
q270062
SparkCountVectorizer._sort_features
test
def _sort_features(self, vocabulary): """Sort features by name Returns a reordered matrix and modifies the vocabulary in place """ sorted_features = sorted(six.iteritems(vocabulary)) map_index = np.empty(len(sorted_features), dtype=np.int32) for new_val, (term, old_val) ...
python
{ "resource": "" }
q270063
SparkCountVectorizer._limit_features
test
def _limit_features(self, X, vocabulary, high=None, low=None, limit=None): """Remove too rare or too common features. Prune features that are non zero in more samples than high or less documents than low, modifying the vocabulary, and restricting it to at most th...
python
{ "resource": "" }
q270064
SparkCountVectorizer.fit_transform
test
def fit_transform(self, Z): """Learn the vocabulary dictionary and return term-document matrix. This is equivalent to fit followed by transform, but more efficiently implemented. Parameters ---------- Z : iterable or DictRDD with column 'X' An iterable of ra...
python
{ "resource": "" }
q270065
SparkCountVectorizer.transform
test
def transform(self, Z): """Transform documents to document-term matrix. Extract token counts out of raw text documents using the vocabulary fitted with fit or the one provided to the constructor. Parameters ---------- raw_documents : iterable An iterable whi...
python
{ "resource": "" }
q270066
SparkStandardScaler.to_scikit
test
def to_scikit(self): """ Convert to equivalent StandardScaler """ scaler = StandardScaler(with_mean=self.with_mean, with_std=self.with_std, copy=self.copy) scaler.__dict__ = self.__dict__ return scaler
python
{ "resource": "" }
q270067
SparkLinearModelMixin._spark_fit
test
def _spark_fit(self, cls, Z, *args, **kwargs): """Wraps a Scikit-learn Linear model's fit method to use with RDD input. Parameters ---------- cls : class object The sklearn linear model's class to wrap. Z : TupleRDD or DictRDD The distributed trai...
python
{ "resource": "" }
q270068
SparkLinearModelMixin._spark_predict
test
def _spark_predict(self, cls, X, *args, **kwargs): """Wraps a Scikit-learn Linear model's predict method to use with RDD input. Parameters ---------- cls : class object The sklearn linear model's class to wrap. Z : ArrayRDD The distributed data to...
python
{ "resource": "" }
q270069
SparkLinearRegression.fit
test
def fit(self, Z): """ Fit linear model. Parameters ---------- Z : DictRDD with (X, y) values X containing numpy array or sparse matrix - The training data y containing the target values Returns ------- self : returns an instance o...
python
{ "resource": "" }
q270070
SparkPipeline.fit
test
def fit(self, Z, **fit_params): """Fit all the transforms one after the other and transform the data, then fit the transformed data using the final estimator. Parameters ---------- Z : ArrayRDD, TupleRDD or DictRDD Input data in blocked distributed format. R...
python
{ "resource": "" }
q270071
SparkPipeline.fit_transform
test
def fit_transform(self, Z, **fit_params): """Fit all the transforms one after the other and transform the data, then use fit_transform on transformed data using the final estimator.""" Zt, fit_params = self._pre_transform(Z, **fit_params) if hasattr(self.steps[-1][-1], 'fit_trans...
python
{ "resource": "" }
q270072
SparkPipeline.score
test
def score(self, Z): """Applies transforms to the data, and the score method of the final estimator. Valid only if the final estimator implements score.""" Zt = Z for name, transform in self.steps[:-1]: Zt = transform.transform(Zt) return self.steps[-1][-1].sco...
python
{ "resource": "" }
q270073
SparkGridSearchCV._fit
test
def _fit(self, Z, parameter_iterable): """Actual fitting, performing the search over parameters.""" self.scorer_ = check_scoring(self.estimator, scoring=self.scoring) cv = self.cv cv = _check_cv(cv, Z) if self.verbose > 0: if isinstance(parameter_iterable, Sized): ...
python
{ "resource": "" }
q270074
_score
test
def _score(estimator, Z_test, scorer): """Compute the score of an estimator on a given test set.""" score = scorer(estimator, Z_test) if not isinstance(score, numbers.Number): raise ValueError("scoring must return a number, got %s (%s) instead." % (str(score), type(score))) ...
python
{ "resource": "" }
q270075
SparkKMeans.fit
test
def fit(self, Z): """Compute k-means clustering. Parameters ---------- Z : ArrayRDD or DictRDD containing array-like or sparse matrix Train data. Returns ------- self """ X = Z[:, 'X'] if isinstance(Z, DictRDD) else Z check_rd...
python
{ "resource": "" }
q270076
SparkKMeans.predict
test
def predict(self, X): """Predict the closest cluster each sample in X belongs to. In the vector quantization literature, `cluster_centers_` is called the code book and each value returned by `predict` is the index of the closest code in the code book. Parameters -------...
python
{ "resource": "" }
q270077
SparkSGDClassifier.predict
test
def predict(self, X): """Distributed method to predict class labels for samples in X. Parameters ---------- X : ArrayRDD containing {array-like, sparse matrix} Samples. Returns ------- C : ArrayRDD Predicted class label per sample. ...
python
{ "resource": "" }
q270078
check_rdd_dtype
test
def check_rdd_dtype(rdd, expected_dtype): """Checks if the blocks in the RDD matches the expected types. Parameters: ----------- rdd: splearn.BlockRDD The RDD to check expected_dtype: {type, list of types, tuple of types, dict of types} Expected type(s). If the RDD is a DictRDD the ...
python
{ "resource": "" }
q270079
SparkDictVectorizer.fit
test
def fit(self, Z): """Learn a list of feature name -> indices mappings. Parameters ---------- Z : DictRDD with column 'X' Dict(s) or Mapping(s) from feature names (arbitrary Python objects) to feature values (strings or convertible to dtype). Returns ...
python
{ "resource": "" }
q270080
SparkVarianceThreshold.fit
test
def fit(self, Z): """Learn empirical variances from X. Parameters ---------- X : {array-like, sparse matrix}, shape (n_samples, n_features) Sample vectors from which to compute variances. y : any Ignored. This parameter exists only for compatibility with...
python
{ "resource": "" }
q270081
SparkTruncatedSVD.fit_transform
test
def fit_transform(self, Z): """Fit LSI model to X and perform dimensionality reduction on X. Parameters ---------- X : {array-like, sparse matrix}, shape (n_samples, n_features) Training data. Returns ------- X_new : array, shape (n_samples, n_compon...
python
{ "resource": "" }
q270082
SparkTruncatedSVD.transform
test
def transform(self, Z): """Perform dimensionality reduction on X. Parameters ---------- X : {array-like, sparse matrix}, shape (n_samples, n_features) New data. Returns ------- X_new : array, shape (n_samples, n_components) Reduced versio...
python
{ "resource": "" }
q270083
_block_collection
test
def _block_collection(iterator, dtype, bsize=-1): """Pack rdd with a specific collection constructor.""" i = 0 accumulated = [] for a in iterator: if (bsize > 0) and (i >= bsize): yield _pack_accumulated(accumulated, dtype) accumulated = [] i = 0 accum...
python
{ "resource": "" }
q270084
_block_tuple
test
def _block_tuple(iterator, dtypes, bsize=-1): """Pack rdd of tuples as tuples of arrays or scipy.sparse matrices.""" i = 0 blocked_tuple = None for tuple_i in iterator: if blocked_tuple is None: blocked_tuple = tuple([] for _ in range(len(tuple_i))) if (bsize > 0) and (i >= ...
python
{ "resource": "" }
q270085
block
test
def block(rdd, bsize=-1, dtype=None): """Block an RDD Parameters ---------- rdd : RDD RDD of data points to block into either numpy arrays, scipy sparse matrices, or pandas data frames. Type of data point will be automatically inferred and blocked accordingly. bsiz...
python
{ "resource": "" }
q270086
BlockRDD.transform
test
def transform(self, fn, dtype=None, *args, **kwargs): """Equivalent to map, compatibility purpose only. Column parameter ignored. """ rdd = self._rdd.map(fn) if dtype is None: return self.__class__(rdd, noblock=True, **self.get_params()) if dtype is np.ndarra...
python
{ "resource": "" }
q270087
ArrayLikeRDDMixin.shape
test
def shape(self): """Returns the shape of the data.""" # TODO cache first = self.first().shape shape = self._rdd.map(lambda x: x.shape[0]).sum() return (shape,) + first[1:]
python
{ "resource": "" }
q270088
SparseRDD.toarray
test
def toarray(self): """Returns the data as numpy.array from each partition.""" rdd = self._rdd.map(lambda x: x.toarray()) return np.concatenate(rdd.collect())
python
{ "resource": "" }
q270089
DictRDD.transform
test
def transform(self, fn, column=None, dtype=None): """Execute a transformation on a column or columns. Returns the modified DictRDD. Parameters ---------- f : function The function to execute on the columns. column : {str, list or None} The column(...
python
{ "resource": "" }
q270090
bitperm
test
def bitperm(s, perm, pos): """Returns zero if there are no permissions for a bit of the perm. of a file. Otherwise it returns a positive value :param os.stat_result s: os.stat(file) object :param str perm: R (Read) or W (Write) or X (eXecute) :param str pos: USR (USeR) or GRP (GRouP) or OTH (OTHer) ...
python
{ "resource": "" }
q270091
only_root_write
test
def only_root_write(path): """File is only writable by root :param str path: Path to file :return: True if only root can write :rtype: bool """ s = os.stat(path) for ug, bp in [(s.st_uid, bitperm(s, 'w', 'usr')), (s.st_gid, bitperm(s, 'w', 'grp'))]: # User id (is not root) and bit p...
python
{ "resource": "" }
q270092
check_config
test
def check_config(file, printfn=print): """Command to check configuration file. Raises InvalidConfig on error :param str file: path to config file :param printfn: print function for success message :return: None """ Config(file).read() printfn('The configuration file "{}" is correct'.format(...
python
{ "resource": "" }
q270093
Config.read
test
def read(self): """Parse and validate the config file. The read data is accessible as a dictionary in this instance :return: None """ try: data = load(open(self.file), Loader) except (UnicodeDecodeError, YAMLError) as e: raise InvalidConfig(self.file, '{}...
python
{ "resource": "" }
q270094
run_as_cmd
test
def run_as_cmd(cmd, user, shell='bash'): """Get the arguments to execute a command as a user :param str cmd: command to execute :param user: User for use :param shell: Bash, zsh, etc. :return: arguments :rtype: list """ to_execute = get_shell(shell) + [EXECUTE_SHELL_PARAM, cmd] if u...
python
{ "resource": "" }
q270095
execute_cmd
test
def execute_cmd(cmd, cwd=None, timeout=5): """Excecute command on thread :param cmd: Command to execute :param cwd: current working directory :return: None """ p = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) try: p.wait(timeout=timeout) except ...
python
{ "resource": "" }
q270096
execute_over_ssh
test
def execute_over_ssh(cmd, ssh, cwd=None, shell='bash'): """Excecute command on remote machine using SSH :param cmd: Command to execute :param ssh: Server to connect. Port is optional :param cwd: current working directory :return: None """ port = None parts = ssh.split(':', 1) if len...
python
{ "resource": "" }
q270097
ExecuteUrl.validate
test
def validate(self): """Check self.data. Raise InvalidConfig on error :return: None """ if (self.data.get('content-type') or self.data.get('body')) and \ self.data.get('method', '').lower() not in CONTENT_TYPE_METHODS: raise InvalidConfig( extr...
python
{ "resource": "" }
q270098
ExecuteUrlServiceBase.get_headers
test
def get_headers(self): """Get HTTP Headers to send. By default default_headers :return: HTTP Headers :rtype: dict """ headers = copy.copy(self.default_headers or {}) headers.update(self.data.get('headers') or {}) return headers
python
{ "resource": "" }
q270099
ExecuteOwnApiBase.get_body
test
def get_body(self): """Return "data" value on self.data :return: data to send :rtype: str """ if self.default_body: return self.default_body data = self.data.get('data') if isinstance(data, dict): return json.dumps(data) return dat...
python
{ "resource": "" }