Skip to main content

Home/ Python Programming/ Group items tagged Machine

Rss Feed Group items tagged

limatsoft

Machine learning with python | Best Machine Learning Courses - 0 views

  •  
    Best Machine Learning Courses using Python will help you gain expertise in various machine learning algorithms such as regression, clustering, decision trees, Naïve Bayes, and ensemble techniques. Our Machine learning with python course will also help you understand the concepts of Statistics and machine learning algorithms like supervised and unsupervised algorithms.
lelapintrois

Learn AI: Machine Learning and Deep Learning Online Courses - 1 views

  •  
    A brief introduction to modern AI and a list of useful online courses for learning it properly. Includes courses about Machine Learning and Deep Learning. Also includes advanced courses that target development of AI applications and algorithms. Many courses will include specific tools (TensorFlow, Keras, Caffe2, PyTorch, etc.)
reckoner reckoner

Charming Python: Using state machines - 0 views

  • Charming Python: Using state machinesAlgorithms and programming approaches in Python
reckoner reckoner

Cross platform way of finding number of processors on a machine? - comp.lang.python | G... - 0 views

  • > Is there a way to find the number of processors on a machine (on linux/ > windows/macos/cygwin) using python code (using the same code/cross > platform code)? From processing <http://cheeseshop.python.org/pypi/processing/0.34> : def cpuCount():     '''     Returns the number of CPUs in the system     '''     if sys.platform == 'win32':         try:             num = int(os.environ['NUMBER_OF_PROCESSORS'])         except (ValueError, KeyError):             pass     elif sys.platform == 'darwin':         try:             num = int(os.popen('sysctl -n hw.ncpu').read())         except ValueError:             pass     else:         try:             num = os.sysconf('SC_NPROCESSORS_ONLN')         except (ValueError, OSError, AttributeError):             pass     if num >= 1:         return num     else:         raise NotImplementedError --
jamessidis

Best Python Libraries for Data Science - 1 views

  •  
    Libraries are collection of functions and methods that enable you to perform a wide variety of actions without writing the code yourself. First of all, there are over 137.000 libraries in Python. In this article we are going to learn : Scientific Computing Libraries in Python Visualization Libraries in Python High-Level Machine Learning and Deep Learning Libraries in Python Deep Learning Libraries in Python Python Libraries for NLP ( Natural Language Processing )
jamessidis

Best Way to Learn Numpy - 0 views

  •  
    NumPy is the fundamental package for scientific computing in Python. Numpy stands for Numerical Python. If you want to work with machine learning or data science, Numpy is a Python library you will mostly use. It is a Python library that provides a multidimensional array object for fast operations on arrays, including mathematical, logical, shape manipulation, sorting, selecting, I/O, discrete Fourier transforms, basic linear algebra, basic statistical operations, and much more.
reckoner reckoner

Voice recognition - 0 views

  • Speech Recognition may be possible with COM. I found an example of how its done in Python.
  • Looks like foom is busy. Anyway, here is the verbatim translation of the script foom linked. I can't test it myself as no mike is installed on my machine. If you hear "Starting Succeeded", then, try to say one/two/three. NEED CoHelper.ahk.
reckoner reckoner

Psyco - Introduction - 0 views

  • In short: run your existing Python software much faster, with no change in your source. Think of Psyco as a kind of just-in-time (JIT) compiler, a little bit like what exists for other languages, that emit machine code on the fly instead of interpreting your Python program step by step. The difference with the traditional approach to JIT compilers is that Psyco writes several version of the same blocks (a block is a bit of a function), which are optimized by being specialized to some kinds of variables (a "kind" can mean a type, but it is more general). The result is that your unmodified Python programs run faster. Benefits 2x to 100x speed-ups, typically 4x, with an unmodified Python interpreter and unmodified source code, just a dynamically loadable C extension module. Drawbacks Psyco currently uses a lot of memory. It only runs on Intel 386-compatible processors (under any OS) right now. There are some subtle semantic differences (i.e. bugs) with the way Python works; they should not be apparent in most programs.
reckoner reckoner

Pyro - About - 0 views

  • Pyro is short for PYthon Remote Objects. It is an advanced and powerful Distributed Object Technology system written entirely in Python, that is designed to be very easy to use. Never worry about writing network communication code again, when using Pyro you just write your Python objects like you would normally. With only a few lines of extra code, Pyro takes care of the network communication between your objects once you split them over different machines on the network. All the gory socket programming details are taken care of, you just call a method on a remote object as if it were a local object!
utkarsh11111

What tasks do remote python developers execute as a freelancer? - 1 views

Python freelancers are the back-end development magicians. Businesses expect them to work not only on coding but also on multiple tasks. The tasks can differ and vary depending on the industry and ...

python programming developer

started by utkarsh11111 on 16 Dec 21 no follow-up yet
1 - 11 of 11
Showing 20 items per page