Maximus
Maximus
Thank you so much for the quick and thoughtful response. Is there anything i can do at this point to help? Filing a bug maybe?
+1. I'm having the same issue as @joshuablake and @TucoFernandes. Please see question at https://stackoverflow.com/questions/75349810/using-plotly-with-ggpolot2-geom-plot-with-stat-identity-results-in-empty-canvas. Btw, this (using pre-computed quartile values in geom_boxplot) is necessary because plotly is unable to...
--host 0.0.0.0 does seem to be solving the problem. maybe the instruction on the main page should be updated to include this solution: python3 -m fastchat.serve.controller --host 0.0.0.0
replace /path/to/model/weights with actual path to the model weights, for example /mnt/llama
Should the model stay loaded? In my case it seems that it is being unloaded after a few minutes of inactivity. While this might not be a problem with fast...
This doesn't work, at least not in version 0.12.0. Here's the traceback: ``` { "name": "KeyError", "message": "'properties'", "stack": "--------------------------------------------------------------------------- KeyError Traceback (most recent call last) Cell In[28], line 17...
@botka1998 a few more details: - i installed your bugfix branch (pip install --no-cache-dir git+https://github.com/botka1998/jsonformer.git@bugfix/change-array-generation-stopping-criteria) - modified the calling function in main.py like this: ``` def __call__(self) -> Dict[str, Any]:...
@botka1998 Here it is: ``` json_schema = { "type": "array", "items": { "type": "object", "properties": { "car": { "type": "object", "properties": { "make": {"type": "string"}, "model": {"type": "string"}, "horsepower": {"type":...
Ok, I think the JSON schema i was using was wrong. Here's a very simple example of how it should really look like: ``` json_schema = { "type": "object", "properties":...
Thank you so much @botka1998 for the detailed, thoughtful response, and for taking the time to get back with me while you're on vacation! Much appreciated! I believe that at...