Giter Club home page Giter Club logo

decota's People

Contributors

loyoyang avatar mileyan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

decota's Issues

Custom non-image dataset for both regression and classification

Are there any examples of using this library with a custom non-image dataset for either classification or regression tasks? For example (classification):

# Source train labeled
Xs = pd.DataFrame({
  'Feature1': [1,2,3],
  'Feature2': [10,20,30],
  'Feature3': [100,200,300],
})
ys = [0,1,0]

# Target train labeled
Xt = pd.DataFrame({
  'Feature1': [1,2],
  'Feature2': [10,20],
  'Feature3': [100,200],
})
yt = [0,1]

# Target unlabeled train
Xt_unlabeled = pd.DataFrame({
  'Feature1': [1,2,3,4,5,6],
  'Feature2': [10,20,30,40,50,60],
  'Feature3': [100,200,300,400,500,600],
})

# Target test
Xt = pd.DataFrame({
  'Feature1': [1,20],
  'Feature2': [10,200],
  'Feature3': [100,2000],
})
yt = [0,1]

How are the models pretrained ?

Thanks for sharing the code of this work. Recently I am trying to run the code with default setting, and find before starting, the code will load the pretrained models under pretrained_models folder in default by this code. When I try to take the original ImageNet pretraining weight of torch, I found the results on Real-Clipart 3 shot varies obviously.

When training with provided pretrained model, the results ended up with test acc 77.4 after 20000 steps of training, while when training from an ImageNet pretraining model, the results can only achieve 70.1.

I noticed that in the implementation detail of the paper, the two networks are first pretrained with labeled data, but did not find detailed information about the pretraining process, can you provide any suggustion on the setting of pretraining (e.g. starting model, training steps, learning rate), thanks~

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.