Keras Preprocessing Layers

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ก.ย. 2024

ความคิดเห็น • 25

  • @TensorFlow
    @TensorFlow  2 ปีที่แล้ว +3

    Subscribe to keep up with the latest in TensorFlow!

  • @Lucas-nu1qc
    @Lucas-nu1qc 2 ปีที่แล้ว +7

    It could be helpful to explain how to build a preprocessing layer with different preprocessing for each feature.

  • @ZavierBanerjea
    @ZavierBanerjea 8 วันที่ผ่านมา

    At 8:21, usually we have a `def __call__(self, ...)` , but here I see `def call(self, ...)`
    Overall, excellent presentation 👍

  • @moctardiallo2608
    @moctardiallo2608 2 ปีที่แล้ว +2

    This was what i was waiting for a long time before switching back to keras again ! I have been asking this question here and there all over the internet lol. Now here we go ! Thanks!

  • @jocalvo
    @jocalvo 2 ปีที่แล้ว +1

    That's amazingly cool! Thanks!

  • @dmitryutkin9864
    @dmitryutkin9864 ปีที่แล้ว

    that's great explanation! thank you

  • @yasithudawatte8924
    @yasithudawatte8924 ปีที่แล้ว +2

    Hi tensorflow team,
    I tried the examples, but
    train_ds = tfds.load('imdb_reviews', split=['train'], as_supervised=True)
    train_ds = train_ds.batch(8)
    gives an error "' list' object has no attribute 'batch' ". Any idea why?

    • @charleskangai4618
      @charleskangai4618 ปีที่แล้ว

      Looks like the object is a list of dataset instead of being a dataset.
      Try: train_ds = train_ds[0]

    • @modakthepuppy9794
      @modakthepuppy9794 7 หลายเดือนก่อน

      i had the same issue , while trouble shooting i found that
      split=['train'] was issue. Changed it to 'train' (without array) and it worked

  • @yuvrajkhanna5123
    @yuvrajkhanna5123 ปีที่แล้ว

    Could you give the link of the code and the presentation. Also is there a website where I can find these resources. Is there any I can get certified by TensorFlow that I know this library? I am a junior in university trying to learn machine learning

  • @siamakshams1923
    @siamakshams1923 10 หลายเดือนก่อน +1

    Before making my comments I really want to stress that everything you've said in this video are valid and useful - but for someone who probably has had prior training and knowledge of the subject matter. The dialogue in your video is akin to a conversation between Google engineers working in a team developing some sort of API, all fully immersed in the context and possessing multifaceted knowledgeable about the problem and solution domains. Almost everyone in Tensorflow and Keras teams make those assumptions and quite frankly the usefulness of their tutorials end after the initial introduction. Try anther video without those assumption and for someone who may not be fully aware of everything to do with Tensorflow Libraries or Keras API exposing those libraries' functions. Then I'll be the first to subscribe.

    • @T_Mo271
      @T_Mo271 9 หลายเดือนก่อน

      This is totally the norm for any sort of technical documentation. It's written by experts, who no longer remember what neophytes do not know. The Keras and TF documentation is among the worst for assuming everyone is an expert already.

  • @josephmandeiro7557
    @josephmandeiro7557 11 หลายเดือนก่อน

    Can I use a normalization layer as an output layer ?

  • @greedybuddha795
    @greedybuddha795 2 ปีที่แล้ว

    Is it only the “adapt” function that isn’t good for large datasets or is it all preprocessing using keras layers? If the preprocessing layers aren’t supposed to be used for large datasets I have to wonder what’s the point??

    • @lgmuk
      @lgmuk 2 ปีที่แล้ว +2

      Yes, it's only the adapt function

    • @greedybuddha795
      @greedybuddha795 2 ปีที่แล้ว

      @@lgmuk thanks, that’s good. What’s the best way to still use the keras preprocessing layers while needing to transform in beam?

    • @lgmuk
      @lgmuk 2 ปีที่แล้ว

      @@greedybuddha795 Maybe use TF Tranform. That's projected for bigger pipelines and infrastructure

  • @rohanchess8332
    @rohanchess8332 ปีที่แล้ว

    Where can i find the slides for reference?

  • @yunhe2361
    @yunhe2361 2 ปีที่แล้ว

    How can I get these slides? Thanks.

  • @Thearvindkumar
    @Thearvindkumar 2 ปีที่แล้ว

    Hi tensorflow team , i want implant nn.parameter functionality with keras and tensorflow. Can you give some suggestions to how used keras and tensorflow as nn.parameter in my code.

    • @lgmuk
      @lgmuk 2 ปีที่แล้ว

      I'd ask this on the TensorFlow Forum. It's much easier to get answers there.

  • @nandaoktav4798
    @nandaoktav4798 ปีที่แล้ว +1

    Ĺ