Giter Club home page Giter Club logo

aivivn_issues's People

Contributors

aivivn avatar

Watchers

 avatar  avatar  avatar

Forkers

sherlock-tez

aivivn_issues's Issues

Không đăng nhập được

Mình ko biết web có chặn IP hay gì không mà mình ở nước ngoài không thể đăng nhập được? Click vào button đăng nhập không có phản hồi gì.

Mong sớm nhận được phản hồi.
Thanks

Chức năng thay đổi tên đội sau khi tạo

Hiện tại sau khi nhấn nút 'Tham Gia' và tạo đội thành công, user khong thể thay đổi tên đội.
Mình đề nghị thêm tính năng cho phép user có thể thay đổi tên đội nếu muốn.

Thêm chức năng tìm lại username

Hiện tại em chỉ nhớ mail đã đăng ký tại trang web, nhưng lại không thể đăng nhập bằng mail.
Em cũng không thể tìm lại được tên user mình đã đăng ký,

Thêm chức năng nộp bài sau khi cuộc thi đã kết thúc

Như vậy các bạn đến sau vẫn có thể tự làm, tự đối chiếu model của mình với kết quả. Ngoài ra cũng nên mở thêm chức năng đăng kí cho các cuộc thi đã kết thúc để mọi ngưòi có cơ hội practice những bài toán cũ.

Lỗi invalid literal for int() with base 10: ''

Chào ban tổ chức,

Mình thử gửi một file lên hệ thống nhưng bị lỗi. Lỗi mình như sau "invalid literal for int() with base 10:"
Còn đây là code mình dùng

    pred_output =[]
    filename_pred =[]
    k =5 # Lay 5 kq tot nhat
    with torch.no_grad():
        for data, target,path in test_loader:
            data, target, path = data.to(device), target, path
            output = model(data)
            output = np.argsort(output.data.cpu().numpy(), axis = 1)[:, -k:][:, ::-1]    
            filename_pred.append(path[0].strip())
            pred_output.append(str(output[0])[1:-1])
  
    import pandas as pd
    sample_sub_all = pd.DataFrame(columns=["image", "label"])
    for filename, pred in zip(filename_pred , pred_output):
        sample_sub_all = sample_sub_all.append({
            "image": filename,
            "label": pred
        }, ignore_index=True )
    sample_sub_all.to_csv("test_submission.csv", index=False)

Mình đầu tiên predict từng image một và lấy output lưu vào một list. Sau đó, dùng pandas để ghi ra file csv (như đính kèm). Khi submit thì bị lỗi như trên. Phiền ban tổ chức xem và fix nha

test_submission.csv.zip

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.