Jump to content

Reverse stable diffusion


grayson

Recommended Posts

2 minutes ago, grayson said:

Here is what it says "module object is not callable" I never wrote a sequence of letters or anything that has to do with 'module'

1) you see an unknown error for the first time in your life

2) what is the line number? Disable line, print all variables, use debugger, draw conclusions

3) copy/type the error message into Google search engine or so

4) https://www.google.com/search?q=module+object+is+not+callable

5) read the tutorials above..

6) draw conclusions..

 

Link to comment
Share on other sites

2 minutes ago, grayson said:

Well, I guess I will ask Mit than. (though nobody responds to my emails)

The GitHub link I gave you above has a licens file; may be the quickest option to check if that licensing suits your needs.  Also make sure to check the site where you access the images. 

 

Link to comment
Share on other sites

7 minutes ago, Sensei said:

1) you see an unknown error for the first time in your life

2) what is the line number? Disable line, print all variables, use debugger, draw conclusions

3) copy/type the error message into Google search engine or so

4) https://www.google.com/search?q=module+object+is+not+callable

5) read the tutorials above..

6) draw conclusions..

 

Okay, I read the tutorial. It did not help. The error is in the BeautifulSoup module which is built in. Idk the problem. 

Link to comment
Share on other sites

1 hour ago, grayson said:
import bs4 as BeautifulSoup

This line should be:

from bs4 import BeautifulSoup 

 

27 minutes ago, grayson said:

Okay, I read the tutorial. It did not help. The error is in the BeautifulSoup module which is built in. Idk the problem. 

...don't jump to hasty conclusions..

https://stackoverflow.com/questions/72637168/beautifulsoup-typeerror-module-object-is-not-callable

 

Edited by Sensei
Link to comment
Share on other sites

5 minutes ago, Sensei said:

This line should be:

from bs4 import BeautifulSoup 

 

...don't jump to hasty conclusions..

I just checked my code and I made a typo on the forum. so my code does say that but it still says that error

Okay, It is fixed but I put in this code 

import pbd
import requests
import bs4 as BeautifulSoup
import tensorflow as ts
import numpy as np
import matplotlib as plt
from keras.models import Sequential
from keras.layers import Dense
from flask import Flask
website = requests.get('https://pixabay.com/')
soup = BeautifulSoup(website ,'html.parser')
with open('words.txt', 'r') as file:
    words = file.read().split()
html = soup.find_all(words) 

model = Sequential()

model.add(Dense(units=64, activation='relu', input_dim=8))  # Input layer with 8 input features
model.add(Dense(units=32, activation='relu'))               # Hidden layer
model.add(Dense(units=1, activation='sigmoid'))             # Output layer
model.compile(optimizer="adam", loss='binary_crossentropy', metrics=['accuracy'])

@app.route('/home', Methods=['GET','POST'])
def home(name=None):
	return render_template('C:\Users\grays\OneDrive\Documents\PromptAI.html',name=PromptAI)

It came up with a 'UNICODE TRUNCATE' or something. and something about bytes. I tried using bytesio but that did not work. I looked it up. said add r before it. Doesn't work

sorry, too many add-ons

Link to comment
Share on other sites

15 hours ago, grayson said:

	return render_template('C:\Users\grays\OneDrive\Documents\PromptAI.html',name=PromptAI)

It came up with a 'UNICODE TRUNCATE' or something. and something about bytes. I tried using bytesio but that did not work. I looked it up. said add r before it. Doesn't work

 

The line uses the backslash character, which is used in Windows as a directory tree separator. It is also used as an escape character in programming languages. You need to escape the escape character correctly, which you can do by using a double backslash:

    return render_template('C:\\Users\\grays\\OneDrive\\Documents\\PromptAI.html',name=PromptAI)

Or, as you've already guessed, use r', but this will only work in Python.

In all other "normal" languages, you escape the escape character with a double escape character.

https://www.google.com/search?q=escape+escape+character

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.