Code Monkey home page Code Monkey logo

asymmetric-tiling-comfyui's People

Contributors

alsritter avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

jags111

asymmetric-tiling-comfyui's Issues

for item in dir(obj): print(item, end = " ") spamming console. Move to dev branch only if needed,

我们可以摆脱:
“对于 dir(obj) 中的项目:
打印(项目...)”

它正在向我的控制台发送垃圾邮件。

We can get rid of:
"For items in dir(obj):
Print (item...)"
?
It's spamming my console.

for item in dir(obj):

至少删除对 print type int 和 print type torch.sensor 的调用

At least remove the calls to print type int, and print type torch.sensor

Dirty workaround:

    def print_object_info(self, obj):
        if (type(obj) == Tensor) or (type(obj) == int):
            return None
        print("Type:", type(obj))
        print("Attributes and methods:", end=" ")
        for item in dir(obj):
            print(item, end=" ")

但我会考虑删除那些在回调中使其发生的内容。

最好在主分支中删除它们,并仅在 dev 分支中使用它们:

self.print_object_info(步骤)
self.print_object_info(x0)
self.print_object_info(x)
self.print_object_info(total_steps)

But I would look into removing the ones that make it happen in the callback.

It might be better to delete these in the main, and use them in dev branch only:

self.print_object_info(step)
self.print_object_info(x0)
self.print_object_info(x)
self.print_object_info(total_steps)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.