Search results for "python"
epub |eng | 2018-08-31 | Author:Ayeva, Kamon; Kasampalis, Sakis;

def handle_default(self, event): print(f'MainWindow Default: {event}') SendDialog can handle only the paint event: class SendDialog(Widget): def handle_paint(self, event): print(f'SendDialog: {event}') Finally, MsgText can handle only the down event: class MsgText(Widget): ...
( Category: Computers & Technology September 25,2018 )
epub |eng | 2007-09-04 | Author:Palin, Michael [Palin, Michael]

( Category: Arts & Literature September 6,2018 )
epub, pdf |eng | | Author:David Paper

def f(x): return x**3 - 6 * x**2 + 9 * x + 15 def df(x): return 3 * x**2 - 12 * x + 9 if __name__ == "__main__": ...
( Category: Programming Languages August 31,2018 )
epub |eng | 2018-07-31 | Author:John Anderson [Anderson, John]

The plot does not indicate any 1 to 1 correlation between features, so all features are informative and provide discriminability. We need to separate our columns into features and labels ...
( Category: Computers & Technology August 24,2018 )
epub, pdf |eng | 2018-07-29 | Author:Abdulwahid Abdulhaque Barguzar [Barguzar, Abdulwahid Abdulhaque]

GET request on API /albums/ As you have the access token gained by the authentication API, you are eligible to access all protected APIs. The following is a screenshot of ...
( Category: Computers & Technology August 24,2018 )
azw3 |eng | 2018-08-08 | Author:Mather, Bob [Mather, Bob]

Implementing an Artificial Neural Network What are Artificial Neural Networks? Artificial neural networks are a classification of algorithm mixed with conceptual analysis of how biology, psychology, and circuitry integration work. ...
( Category: Computers & Technology August 21,2018 )
epub |eng | 2018-08-11 | Author:Shabda Raaj & Anmol Akhilesh [Raaj, Shabda]

Deployment Various Deployment Options: Docker Fabric Ansible Google Cloud Platform Amazon Web Services Deploying a Django application Docker Docker [https://www.docker.com/what-docker] is an open-source tool for creating, deploying, and running applications ...
( Category: Computers & Technology August 19,2018 )
epub |eng | 2018-08-07 | Author:Timothy C. Needham [Needham, Timothy C.]

Working with Numbers It is straightforward to assign any number to variables. Muscle = 8 Brains = 13 As mentioned earlier, the interpreter assumes that a set of characters as ...
( Category: Mathematics August 18,2018 )
epub |eng | | Author:Sayan Mukhopadhyay

Properties The distances are measures that satisfy the following properties:dist(x, y) = 0 if and only if x=y. dist(x, y) > 0 when x ≠ y. dist(x, y) = dist(x, ...
( Category: Programming August 13,2018 )
epub, pdf |eng | 2018-06-27 | Author:Lentin Joseph

Technical requirements You will need the necessary robot hardware component and Energia IDE set up in Ubuntu 16.04 LTS. Interfacing DC geared motor to Tiva C LaunchPad In the previous ...
( Category: Computer Science August 13,2018 )
epub |eng | 2018-07-25 | Author:Daniel Nedal & Peters Morgan [Nedal, Daniel]

How to Build a Basic Model Using Naive Bayes in Python For our hands on example we would build a Naive Bayes model in Python to tackle a spam classification ...
( Category: Computers & Technology August 12,2018 )
epub |eng | 2018-07-30 | Author:Joshua Eckroth [Eckroth, Joshua]

So, in each case, in each file, we simply make a TaggedDocument object with the words from that document or that review plus a tag, which is simply the filename. ...
( Category: Computers & Technology August 12,2018 )
epub |eng | 2018-07-30 | Author:Vikas (Vik) Kumar [Kumar, Vikas (Vik)]

Dictionaries A dictionary is a common data structure in Python. It is used to store unidirectional mappings from keys to values. For example, if we wanted to create a dictionary ...
( Category: Computers & Technology August 12,2018 )