fix version in docs (k8s/scala) (#4440)
* fix version in docs (k8s/scala) * update
This commit is contained in:
		
							parent
							
								
									0e0fbaf3d6
								
							
						
					
					
						commit
						56aee11c82
					
				
					 2 changed files with 5 additions and 5 deletions
				
			
		| 
						 | 
					@ -190,7 +190,7 @@ In the `/opt` directory, run this command line to start the Jupyter Notebook ser
 | 
				
			||||||
 | 
					
 | 
				
			||||||
You will see the output message like below. This means the Jupyter Notebook service has started successfully within the container.
 | 
					You will see the output message like below. This means the Jupyter Notebook service has started successfully within the container.
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
[I 23:51:08.456 NotebookApp] Serving notebooks from local directory: /opt/bigdl-0.14.0-SNAPSHOT/apps
 | 
					[I 23:51:08.456 NotebookApp] Serving notebooks from local directory: /opt/bigdl-2.1.0-SNAPSHOT/apps
 | 
				
			||||||
[I 23:51:08.456 NotebookApp] Jupyter Notebook 6.2.0 is running at:
 | 
					[I 23:51:08.456 NotebookApp] Jupyter Notebook 6.2.0 is running at:
 | 
				
			||||||
[I 23:51:08.456 NotebookApp] http://xxxx:12345/?token=...
 | 
					[I 23:51:08.456 NotebookApp] http://xxxx:12345/?token=...
 | 
				
			||||||
[I 23:51:08.457 NotebookApp]  or http://127.0.0.1:12345/?token=...
 | 
					[I 23:51:08.457 NotebookApp]  or http://127.0.0.1:12345/?token=...
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -72,7 +72,7 @@ You can run a bigdl-dllib program, e.g., the [Language Model](https://github.com
 | 
				
			||||||
${BIGDL_HOME}/bin/spark-submit-with-dllib.sh \
 | 
					${BIGDL_HOME}/bin/spark-submit-with-dllib.sh \
 | 
				
			||||||
  --master local[2] \
 | 
					  --master local[2] \
 | 
				
			||||||
  --class com.intel.analytics.bigdl.dllib.example.languagemodel.PTBWordLM \
 | 
					  --class com.intel.analytics.bigdl.dllib.example.languagemodel.PTBWordLM \
 | 
				
			||||||
  ${BIGDL_HOME}/jars/bigdl-dllib-0.14.0-SNAPSHOT-jar-with-dependencies.jar \   #change to your jar file if your download is not spark_2.4.3-0.14.0
 | 
					  ${BIGDL_HOME}/jars/bigdl-dllib-2.1.0-SNAPSHOT-jar-with-dependencies.jar \   #change to your jar file if your download is not spark_2.4.3-2.0.0
 | 
				
			||||||
  -f DATA_PATH \
 | 
					  -f DATA_PATH \
 | 
				
			||||||
  -b 4 \
 | 
					  -b 4 \
 | 
				
			||||||
  --numLayers 2 --vocab 100 --hidden 6 \
 | 
					  --numLayers 2 --vocab 100 --hidden 6 \
 | 
				
			||||||
| 
						 | 
					@ -87,7 +87,7 @@ ${BIGDL_HOME}/bin/spark-submit-with-dllib.sh \
 | 
				
			||||||
  --executor-cores cores_per_executor \
 | 
					  --executor-cores cores_per_executor \
 | 
				
			||||||
  --total-executor-cores total_cores_for_the_job \
 | 
					  --total-executor-cores total_cores_for_the_job \
 | 
				
			||||||
  --class com.intel.analytics.bigdl.dllib.example.languagemodel.PTBWordLM \
 | 
					  --class com.intel.analytics.bigdl.dllib.example.languagemodel.PTBWordLM \
 | 
				
			||||||
  ${BIGDL_HOME}/jars/bigdl-dllib-0.14.0-SNAPSHOT-jar-with-dependencies.jar \   #change to your jar file if your download is not spark_2.4.3-0.14.0
 | 
					  ${BIGDL_HOME}/jars/bigdl-dllib-2.1.0-SNAPSHOT-jar-with-dependencies.jar \   #change to your jar file if your download is not spark_2.4.3-2.0.0
 | 
				
			||||||
  -f DATA_PATH \
 | 
					  -f DATA_PATH \
 | 
				
			||||||
  -b 4 \
 | 
					  -b 4 \
 | 
				
			||||||
  --numLayers 2 --vocab 100 --hidden 6 \
 | 
					  --numLayers 2 --vocab 100 --hidden 6 \
 | 
				
			||||||
| 
						 | 
					@ -101,7 +101,7 @@ ${BIGDL_HOME}/bin/spark-submit-with-dllib.sh \
 | 
				
			||||||
 --executor-cores cores_per_executor \
 | 
					 --executor-cores cores_per_executor \
 | 
				
			||||||
 --num-executors executors_number \
 | 
					 --num-executors executors_number \
 | 
				
			||||||
 --class com.intel.analytics.bigdl.dllib.example.languagemodel.PTBWordLM \
 | 
					 --class com.intel.analytics.bigdl.dllib.example.languagemodel.PTBWordLM \
 | 
				
			||||||
 ${BIGDL_HOME}/jars/bigdl-dllib-0.14.0-SNAPSHOT-jar-with-dependencies.jar \   #change to your jar file if your download is not spark_2.4.3-0.14.0
 | 
					 ${BIGDL_HOME}/jars/bigdl-dllib-2.1.0-SNAPSHOT-jar-with-dependencies.jar \   #change to your jar file if your download is not spark_2.4.3-2.0.0
 | 
				
			||||||
 -f DATA_PATH \
 | 
					 -f DATA_PATH \
 | 
				
			||||||
 -b 4 \
 | 
					 -b 4 \
 | 
				
			||||||
 --numLayers 2 --vocab 100 --hidden 6 \
 | 
					 --numLayers 2 --vocab 100 --hidden 6 \
 | 
				
			||||||
| 
						 | 
					@ -115,7 +115,7 @@ ${BIGDL_HOME}/bin/spark-submit-with-dllib.sh \
 | 
				
			||||||
 --executor-cores cores_per_executor \
 | 
					 --executor-cores cores_per_executor \
 | 
				
			||||||
 --num-executors executors_number \
 | 
					 --num-executors executors_number \
 | 
				
			||||||
 --class com.intel.analytics.bigdl.dllib.example.languagemodel.PTBWordLM \
 | 
					 --class com.intel.analytics.bigdl.dllib.example.languagemodel.PTBWordLM \
 | 
				
			||||||
 ${BIGDL_HOME}/jars/bigdl-dllib-0.14.0-SNAPSHOT-jar-with-dependencies.jar \   #change to your jar file if your download is not spark_2.4.3-0.14.0
 | 
					 ${BIGDL_HOME}/jars/bigdl-dllib-2.1.0-SNAPSHOT-jar-with-dependencies.jar \   #change to your jar file if your download is not spark_2.4.3-2.0.0
 | 
				
			||||||
 -f DATA_PATH \
 | 
					 -f DATA_PATH \
 | 
				
			||||||
 -b 4 \
 | 
					 -b 4 \
 | 
				
			||||||
 --numLayers 2 --vocab 100 --hidden 6 \
 | 
					 --numLayers 2 --vocab 100 --hidden 6 \
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue