1. 08 4月, 2020 15 次提交
  2. 07 4月, 2020 12 次提交
  3. 06 4月, 2020 4 次提交
    • S
      fix conflict, test=develop (#23298) · c706ff20
      ShenLiang 提交于
      c706ff20
    • S
      Add a new DataFeed named PaddleBoxDataFeed (#23321) · 5223e2bb
      ShenLiang 提交于
      * add paddleboxdatafeed
      * add ifdef linux and boxps
      * add untest for datafeed
      * fix untest of test_paddlebox_datafeed
      * fix untest
      * rename function
      5223e2bb
    • C
      Implement StaticModelRunner to support dygraph fine-tune static graph pre-training model (#23171) · 75bd3507
      Chen Weihang 提交于
      * static model runner basic implement, test=develop
      
      * add run program op to execute loaded program, test=develop
      
      * refactor static model runner & run program op, test=develop
      
      * reset engine.cc to resolve conflict
      
      * adapt the change of dygraph double grad, test=develop
      
      * refactor impl to solve control flow error, test=develop
      
      * clear debug code, test=develop
      
      * fix ci str compatible error & checkout dygraph grad maker & add example, test=develop
      
      * hide api & add op test, test=develop
      
      * fix run program op test places error, test=develop
      
      * fix program by review comment, test=develop
      
      * delete change var desc name, test=develop
      
      * fix other program by review comment, test=develop
      
      * remove _static_graph_guard, test=develop
      
      * add selectedrows test, test=develop
      
      * remove desc parser, test=develop
      
      * fix detail program, test=develop
      
      * change socpe create & add test, test=develop
      75bd3507
    • C
      [OP] Add randperm op (#23292) · 9297f49e
      cc 提交于
      9297f49e
  4. 05 4月, 2020 8 次提交
  5. 04 4月, 2020 1 次提交
    • myq406450149's avatar
      add unbind op (#23359) · eb035f24
      myq406450149 提交于
      * add unbind op
      unbind(tensor, dim=0):
      说明:移除指定维后,返回一组数组,包含了沿着指定维切片后的各个切片。
      
      tensor(Tensor) -- 输入Tensor
      dim(int) -- 删除的维度
      
      示例:
       Input = [[1,2],
                 [3,4],
                 [5,6]]
        axis = 0
        Output[0] = [1,2]
        Output[1] = [3,4]
        Output[2] = [5,6]
      eb035f24