Giter Club home page Giter Club logo

image-aesthetics-and-quality-assessment's Introduction

Hi 👋

I am currently working on PhD.

您的Star☆,是我们持续开源的动力!

image-aesthetics-and-quality-assessment's People

Contributors

woshidandan avatar

Stargazers

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

Watchers

 avatar

image-aesthetics-and-quality-assessment's Issues

如何训练可以达到权重的精度?

这边按照默认option的参数从头训练了20个epcoh,lcc只有0.10多,是需要载入预训练权重吗?backbone是你们自己设计的,你们应该也是直接在AVA上训练的吧?

get_score_one_image函数定义是空的,怎么基于训练好的模型推理单张图片

您好,我在做一个基于clip搜索生成图片的搜索引擎,发现有很多图片相关性很高但是质量不高,为了数据冷启动,想加一个质量因子。

我想用 Image-Aesthetics-Assessment , 但是发现 get_score_one_image函数定义是空的,怎么基于训练好的模型推理单张图片,能给一个完整的演示代码吗?(我对写网站比较熟悉,转过一些模型到ONNX,但是对AI开发不太熟悉)

After reading the pre-trained model(AVA) and running the validate function, plcc and srcc are incorrectly high

thanks for your contribution.
I'm meeting a problem in AVA dataset. When I read the pre-trained weights and validate on the AVA dataset, the resulting metrics are incorrectly high.

初始权重

The code to read the weights is shown below, I made some modifications since it doesn't run directly on my environment.

`def start_train(opt):
train_loader, val_loader, test_loader = create_data_part(opt)
args, config = parse_option()
print(f"Creating model:{config.MODEL.TYPE}/{config.MODEL.NAME}")
model = build_model(config)

if os.path.exists(config.MODEL.RESUME):
    print(config.MODEL.RESUME)
    checkpoint = torch.load(config.MODEL.RESUME)
    pre_weights = torch.load(config.MODEL.RESUME)
    # pre_weights = checkpoint['model']
    pre_dict = {}
    for k, v in pre_weights.items():
        if "cls_head" not in k:
            pre_dict[k] = v
    model.load_state_dict(pre_dict, strict=False)
    #直接读取
    model.load_state_dict(torch.load(opt['path_to_model_weight'], map_location='cuda:0'))
model.to('cuda')`

I want to know if you have also encountered this situation. I am a beginner and the modified code may have some errors. I hope to get some suggestions from you.

能否提供640x640的权重?

感谢你的工作!请问,模型指标上贴出了640的效果要远远好于224的,但是你提供的权重文件中没有发现640的权重文件,配置文件也不含有640的配置文件,能否提供下?谢谢!

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.