About 180,000 results
Open links in new tab
  1. Plain Sockets Example Client — hyper-h2 4.1.0 documentation

    This example is a basic HTTP/2 client written using plain Python sockets, and ssl TLS/SSL wrapper for socket objects. This client is not a complete production-ready HTTP/2 client and …

  2. h2: A pure-Python HTTP/2 protocol stack — hyper-h2 4.1.0 …

    h2 is a HTTP/2 protocol stack, written entirely in Python. The goal of h2 is to be a common HTTP/2 stack for the Python ecosystem, usable in all programs regardless of concurrency …

    Missing:

    • Hyper Plain

    Must include:

  3. Getting Started: Writing Your Own HTTP/2 Server - python-hyper

    It covers the basic concepts you need to understand, and talks you through writing a very simple HTTP/2 server. This document assumes you’re moderately familiar with writing Python, and …

    Missing:

    • Hyper Plain

    Must include:

  4. how to draw a correct hyper plane in python - Stack Overflow

    Dec 18, 2019 · One way is to use the decision_function from the classifier and plot some level line (level=0 correspond to your hyperplane). Here is some code. if eps is None: eps = X.std() / 2. …

    Code sample

    def plot_2d_separator(classifier, X, fill=False, ax=None, eps=None):
      if eps is None:
        eps = X.std() / 2.
      x_min, x_max = X[:, 0].min() - eps, X[:, 0].max() + eps
      y_min, y_max = X[:, 1].min() - eps, X[:, 1].max() + eps...
  5. Hyperplane, Subspace and Halfspace - GeeksforGeeks

    A hyperplane is a flat affine subspace of one dimension less than its ambient space. In an n-dimensional space, a hyperplane has n−1 dimensions. It can be defined by a linear equation.
    See more on geeksforgeeks.org
    • Estimated Reading Time: 3 mins

      Missing:

      • Hyper Plain

      Must include:

    • SVM: Separating hyperplane for unbalanced classes

      Find the optimal separating hyperplane using an SVC for classes that are unbalanced. We first find the separating plane with a plain SVC and then plot (dashed) the separating hyperplane with automatically correction for …

    • hyper-connections - PyPI

      Feb 15, 2025 · Hyper Connections. Attempt to make multiple residual streams, proposed in Hyper-Connections paper out of Bytedance AI lab, accessible as an easy to use library, as …

    • Essential Math for Machine Learning: Hyperplanes

      Jan 31, 2024 · In the realms of machine learning, hyperplanes play a pivotal role in shaping concepts, solving problems, and providing insights into complex datasets. Often encountered in algorithms such as...

      Missing:

      • Hyper Plain

      Must include:

    • Code Examples — hyper-h2 4.1.0 documentation - python-hyper

      This section of the documentation contains long-form code examples. These are intended as references for developers that would like to get an understanding of how h2 fits in with various …

    • Visualizing Support Vector Machines (SVM) using Python

      Apr 11, 2025 · Support Vector Machines (SVM) are powerful machine learning algorithms used for classification tasks. They work by finding the best hyperplane that separates different …

      Missing:

      • Hyper Plain

      Must include:

    • Some results have been removed
    Refresh