Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

How to Fix Cost Function in Binary Classification NAN as a Result in Python

I am quite new to both python and machine learning and I am trying to create an ANN for a binary classification model in order to determine whether something is faulty or not. When I run the code down below, the cost function seem to come up as n...

How to Convert a Python Code to C++ Programming language

I want to stream .dat files from a file i created in python, i wrote the python code and it worked great but i can't write it in C++, i need help to write that code in C++, Thank you.   The python code is as following :   ...

How to Schedule Archiving a Folder Daily with Specific Time in Python App?

def zipdir(path, ziph): #ziph is zipfile handle for root, dirs, files in os.walk(path): for file in files: ziph.write(os.path.join(root, file)) zipf = zipfile.ZipFile('test_python.zip', 'w', zipfile.ZIP_DEFL...

How to Remove Error 'No Such Element Exception' From Below Python Code

I am trying to run the following code: from selenium import webdriver # create a new Firefox session driver = webdriver.Firefox(executable_path=r'C:\Program Files\geckodriver.exe') driver.implicitly_wait(30) driver.maximize_window() ...

How to Resolve Running Session Failed Issue for Python Chatbot App Using Tensorflow

This is where I'm getting the error. I just want to ask what should I do, to make this code running. I'm building a chatbot using tensorflow. And mostly the error is encountered in the if-else statements. So please have a look at it. And ...

How to use an argument returned by a decorator in another decorator that is called after the first decorator

I am using two decorators to decorate a function "add_user", the first one @auth_user authenticates the logged in user via json web token request headers and returns the user's information as an argument "user_info" back t...

How can I Get Fetched Tweets Only One Time in Python Program?

How can I Get Fetched Tweets Only One Time in Python Program?  And in this case, I don't want to get retweets, or the same tweet more than once.   the following link has the code and a sample of the problem:   ...

How can I Make a Photobooth App Using Python Programming Language?

App must use the smart phone camera to capture image and store that captured image directly in pc instead of saving it into phone storage. Already Tried   https://www.pyimagesearch.com/2016/05/30/displaying-a-video-feed-with-openc...

How to Update Members Inside eMail Distribution List Using CSV Input File

  Can the members inside a email distribution list be updated automatically, using csv file as input ? I have an email distribution list , next, I want to add members to this distribution list using csv file as input. note :- the csv...

How to Create Login Function in Python Programming Application

How do I create a login function where their username and password inputs are compared to a text document full of previously registered accounts to see if their input matches any accounts and if so calls another function?   Code so far...

How to Read Multiple Rows in Excel Sheet by Using XLRD in Python

I am currently using xlrd in python to read excel sheet. In column 1 contains test titles and column 37 contains test step. In column 1, there are some cell values like heading/Test case etc. I want to read all the rows in column 37 which are ...

Redistribute string entries in a huge pandas data frame in Pyhon

I have a data frame (derived from a CSV file) with about 100M entries that looks like this: df1: var1 var2 0 1 2 1 2 1 2 1 {3,4,5} 3 5 6 4 {4,5,6,7} 8 I need to convert this into a ...

what is the use of "@aNewDecorator" and "@wraps(aFunc)" in this decorators and how can i get my output?

from functools import wraps def aNewDecorator(aFunc):     @wraps(aFunc)     def wrapTheFunction():         print("Iam doing some boring work before executing aFunc().")       &...

Python TypeError: object of type 'NoneType' has no len()

I was unable to find what is wrong in the following code, The error msg is "object of type 'NoneType' has no len()"   My Code ------> A=[31,22,14,15] def merge(list1,list2): output=[] i=0 j=0...

Fixing a semi-redundant text file, best practice opinions wanted

First a little background: Link to attachments   I have a lot of text generated by some voice-to-text application (I honestly do not know the name of the application since I do not have physical access, however I have access to th...

Python Programming Language in Embedded Software Development - Core Roles

Image: Business Insider Title: Python Programming Language   The deployment of embedded systems on a large scale demands inexpensive components. Considerations like low power consumption, high reliability and small size ...

Top 5 Useful Python Libraries Web Developers Can't Live Without

We all love Python, don’t we? With so many tools, modules and libraries, Python ecosystem is extensive and widespread in both depth and space. The open-source biome is intimidating and even with years of experience, a developer is required ...

Python Bigquery Connection Using Google BigQuery API Key and InsertQuery?

Hello everyone, I need help to insert data into bigquery using python. I am trying to make connection using bigquery API key using this method. service= build('bigquery', 'v2', developerKey='XXXXXXXXXXXXXXXXX') print service I am not ...

How Can I Listen to Events About the USB Port

Can anyone suggest me a library to listen to events on the usb port eg i want to know when a memory is connected?

Reading and writing file on MAC with Python

Hi All ,   Some time we have to create a file to store some data for our application and also read that file whenever we need it. So in this tutorial we will learn how to create a file on MAC system using python and also reading and wr...

HTTP request using python

Hi All, HTTP request  is a two way process i..e client - server communication .Three basic features that make HTTP a powerful protocol and these are: HTTP is connection less HTTP is media independent HTTP is stateless: Ther...

GUI to show list in MAC application

Hi All, In this tutorial we will update list as user enter an entry to the list. We create an entry field and a button to get details from the user and label to show the list. First we will create a user interface. 1) First step is to creat...

Weasyprint only gives me empty pdfs when I'm trying to print newsarticles

#!/usr/bin/python3.5 from weasyprint import HTML url = "http://ekstrabladet.dk/112/nye-oplysninger-i-30-aar-gammel-mordgaade/6579176" HTML(url).write_pdf("test.pd") The problem is that the final pdf has only part of the webpage. I...

Create a simple login application for MAC

Hi all, An app user has to login before navigating to the any screen. In our app user will enter username and password for login, so we need two textfield and a button two submit. so lets start and follow these steps. 1) First step is to cr...

How to support persistent connections

I am fairly new to using python and servers most of what I know I have learnt from youtube. 1.I am trying to make a persistent connection but am not sure where I am going wrong 2. I also want to be able to send large files using chunked transf...

Making a Bar Graph on Rstudio with markdown

So I am using this data on Rstudio with markdown, but it reads that there is an error on the top line: Can you tell me how to fix this chunk of code so that it properly displays a barplot with the data from the link given? ```{r} ADHD_data ...

Import modules

I downloaded a python package, and installed it using pip command in Windows PowerShell. I cut-pasted site-package folder to the PATH where python is installed. But still when I import the module in python shell, it says that the module is not fo...

Can You Recommend Python Tutorials For Complete Beginners?

Hello Ladies & Gentlemen,  I would like to learn Python. Only latest version as of Jan 2017. I have a couple of question that I'm looking answer from you: Q1. What are your top best Python (latest version) programming tutoria...

Access Models.py from external py script

Hi, I am trying to integrate my existing code into django. How do i access models.py from my external code.I tried putting it in the same apps directory it did not work. Is there a way ?  My Case: I have a web parsing code that takes data...

its a basic question on how to calculate tax using python

Country X calculates tax for its citizens using a graduated scale rate as shown below: Yearly Income: 0 - 1000 Tax Rate: 0% Yearly Income: 1,001 - 10,000 Tax Rate: 10% Yearly Income: 10,001 - 20,200 Tax Rate: ...

How to Send a word to translation site from within a Python script?

Hi! How can I send, from within a Python script, a word to translation site and fetch the results?

Creating a backspace button on my calculator python tkinter GUI

Hello, i'm very new to python and  i would like to fix the "C" button so that it clears the last number on the display. For example 321 would become 32, i have tried a lot of things but i can't seem to get it to work, i wou...

How would I set the dict[value] to correspond to its dict[key] where the value itself is a dictionary?

How would I set the dict[value] to correspond to its dict[key]  where the value itself is a dictionary ?  I have a csv file where I am trying to count row[3] then connect it with row[0]      row[0]     &nb...

How to Write a Python program that Stores App Information in A Text File?

Write a Python program that reads in from a text file. You should briefly prepare a textfile containing information about items sold in a bakery. The information like type of buns,cookies, cakes and more with the price lists should be i...

How to each product partial reconciliation in OpenERP(Odoo)

In OpenERP first, create custom module and than override the function in .py file in custom module  and pass this file to the __init__.py file. Then get the correct line residual amount  and pass this line in account invoice. using...

How to amount residual in account module in OpenERP(Odoo-8)?

In OpenERP first we create custom module and module name is account_demo and then create four file like as __init__.py, __openerp__.py, account_demo.py, account_demo.xml file in your module and create function and function name like accoutss_resi...

How to change product id in your account module in OpenERP(Odoo-8)?

In OpenERP, create a custom module like: demo and then create file like: demo.py file in your demo module and demo.py file pass in your other file __init__.py file. And then create other file demo.xml file and pass this file in your other file li...

onchange quantity sequence in account module in OpenERP(Odoo-8)

In OpenERP first, we will manage all file and create module and then inherits to the account.invoice object in your .py file. Follow these step given below Step1- First, we create custom module like as a test module and put this test m...

How to call and create parent class in account module in OpenERP(Odoo)?

In OpenERP first, we create custom module and then create function in your existing module and pass parameter in function name is MaterialsRecursive. In below example I have written Python script to Include only parent level class. Like given ...

How to update fields in text fields in product module OpenERP(Odoo)

In OpenERP first create custom module and inherits the hr module in your existing module.   Follow these step given below Step1- First create existing module like as test and than create .py file in your own module like as a test.py...

How to invoke mails in account module in OpenERP(Odoo)?

In OpenERP first create custom module and inherit the email_template object in your own module. Then create templates in .xml file.   Follow these step given below: Step1- First, create module like: test and then create .py file lik...

How to visible and invisible fields of the basis of selection fields in OpenERP(Odoo-8)?

In OpenERP first, create custom module and then create object in your own module and put your own module in your OpenERP server.   Follow these step given below Step1- First create module like as a test and then create file like as ...

How to send mail in next level in workflow in OpenERP(Odoo-8)?

In OpenERP, first, create custom module and then configure your incoming and outgoing mail in your server an then relate it to the function. Follow these step given below: Step1- First, create module like as a test module and then creat...

How to create PDF report using python script in OpenERP(Odoo-8)

In OpenERP first, create existing module and then inherits the account.invoice object in your own module and also create report file in your own module. Follow these step given belowas Step1- First create module like, test then create file ...

How to catches all keyboard events in OpenERP(Odoo)

In OpenERP first create custom module and inherits the Scanner object in your own module and pass all the barcode fields and map it to the object. Then this barcode will start a loop that catches all keyboard events in Odoo. And by using the ...

How to call product form to using of button in purchase module in OpenERP(Odoo-8)?

In OpenERP first, create your custom module and inherits the purchase module object like purchase.order object in your own module. Than add button in the purchase form. Follow these step given below Step1- First create module and than file ...

Merging Panda Dataframes

I have two dataframes. One is user(UserID, Name) and other one is rating (srcUserId, dstUserId, RatingValue). I have to merge these two dataframes such that in place of srcUserId I get the name of the user corresponding to userid from user d...

How to make payment and inherits account invoice object in OpenERP(Odoo-8)

In Odoo first we create existing own module and inherits the account invoice object in your own module. Than fetch all object like as a account.move , account.journal, account.period in your own module and update the account.journal and also invo...

How to change itertools.product parameters while running

Hi, I'm new in Python, so excuse me if the question may be too simple for someone. I have the following code: from itertools import product for a,b in product(range(0,10), range(a,10)): print (a,b) but it does not work, a m...

Select product and add product in your sale order line on button click in Odoo-8

In Odoo first, we create custom module and also create function and pass this function in button. And when we open the form we will select the product and this product will show in sale order line. Follow these step given below Step1- First...
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: