You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we try to get the prediction after user input , we are unable to get any predictions in html page.
Not sure how this json.dumps is working and why two inputs string and work are being used.
@app.route('/output', methods=['GET'])
def worker():
#print(request, file=sys.stderr)
string = request.args.get('string') work = request.args.get('work')
words=string.split()
#print(words, file=sys.stderr)
n=len(words)
if work=='pred':
if n==1:
#print (bgs_freq[(string)].most_common(5),file=sys.stderr)
@PrAItikPatil94 Hello this problem because of "Redirect has been blocked by cross-validation" you will see that in console form Google Chrom .. You can solve this issue by adding this extension Here
When we try to get the prediction after user input , we are unable to get any predictions in html page.
Not sure how this json.dumps is working and why two inputs string and work are being used.
@app.route('/output', methods=['GET'])
def worker():
#print(request, file=sys.stderr)
string = request.args.get('string')
work = request.args.get('work')
words=string.split()
#print(words, file=sys.stderr)
n=len(words)
if work=='pred':
if n==1:
#print (bgs_freq[(string)].most_common(5),file=sys.stderr)
The text was updated successfully, but these errors were encountered: