Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Recommenders/FAQ"

m
m (How can I build it from source?)
Line 11: Line 11:
 
If your .metadata/.plugins/org.eclipse.recommenders.rcp/ folder stays almost empty either your repository URL is incorrect or your company network requires you to go through an internal proxy. 1.0.0 does not support proxies. A patch for is in progress. See http://www.eclipse.org/forums/index.php/mv/msg/366941/894052/#msg_894052 for details how to patch Recommenders manually and build it using maven tycho.
 
If your .metadata/.plugins/org.eclipse.recommenders.rcp/ folder stays almost empty either your repository URL is incorrect or your company network requires you to go through an internal proxy. 1.0.0 does not support proxies. A patch for is in progress. See http://www.eclipse.org/forums/index.php/mv/msg/366941/894052/#msg_894052 for details how to patch Recommenders manually and build it using maven tycho.
  
== How can I build it from source? ==
+
== How can I build Code Recommenders from source? ==
 
See [[Recommenders/BuildingFromSource]] for details.
 
See [[Recommenders/BuildingFromSource]] for details.
 +
 +
== I'd like to participate. How? ==
 +
There are different ways how to participate. Have a nice idea? Get in contact with us in the forum or developer mailing list. If you have already existing code (from a former project or research project) you may be interested in [[Recommenders/Incubator]] project.
  
 
== Can I generate my own models ?==
 
== Can I generate my own models ?==
 
Generally yes but there is yet no API to support for this. To build and provide you own models, you have to (i) provide your own model repository and (ii) provide your own model archives. Models for, for instance, call completion can be generated by yourself by specifying the patterns for you libraries explicitly using BayesianNetwork class in org.eclipse.recommenders.bayes.serialization. Some more documentation about the network structure will follow.
 
Generally yes but there is yet no API to support for this. To build and provide you own models, you have to (i) provide your own model repository and (ii) provide your own model archives. Models for, for instance, call completion can be generated by yourself by specifying the patterns for you libraries explicitly using BayesianNetwork class in org.eclipse.recommenders.bayes.serialization. Some more documentation about the network structure will follow.

Revision as of 07:45, 7 July 2012

Does Chain completion work on default content assist list?

No. Computing call chains completion performs an exhaustive search on the API graph which would slow down completion to much in most occasions. Thus, it can only be put on subsequent content assist lists (2nd, 3rd etc.). Actually, it deactivates itself when it found itself being used on the default content assist list.

Does Dynamic Templates completion work on default content assist list?

No. Computing code snippets takes some time which would slow down completion to much in most occasions. Thus, it can only be put on subsequent content assist lists (2nd, 3rd etc.). Actually, it deactivates itself when it found itself being used on the default content assist list.

Does Subwords work with Mylyn and JDT completion on default content assist list?

No. Subwords deactivate itself as soon as it detects its put on the default content assist list together with Mylyn or JDT's Java completion. Only one of these engines can be used on the default tab.

Can't download any recommendation models. What's wrong?

If your .metadata/.plugins/org.eclipse.recommenders.rcp/ folder stays almost empty either your repository URL is incorrect or your company network requires you to go through an internal proxy. 1.0.0 does not support proxies. A patch for is in progress. See http://www.eclipse.org/forums/index.php/mv/msg/366941/894052/#msg_894052 for details how to patch Recommenders manually and build it using maven tycho.

How can I build Code Recommenders from source?

See Recommenders/BuildingFromSource for details.

I'd like to participate. How?

There are different ways how to participate. Have a nice idea? Get in contact with us in the forum or developer mailing list. If you have already existing code (from a former project or research project) you may be interested in Recommenders/Incubator project.

Can I generate my own models ?

Generally yes but there is yet no API to support for this. To build and provide you own models, you have to (i) provide your own model repository and (ii) provide your own model archives. Models for, for instance, call completion can be generated by yourself by specifying the patterns for you libraries explicitly using BayesianNetwork class in org.eclipse.recommenders.bayes.serialization. Some more documentation about the network structure will follow.

Back to the top