Re: MXNet Community Monthly Updates

2019-03-08 Thread Carin Meier
Other channels that might be beneficial for it to be published would be:

- Twitter https://twitter.com/apachemxnet
- MXNet forum https://discuss.mxnet.io/
- MXNet Medium https://medium.com/apache-mxnet

maybe even somewhere more general like Reddit Machine Learning
https://www.reddit.com/r/MachineLearning/ ?

On Fri, Mar 8, 2019 at 10:50 AM Aaron Markham 
wrote:

> This is great. It will help drive traffic to the site, create content for
> the site, and increase engagement. MailChimp is pretty good too. I can help
> set that up. I have one tiny nagging question though... I don't recall
> doing any GDPR compliance stuff on the site, so I'm wondering what kind of
> EULA or popup thing we might need for the cookies and emails that come
> along with this feature. Did anyone get blessed with this task recently and
> know what needs to be done?
>
> On Fri, Mar 8, 2019, 07:13 Carin Meier  wrote:
>
> > I strongly support this as well - Let us know when the wiki draft page is
> > ready. The Clojure MXNet contributors have some cool stuff to share :)
> >
> > On Thu, Mar 7, 2019 at 1:49 AM Junru Shao 
> wrote:
> >
> > > Hi Mu,
> > >
> > > Thanks for proposing this! Strongly agree with the newsletter - this
> > would
> > > be the most economically efficient way to enhance community
> involvement.
> > >
> > > In addition to the draft wiki pages, should we send posts like "Call
> for
> > > newsletter articles" to dev@ list with some frequency? This could help
> > > maximize the community awareness and help active community members get
> > more
> > > exposure - Community building is important.
> > >
> > > Thanks,
> > > Junru
> > >
> > > On Wed, Mar 6, 2019 at 6:57 PM Chaitanya Bapat 
> > > wrote:
> > >
> > > > Hello Mu,
> > > >
> > > > Thanks a lot for bringing this topic. I had thought about a Weekly
> > Digest
> > > > for MXNet (weekly newsletter) - which is on similar lines (can be
> made
> > > into
> > > > Monthly if it sounds good).
> > > >
> > > > Here's the quip doc -
> > > > https://chaitanya.quip.com/BT6RAcAigHM9/MXNet-Weekly-Digest
> > > >
> > > > I have talked about the Background, Motivation, Features and a mockup
> > of
> > > > Newsletter.
> > > >
> > > > Would love to hear our community's thoughts as well as yours on the
> > same.
> > > >
> > > > Please find attached a snapshot of the Weekly digest I came up with.
> > > >
> > > > Thanks,
> > > > Chai
> > > >
> > > >
> > > >
> > > >
> > > > On Wed, 6 Mar 2019 at 19:59, Mu Li  wrote:
> > > >
> > > >> Dear Community,
> > > >>
> > > >> I propose to send a monthly summary to users to broadcast the recent
> > > >> progresses in the community. It will not only include new features
> > added
> > > >> into MXNet, but also various community activities. Here is an
> example:
> > > >>
> > > >> Tutorials
> > > >> - 10 new lectures teaching at UC Berkeley
> > > >> - Video record for "Deploying with Java" at Java World 19
> > > >> Computer Vision
> > > >> - GluonCV 0.4 release supports pose estimation and improves 10
> > existing
> > > >> models
> > > >> - Insightface added a new model XY
> > > >> NLP
> > > >> - GluonNLP 0.5.1 release improves BERT training
> > > >> New Projects
> > > >> - A MXNet implementation for paper XY
> > > >> MXNet
> > > >> - Enhanced Java binding preview
> > > >> - Numpy frontend reaches milestone 1
> > > >> Incoming Events
> > > >> - Meetup at Palto Alto on 4/2
> > > >>
> > > >> The publishing procedure is we first create a draft wiki page so
> > > everyone
> > > >> will have a chance to review and add staffs. After that we will send
> > it
> > > >> through an email list.
> > > >>
> > > >> I'm considering to use a 3rd party service such as mailchimp.com so
> > > that
> > > >> every user can subscribe it easily and we can do some marketing
> > analysis
> > > >> as
> > > >> well. But I'm happy to re-use us...@mxnet.apache.org if it provides
> > > >> simliar
> > > >> functionalities.
> > > >>
> > > >> I'd like to hear your feedback for how to make the newletter more
> user
> > > >> friendely.
> > > >>
> > > >> Best
> > > >> Mu
> > > >>
> > > >
> > > >
> > > > --
> > > > *Chaitanya Prakash Bapat*
> > > > *+1 (973) 953-6299*
> > > >
> > > > [image: https://www.linkedin.com//in/chaibapat25]
> > > > [image:
> > > > https://www.facebook.com/chaibapat] <
> > > https://www.facebook.com/chaibapchya>[image:
> > > > https://twitter.com/ChaiBapchya]  > > >[image:
> > > > https://www.linkedin.com//in/chaibapat25]
> > > > 
> > > >
> > >
> >
>


Re: "If" function in MXNET and sharing parameters

2019-03-08 Thread Haibin Lin
Hi Stanislas,

Did you consider nd/symbol.contrib.cond for conditional statement?
https://mxnet.incubator.apache.org/versions/master/tutorials/control_flow/ControlFlowTutorial.html

Best,
Haibin

On Fri, Mar 8, 2019 at 10:29 Lauly, Stanislas 
wrote:

> Hi,
>
> About MXNET module, I need to create a model that use a different input
> matrix depending on the actual input, is there a kind of “if” that can be
> part of the computational graph? If not, I can always create multiple
> models that share some params between them, but doing so does not sound
> trivial. I found this:
>
>
> https://discuss.mxnet.io/t/sharing-parameters-between-two-modules-through-arg-dict/1046
>
> But it looks like it is not very efficient. Is there a better way to share
> parameters between models?
>
>
> Stanislas Lauly
> Applied scientist – Amazon AI
>


"If" function in MXNET and sharing parameters

2019-03-08 Thread Lauly, Stanislas
Hi,

About MXNET module, I need to create a model that use a different input matrix 
depending on the actual input, is there a kind of “if” that can be part of the 
computational graph? If not, I can always create multiple models that share 
some params between them, but doing so does not sound trivial. I found this:

https://discuss.mxnet.io/t/sharing-parameters-between-two-modules-through-arg-dict/1046

But it looks like it is not very efficient. Is there a better way to share 
parameters between models?


Stanislas Lauly
Applied scientist – Amazon AI


Re: MXNet Community Monthly Updates

2019-03-08 Thread Aaron Markham
This is great. It will help drive traffic to the site, create content for
the site, and increase engagement. MailChimp is pretty good too. I can help
set that up. I have one tiny nagging question though... I don't recall
doing any GDPR compliance stuff on the site, so I'm wondering what kind of
EULA or popup thing we might need for the cookies and emails that come
along with this feature. Did anyone get blessed with this task recently and
know what needs to be done?

On Fri, Mar 8, 2019, 07:13 Carin Meier  wrote:

> I strongly support this as well - Let us know when the wiki draft page is
> ready. The Clojure MXNet contributors have some cool stuff to share :)
>
> On Thu, Mar 7, 2019 at 1:49 AM Junru Shao  wrote:
>
> > Hi Mu,
> >
> > Thanks for proposing this! Strongly agree with the newsletter - this
> would
> > be the most economically efficient way to enhance community involvement.
> >
> > In addition to the draft wiki pages, should we send posts like "Call for
> > newsletter articles" to dev@ list with some frequency? This could help
> > maximize the community awareness and help active community members get
> more
> > exposure - Community building is important.
> >
> > Thanks,
> > Junru
> >
> > On Wed, Mar 6, 2019 at 6:57 PM Chaitanya Bapat 
> > wrote:
> >
> > > Hello Mu,
> > >
> > > Thanks a lot for bringing this topic. I had thought about a Weekly
> Digest
> > > for MXNet (weekly newsletter) - which is on similar lines (can be made
> > into
> > > Monthly if it sounds good).
> > >
> > > Here's the quip doc -
> > > https://chaitanya.quip.com/BT6RAcAigHM9/MXNet-Weekly-Digest
> > >
> > > I have talked about the Background, Motivation, Features and a mockup
> of
> > > Newsletter.
> > >
> > > Would love to hear our community's thoughts as well as yours on the
> same.
> > >
> > > Please find attached a snapshot of the Weekly digest I came up with.
> > >
> > > Thanks,
> > > Chai
> > >
> > >
> > >
> > >
> > > On Wed, 6 Mar 2019 at 19:59, Mu Li  wrote:
> > >
> > >> Dear Community,
> > >>
> > >> I propose to send a monthly summary to users to broadcast the recent
> > >> progresses in the community. It will not only include new features
> added
> > >> into MXNet, but also various community activities. Here is an example:
> > >>
> > >> Tutorials
> > >> - 10 new lectures teaching at UC Berkeley
> > >> - Video record for "Deploying with Java" at Java World 19
> > >> Computer Vision
> > >> - GluonCV 0.4 release supports pose estimation and improves 10
> existing
> > >> models
> > >> - Insightface added a new model XY
> > >> NLP
> > >> - GluonNLP 0.5.1 release improves BERT training
> > >> New Projects
> > >> - A MXNet implementation for paper XY
> > >> MXNet
> > >> - Enhanced Java binding preview
> > >> - Numpy frontend reaches milestone 1
> > >> Incoming Events
> > >> - Meetup at Palto Alto on 4/2
> > >>
> > >> The publishing procedure is we first create a draft wiki page so
> > everyone
> > >> will have a chance to review and add staffs. After that we will send
> it
> > >> through an email list.
> > >>
> > >> I'm considering to use a 3rd party service such as mailchimp.com so
> > that
> > >> every user can subscribe it easily and we can do some marketing
> analysis
> > >> as
> > >> well. But I'm happy to re-use us...@mxnet.apache.org if it provides
> > >> simliar
> > >> functionalities.
> > >>
> > >> I'd like to hear your feedback for how to make the newletter more user
> > >> friendely.
> > >>
> > >> Best
> > >> Mu
> > >>
> > >
> > >
> > > --
> > > *Chaitanya Prakash Bapat*
> > > *+1 (973) 953-6299*
> > >
> > > [image: https://www.linkedin.com//in/chaibapat25]
> > > [image:
> > > https://www.facebook.com/chaibapat] <
> > https://www.facebook.com/chaibapchya>[image:
> > > https://twitter.com/ChaiBapchya]  > >[image:
> > > https://www.linkedin.com//in/chaibapat25]
> > > 
> > >
> >
>


Re: MXNet Community Monthly Updates

2019-03-08 Thread Carin Meier
I strongly support this as well - Let us know when the wiki draft page is
ready. The Clojure MXNet contributors have some cool stuff to share :)

On Thu, Mar 7, 2019 at 1:49 AM Junru Shao  wrote:

> Hi Mu,
>
> Thanks for proposing this! Strongly agree with the newsletter - this would
> be the most economically efficient way to enhance community involvement.
>
> In addition to the draft wiki pages, should we send posts like "Call for
> newsletter articles" to dev@ list with some frequency? This could help
> maximize the community awareness and help active community members get more
> exposure - Community building is important.
>
> Thanks,
> Junru
>
> On Wed, Mar 6, 2019 at 6:57 PM Chaitanya Bapat 
> wrote:
>
> > Hello Mu,
> >
> > Thanks a lot for bringing this topic. I had thought about a Weekly Digest
> > for MXNet (weekly newsletter) - which is on similar lines (can be made
> into
> > Monthly if it sounds good).
> >
> > Here's the quip doc -
> > https://chaitanya.quip.com/BT6RAcAigHM9/MXNet-Weekly-Digest
> >
> > I have talked about the Background, Motivation, Features and a mockup of
> > Newsletter.
> >
> > Would love to hear our community's thoughts as well as yours on the same.
> >
> > Please find attached a snapshot of the Weekly digest I came up with.
> >
> > Thanks,
> > Chai
> >
> >
> >
> >
> > On Wed, 6 Mar 2019 at 19:59, Mu Li  wrote:
> >
> >> Dear Community,
> >>
> >> I propose to send a monthly summary to users to broadcast the recent
> >> progresses in the community. It will not only include new features added
> >> into MXNet, but also various community activities. Here is an example:
> >>
> >> Tutorials
> >> - 10 new lectures teaching at UC Berkeley
> >> - Video record for "Deploying with Java" at Java World 19
> >> Computer Vision
> >> - GluonCV 0.4 release supports pose estimation and improves 10 existing
> >> models
> >> - Insightface added a new model XY
> >> NLP
> >> - GluonNLP 0.5.1 release improves BERT training
> >> New Projects
> >> - A MXNet implementation for paper XY
> >> MXNet
> >> - Enhanced Java binding preview
> >> - Numpy frontend reaches milestone 1
> >> Incoming Events
> >> - Meetup at Palto Alto on 4/2
> >>
> >> The publishing procedure is we first create a draft wiki page so
> everyone
> >> will have a chance to review and add staffs. After that we will send it
> >> through an email list.
> >>
> >> I'm considering to use a 3rd party service such as mailchimp.com so
> that
> >> every user can subscribe it easily and we can do some marketing analysis
> >> as
> >> well. But I'm happy to re-use us...@mxnet.apache.org if it provides
> >> simliar
> >> functionalities.
> >>
> >> I'd like to hear your feedback for how to make the newletter more user
> >> friendely.
> >>
> >> Best
> >> Mu
> >>
> >
> >
> > --
> > *Chaitanya Prakash Bapat*
> > *+1 (973) 953-6299*
> >
> > [image: https://www.linkedin.com//in/chaibapat25]
> > [image:
> > https://www.facebook.com/chaibapat] <
> https://www.facebook.com/chaibapchya>[image:
> > https://twitter.com/ChaiBapchya]  >[image:
> > https://www.linkedin.com//in/chaibapat25]
> > 
> >
>